Skip to content

Commit 3e1104d

Browse files
authored
Merge pull request #7705 from killianmuldoon/pr-update-cert-manager
🌱 Update cert-manager to v1.10.1
2 parents 0ff1e8d + 454b415 commit 3e1104d

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
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.10.0"
32+
CertManagerDefaultVersion = "v1.10.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
@@ -188,7 +188,7 @@ If this happens, there are no guarantees about the proper functioning of `cluste
188188
Cluster API providers require a cert-manager version supporting the `cert-manager.io/v1` API to be installed in the cluster.
189189

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

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

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

docs/book/src/user/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ The output of `clusterctl init` is similar to this:
642642
643643
```bash
644644
Fetching providers
645-
Installing cert-manager Version="v1.10.0"
645+
Installing cert-manager Version="v1.10.1"
646646
Waiting for cert-manager to be available...
647647
Installing Provider="cluster-api" Version="v1.0.0" TargetNamespace="capi-system"
648648
Installing Provider="bootstrap-kubeadm" Version="v1.0.0" TargetNamespace="capi-kubeadm-bootstrap-system"

docs/book/src/user/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ clusterctl init --infrastructure docker
161161
```
162162
```bash
163163
Fetching providers
164-
Installing cert-manager Version="v1.10.0"
164+
Installing cert-manager Version="v1.10.1"
165165
Error: action failed after 10 attempts: failed to get cert-manager object /, Kind=, /: Object 'Kind' is missing in 'unstructured object has no kind'
166166
```
167167

@@ -173,7 +173,7 @@ cert-manager:
173173
url: "https://github.com/cert-manager/cert-manager/releases/latest/cert-manager.yaml"
174174
```
175175
176-
Alternatively a Cert Manager yaml file can be placed in the [clusterctl overrides layer](../clusterctl/configuration.md#overrides-layer) which is by default in `$HOME/.cluster-api/overrides`. A Cert Manager yaml file can be placed at `$(HOME)/.cluster-api/overrides/cert-manager/v1.10.0/cert-manager.yaml`
176+
Alternatively a Cert Manager yaml file can be placed in the [clusterctl overrides layer](../clusterctl/configuration.md#overrides-layer) which is by default in `$HOME/.cluster-api/overrides`. A Cert Manager yaml file can be placed at `$(HOME)/.cluster-api/overrides/cert-manager/v1.10.1/cert-manager.yaml`
177177

178178
More information on the clusterctl config file can be found at [its page in the book](../clusterctl/configuration.md#clusterctl-configuration-file)
179179

scripts/ci-e2e-lib.sh

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

208208
# 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
@@ -19,11 +19,11 @@ images:
1919
loadBehavior: tryLoad
2020
- name: gcr.io/k8s-staging-cluster-api/test-extension-{ARCH}:dev
2121
loadBehavior: tryLoad
22-
- name: quay.io/jetstack/cert-manager-cainjector:v1.10.0
22+
- name: quay.io/jetstack/cert-manager-cainjector:v1.10.1
2323
loadBehavior: tryLoad
24-
- name: quay.io/jetstack/cert-manager-webhook:v1.10.0
24+
- name: quay.io/jetstack/cert-manager-webhook:v1.10.1
2525
loadBehavior: tryLoad
26-
- name: quay.io/jetstack/cert-manager-controller:v1.10.0
26+
- name: quay.io/jetstack/cert-manager-controller:v1.10.1
2727
loadBehavior: tryLoad
2828

2929
providers:

0 commit comments

Comments
 (0)