Skip to content

Commit 2827ed7

Browse files
authored
Merge pull request #10518 from k8s-infra-cherrypick-robot/cherry-pick-10514-to-release-1.6
[release-1.6] 🌱Bump cert-manager to 1.14.5
2 parents bfc9a80 + 3ab3b11 commit 2827ed7

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.14.4"
32+
CertManagerDefaultVersion = "v1.14.5"
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.14.4). See [clusterctl configuration](../configuration.md) for
197+
install a default version (currently cert-manager v1.14.5). 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
@@ -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.14.4/cert-manager.yaml
84+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.5/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

+3-3
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,9 @@ EOL
204204
# the actual test run less sensible to the network speed.
205205
kind:prepullAdditionalImages () {
206206
# Pulling cert manager images so we can pre-load in kind nodes
207-
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.14.4"
208-
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.14.4"
209-
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.14.4"
207+
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.14.5"
208+
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.14.5"
209+
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.14.5"
210210
}
211211

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

3333
providers:

0 commit comments

Comments
 (0)