Skip to content

Commit aeacfce

Browse files
committed
Bump cert-manager to v1.14.1
1 parent 28613f3 commit aeacfce

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
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.13.2"
32+
CertManagerDefaultVersion = "v1.14.1"
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.13.2). See [clusterctl configuration](../configuration.md) for
197+
install a default version (currently cert-manager v1.14.1). 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: 3 additions & 3 deletions
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.13.2/cert-manager.yaml
84+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.1/cert-manager.yaml
8585
```
8686

8787
Ensure the cert-manager webhook service is ready before creating the Cluster API components.
@@ -179,8 +179,8 @@ To test another iteration, you'll need to follow the steps to build, push, updat
179179

180180
**Let's chat about ...**
181181

182-
We are currently hosting "Let's chat about ..." sessions where we are talking about topics relevant to
183-
contributors and users of the Cluster API project. For more details and an up-to-date list of recordings of past sessions please
182+
We are currently hosting "Let's chat about ..." sessions where we are talking about topics relevant to
183+
contributors and users of the Cluster API project. For more details and an up-to-date list of recordings of past sessions please
184184
see [Let's chat about ...](https://github.com/kubernetes-sigs/cluster-api/discussions/6106).
185185

186186
* [Local CAPI development and debugging with Tilt (EMEA/Americas) - February 2022](https://www.youtube.com/watch?v=tEIRGmJahWs)

scripts/ci-e2e-lib.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ EOL
220220
# the actual test run less sensible to the network speed.
221221
kind:prepullAdditionalImages () {
222222
# Pulling cert manager images so we can pre-load in kind nodes
223-
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.13.2"
224-
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.13.2"
225-
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.13.2"
223+
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.14.1"
224+
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.14.1"
225+
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.14.1"
226226
}
227227

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

test/e2e/config/docker.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# This is a file for CAPI end-to-end test configuration.
1+
# This is a file for CAPI end-to-end test configuration.
22
# The format of this file follows https://pkg.go.dev/sigs.k8s.io/cluster-api/test/framework/clusterctl#E2EConfig
3-
#
3+
#
44
# CI E2E test configuration scenario using locally build images and manifests for:
55
# - cluster-api
66
# - bootstrap kubeadm
@@ -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.13.2
26+
- name: quay.io/jetstack/cert-manager-cainjector:v1.14.1
2727
loadBehavior: tryLoad
28-
- name: quay.io/jetstack/cert-manager-webhook:v1.13.2
28+
- name: quay.io/jetstack/cert-manager-webhook:v1.14.1
2929
loadBehavior: tryLoad
30-
- name: quay.io/jetstack/cert-manager-controller:v1.13.2
30+
- name: quay.io/jetstack/cert-manager-controller:v1.14.1
3131
loadBehavior: tryLoad
3232

3333
providers:

0 commit comments

Comments
 (0)