Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Robot Upgrade: cert-manager chart upgrade from v1.16.1 to v1.16.2 #2724

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/cert-manager/cert-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ annotations:
fingerprint: 1020CF3C033D4F35BAE1C19E1226061C665DF13E
url: https://cert-manager.io/public-keys/cert-manager-keyring-2021-09-20-1020CF3C033D4F35BAE1C19E1226061C665DF13E.gpg
apiVersion: v2
appVersion: v1.16.1
appVersion: v1.16.2
description: A Helm chart for cert-manager
home: https://cert-manager.io
icon: https://raw.githubusercontent.com/cert-manager/community/4d35a69437d21b76322157e6284be4cd64e6d2b7/logo/logo-small.png
Expand All @@ -23,8 +23,8 @@ maintainers:
name: cert-manager
sources:
- https://github.com/cert-manager/cert-manager
version: 1.16.1
version: 1.16.2
dependencies:
- name: cert-manager
version: "v1.16.1"
version: "v1.16.2"
repository: "https://charts.jetstack.io"
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ annotations:
fingerprint: 1020CF3C033D4F35BAE1C19E1226061C665DF13E
url: https://cert-manager.io/public-keys/cert-manager-keyring-2021-09-20-1020CF3C033D4F35BAE1C19E1226061C665DF13E.gpg
apiVersion: v2
appVersion: v1.16.1
appVersion: v1.16.2
description: A Helm chart for cert-manager
home: https://cert-manager.io
icon: https://raw.githubusercontent.com/cert-manager/community/4d35a69437d21b76322157e6284be4cd64e6d2b7/logo/logo-small.png
Expand All @@ -23,4 +23,4 @@ maintainers:
name: cert-manager
sources:
- https://github.com/cert-manager/cert-manager
version: v1.16.1
version: v1.16.2
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Before installing the chart, you must first install the cert-manager CustomResou
This is performed in a separate step to allow you to easily uninstall and reinstall cert-manager without deleting your installed custom resources.

```bash
$ kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.1/cert-manager.crds.yaml
$ kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.2/cert-manager.crds.yaml
```

To install the chart with the release name `cert-manager`:
Expand All @@ -29,7 +29,7 @@ To install the chart with the release name `cert-manager`:
$ helm repo add jetstack https://charts.jetstack.io --force-update

## Install the cert-manager helm chart
$ helm install cert-manager --namespace cert-manager --version v1.16.1 jetstack/cert-manager
$ helm install cert-manager --namespace cert-manager --version v1.16.2 jetstack/cert-manager
```

In order to begin issuing certificates, you will need to set up a ClusterIssuer
Expand Down Expand Up @@ -65,7 +65,7 @@ If you want to completely uninstall cert-manager from your cluster, you will als
delete the previously installed CustomResourceDefinition resources:

```console
$ kubectl delete -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.1/cert-manager.crds.yaml
$ kubectl delete -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.2/cert-manager.crds.yaml
```

## Configuration
Expand Down
8 changes: 4 additions & 4 deletions charts/cert-manager/cert-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ cert-manager:

# Kubernetes imagePullPolicy on Deployment.
pullPolicy: IfNotPresent
tag: v1.16.1
tag: v1.16.2
# Override the namespace used to store DNS provider credentials etc. for ClusterIssuer
# resources. By default, the same namespace as cert-manager is deployed within is
# used. This namespace will not be automatically created by the Helm chart.
Expand Down Expand Up @@ -801,7 +801,7 @@ cert-manager:

# Kubernetes imagePullPolicy on Deployment.
pullPolicy: IfNotPresent
tag: v1.16.1
tag: v1.16.2
serviceAccount:
# Specifies whether a service account should be created.
create: true
Expand Down Expand Up @@ -1085,7 +1085,7 @@ cert-manager:

# Kubernetes imagePullPolicy on Deployment.
pullPolicy: IfNotPresent
tag: v1.16.1
tag: v1.16.2
serviceAccount:
# Specifies whether a service account should be created.
create: true
Expand Down Expand Up @@ -1259,7 +1259,7 @@ cert-manager:

# Kubernetes imagePullPolicy on Deployment.
pullPolicy: IfNotPresent
tag: v1.16.1
tag: v1.16.2
rbac:
# annotations for the startup API Check job RBAC and PSP resources.
# +docs:property
Expand Down
2 changes: 1 addition & 1 deletion charts/cert-manager/config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export DAOCLOUD_REPO_PROJECT=addon
export REPO_URL=https://charts.jetstack.io
export REPO_NAME=cert-manager
export CHART_NAME=cert-manager
export VERSION=v1.16.1
export VERSION=v1.16.2

export UPGRADE_METHOD=pr
export UPGRADE_REVIWER=lou-lan
Expand Down