Skip to content

Commit 4e86112

Browse files
committed
update cert-manager to 1.15.3
Signed-off-by: Troy Connor <[email protected]>
1 parent defa62d commit 4e86112

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.15.2"
32+
CertManagerDefaultVersion = "v1.15.3"
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
@@ -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.2). See [clusterctl configuration](../configuration.md) for
197+
install a default version (currently cert-manager v1.15.3). 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

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.15.2/cert-manager.yaml
84+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.15.3/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
@@ -265,9 +265,9 @@ EOL
265265
# the actual test run less sensible to the network speed.
266266
kind:prepullAdditionalImages () {
267267
# Pulling cert manager images so we can pre-load in kind nodes
268-
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.15.2"
269-
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.15.2"
270-
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.15.2"
268+
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.15.3"
269+
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.15.3"
270+
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.15.3"
271271
}
272272

273273
# 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
@@ -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.2
26+
- name: quay.io/jetstack/cert-manager-cainjector:v1.15.3
2727
loadBehavior: tryLoad
28-
- name: quay.io/jetstack/cert-manager-webhook:v1.15.2
28+
- name: quay.io/jetstack/cert-manager-webhook:v1.15.3
2929
loadBehavior: tryLoad
30-
- name: quay.io/jetstack/cert-manager-controller:v1.15.2
30+
- name: quay.io/jetstack/cert-manager-controller:v1.15.3
3131
loadBehavior: tryLoad
3232

3333
providers:

0 commit comments

Comments
 (0)