Skip to content

Commit 2c238f1

Browse files
Update cert-manager to v1.11.2
Signed-off-by: killianmuldoon <[email protected]>
1 parent a871dc1 commit 2c238f1

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

cmd/clusterctl/client/config/cert_manager_client.go

Lines changed: 1 addition & 1 deletion
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.11.1"
32+
CertManagerDefaultVersion = "v1.11.2"
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

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

192192
While doing init, clusterctl checks if there is a version of cert-manager already installed. If not, clusterctl will
193-
install a default version (currently cert-manager v1.11.1). See [clusterctl configuration](../configuration.md) for
193+
install a default version (currently cert-manager v1.11.2). See [clusterctl configuration](../configuration.md) for
194194
available options to customize this operation.
195195

196196
<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.11.1/cert-manager.yaml
84+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.11.2/cert-manager.yaml
8585
```
8686

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

scripts/ci-e2e-lib.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,9 @@ EOL
201201
# the actual test run less sensible to the network speed.
202202
kind:prepullAdditionalImages () {
203203
# Pulling cert manager images so we can pre-load in kind nodes
204-
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.11.1"
205-
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.11.1"
206-
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.11.1"
204+
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.11.2"
205+
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.11.2"
206+
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.11.2"
207207
}
208208

209209
# 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
@@ -21,11 +21,11 @@ images:
2121
loadBehavior: tryLoad
2222
- name: gcr.io/k8s-staging-cluster-api/test-extension-{ARCH}:dev
2323
loadBehavior: tryLoad
24-
- name: quay.io/jetstack/cert-manager-cainjector:v1.11.1
24+
- name: quay.io/jetstack/cert-manager-cainjector:v1.11.2
2525
loadBehavior: tryLoad
26-
- name: quay.io/jetstack/cert-manager-webhook:v1.11.1
26+
- name: quay.io/jetstack/cert-manager-webhook:v1.11.2
2727
loadBehavior: tryLoad
28-
- name: quay.io/jetstack/cert-manager-controller:v1.11.1
28+
- name: quay.io/jetstack/cert-manager-controller:v1.11.2
2929
loadBehavior: tryLoad
3030

3131
providers:

0 commit comments

Comments
 (0)