Skip to content

Commit fe64933

Browse files
committed
Bump cert-manager to v1.9.1
Signed-off-by: willie-yao <[email protected]>
1 parent ece9de4 commit fe64933

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

cmd/clusterctl/client/config/cert_manager_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const (
2727
CertManagerConfigKey = "cert-manager"
2828

2929
// CertManagerDefaultVersion defines the default cert-manager version to be used by clusterctl.
30-
CertManagerDefaultVersion = "v1.8.2"
30+
CertManagerDefaultVersion = "v1.9.1"
3131

3232
// CertManagerDefaultURL defines the default cert-manager repository url to be used by clusterctl.
3333
// NOTE: At runtime /latest will be replaced with the CertManagerDefaultVersion or with the

docs/book/src/clusterctl/commands/init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ If this happens, there are no guarantees about the proper functioning of `cluste
182182
Cluster API providers require a cert-manager version supporting the `cert-manager.io/v1` API to be installed in the cluster.
183183

184184
While doing init, clusterctl checks if there is a version of cert-manager already installed. If not, clusterctl will
185-
install a default version (currently cert-manager v1.8.2). See [clusterctl configuration](../configuration.md) for
185+
install a default version (currently cert-manager v1.9.1). See [clusterctl configuration](../configuration.md) for
186186
available options to customize this operation.
187187

188188
<aside class="note warning">

docs/book/src/developer/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The generated binary can be found at ./hack/tools/bin/envsubst
8181
You'll need to deploy [cert-manager] components on your [management cluster][mcluster], using `kubectl`
8282

8383
```bash
84-
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.8.2/cert-manager.yaml
84+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.9.1/cert-manager.yaml
8585
```
8686

8787
Ensure the cert-manager webhook service is ready before creating the Cluster API components.

docs/book/src/user/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ The output of `clusterctl init` is similar to this:
517517
518518
```bash
519519
Fetching providers
520-
Installing cert-manager Version="v1.8.2"
520+
Installing cert-manager Version="v1.9.1"
521521
Waiting for cert-manager to be available...
522522
Installing Provider="cluster-api" Version="v1.0.0" TargetNamespace="capi-system"
523523
Installing Provider="bootstrap-kubeadm" Version="v1.0.0" TargetNamespace="capi-kubeadm-bootstrap-system"

docs/book/src/user/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ clusterctl init --infrastructure docker
161161
```
162162
```bash
163163
Fetching providers
164-
Installing cert-manager Version="v1.8.2"
164+
Installing cert-manager Version="v1.9.1"
165165
Error: action failed after 10 attempts: failed to get cert-manager object /, Kind=, /: Object 'Kind' is missing in 'unstructured object has no kind'
166166
```
167167

@@ -173,7 +173,7 @@ cert-manager:
173173
url: "https://github.com/cert-manager/cert-manager/releases/latest/cert-manager.yaml"
174174
```
175175
176-
Alternatively a Cert Manager yaml file can be placed in the [clusterctl overrides layer](../clusterctl/configuration.md#overrides-layer) which is by default in `$HOME/.cluster-api/overrides`. A Cert Manager yaml file can be placed at `$(HOME)/.cluster-api/overrides/cert-manager/v1.8.2/cert-manager.yaml`
176+
Alternatively a Cert Manager yaml file can be placed in the [clusterctl overrides layer](../clusterctl/configuration.md#overrides-layer) which is by default in `$HOME/.cluster-api/overrides`. A Cert Manager yaml file can be placed at `$(HOME)/.cluster-api/overrides/cert-manager/v1.9.1/cert-manager.yaml`
177177

178178
More information on the clusterctl config file can be found at [its page in the book](../clusterctl/configuration.md#clusterctl-configuration-file)
179179

scripts/ci-e2e-lib.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ EOL
215215
# the actual test run less sensible to the network speed.
216216
kind:prepullAdditionalImages () {
217217
# Pulling cert manager images so we can pre-load in kind nodes
218-
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.8.2"
219-
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.8.2"
220-
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.8.2"
218+
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.9.1"
219+
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.9.1"
220+
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.9.1"
221221
}
222222

223223
# kind:prepullImage pre-pull a docker image if no already present locally.

test/e2e/config/docker.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ images:
1919
loadBehavior: tryLoad
2020
- name: gcr.io/k8s-staging-cluster-api/test-extension-{ARCH}:dev
2121
loadBehavior: tryLoad
22-
- name: quay.io/jetstack/cert-manager-cainjector:v1.8.2
22+
- name: quay.io/jetstack/cert-manager-cainjector:v1.9.1
2323
loadBehavior: tryLoad
24-
- name: quay.io/jetstack/cert-manager-webhook:v1.8.2
24+
- name: quay.io/jetstack/cert-manager-webhook:v1.9.1
2525
loadBehavior: tryLoad
26-
- name: quay.io/jetstack/cert-manager-controller:v1.8.2
26+
- name: quay.io/jetstack/cert-manager-controller:v1.9.1
2727
loadBehavior: tryLoad
2828

2929
providers:

0 commit comments

Comments
 (0)