Skip to content

Commit 3cce0d9

Browse files
authored
Merge pull request #11264 from k8s-infra-cherrypick-robot/cherry-pick-11263-to-release-1.8
[release-1.8] 🌱Bump cert manager to v1.16.0
2 parents 3af6fbf + 909df1b commit 3cce0d9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

cmd/clusterctl/client/config/cert_manager_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const (
2929
CertManagerConfigKey = "cert-manager"
3030

3131
// CertManagerDefaultVersion defines the default cert-manager version to be used by clusterctl.
32-
CertManagerDefaultVersion = "v1.15.3"
32+
CertManagerDefaultVersion = "v1.16.0"
3333

3434
// CertManagerDefaultURL defines the default cert-manager repository url to be used by clusterctl.
3535
// NOTE: At runtime CertManagerDefaultVersion may be replaced with the

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ If this happens, there are no guarantees about the proper functioning of `cluste
194194
Cluster API providers require a cert-manager version supporting the `cert-manager.io/v1` API to be installed in the cluster.
195195

196196
While doing init, clusterctl checks if there is a version of cert-manager already installed. If not, clusterctl will
197-
install a default version (currently cert-manager v1.15.3). See [clusterctl configuration](../configuration.md) for
197+
install a default version (currently cert-manager v1.16.0). See [clusterctl configuration](../configuration.md) for
198198
available options to customize this operation.
199199

200200
<aside class="note warning">

docs/book/src/developer/guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The generated binary can be found at ./hack/tools/bin/envsubst
8383
You'll need to deploy [cert-manager] components on your [management cluster][mcluster], using `kubectl`
8484

8585
```bash
86-
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.15.3/cert-manager.yaml
86+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.0/cert-manager.yaml
8787
```
8888

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

scripts/ci-e2e-lib.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,9 @@ EOL
270270
# the actual test run less sensible to the network speed.
271271
kind:prepullAdditionalImages () {
272272
# Pulling cert manager images so we can pre-load in kind nodes
273-
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.15.3"
274-
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.15.3"
275-
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.15.3"
273+
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.16.0"
274+
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.16.0"
275+
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.16.0"
276276
}
277277

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

test/e2e/config/docker.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ images:
2323
loadBehavior: tryLoad
2424
- name: gcr.io/k8s-staging-cluster-api/test-extension-{ARCH}:dev
2525
loadBehavior: tryLoad
26-
- name: quay.io/jetstack/cert-manager-cainjector:v1.15.3
26+
- name: quay.io/jetstack/cert-manager-cainjector:v1.16.0
2727
loadBehavior: tryLoad
28-
- name: quay.io/jetstack/cert-manager-webhook:v1.15.3
28+
- name: quay.io/jetstack/cert-manager-webhook:v1.16.0
2929
loadBehavior: tryLoad
30-
- name: quay.io/jetstack/cert-manager-controller:v1.15.3
30+
- name: quay.io/jetstack/cert-manager-controller:v1.16.0
3131
loadBehavior: tryLoad
3232

3333
providers:

0 commit comments

Comments
 (0)