Skip to content

Commit

Permalink
Bump cert-manager to v1.9.1
Browse files Browse the repository at this point in the history
Signed-off-by: willie-yao <[email protected]>
  • Loading branch information
willie-yao authored and k8s-infra-cherrypick-robot committed Sep 7, 2022
1 parent 194e1b8 commit 3d58661
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion cmd/clusterctl/client/config/cert_manager_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (
CertManagerConfigKey = "cert-manager"

// CertManagerDefaultVersion defines the default cert-manager version to be used by clusterctl.
CertManagerDefaultVersion = "v1.8.2"
CertManagerDefaultVersion = "v1.9.1"

// CertManagerDefaultURL defines the default cert-manager repository url to be used by clusterctl.
// NOTE: At runtime /latest will be replaced with the CertManagerDefaultVersion or with the
Expand Down
2 changes: 1 addition & 1 deletion docs/book/src/clusterctl/commands/init.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ If this happens, there are no guarantees about the proper functioning of `cluste
Cluster API providers require a cert-manager version supporting the `cert-manager.io/v1` API to be installed in the cluster.

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

<aside class="note warning">
Expand Down
2 changes: 1 addition & 1 deletion docs/book/src/developer/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ The generated binary can be found at ./hack/tools/bin/envsubst
You'll need to deploy [cert-manager] components on your [management cluster][mcluster], using `kubectl`

```bash
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.8.2/cert-manager.yaml
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.9.1/cert-manager.yaml
```

Ensure the cert-manager webhook service is ready before creating the Cluster API components.
Expand Down
2 changes: 1 addition & 1 deletion docs/book/src/user/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ The output of `clusterctl init` is similar to this:
```bash
Fetching providers
Installing cert-manager Version="v1.8.2"
Installing cert-manager Version="v1.9.1"
Waiting for cert-manager to be available...
Installing Provider="cluster-api" Version="v1.0.0" TargetNamespace="capi-system"
Installing Provider="bootstrap-kubeadm" Version="v1.0.0" TargetNamespace="capi-kubeadm-bootstrap-system"
Expand Down
4 changes: 2 additions & 2 deletions docs/book/src/user/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ clusterctl init --infrastructure docker
```
```bash
Fetching providers
Installing cert-manager Version="v1.8.2"
Installing cert-manager Version="v1.9.1"
Error: action failed after 10 attempts: failed to get cert-manager object /, Kind=, /: Object 'Kind' is missing in 'unstructured object has no kind'
```

Expand All @@ -173,7 +173,7 @@ cert-manager:
url: "https://github.com/cert-manager/cert-manager/releases/latest/cert-manager.yaml"
```
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.8.2/cert-manager.yaml`
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.9.1/cert-manager.yaml`

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

Expand Down
6 changes: 3 additions & 3 deletions scripts/ci-e2e-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ EOL
# the actual test run less sensible to the network speed.
kind:prepullAdditionalImages () {
# Pulling cert manager images so we can pre-load in kind nodes
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.8.2"
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.8.2"
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.8.2"
kind::prepullImage "quay.io/jetstack/cert-manager-cainjector:v1.9.1"
kind::prepullImage "quay.io/jetstack/cert-manager-webhook:v1.9.1"
kind::prepullImage "quay.io/jetstack/cert-manager-controller:v1.9.1"
}

# kind:prepullImage pre-pull a docker image if no already present locally.
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/config/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ images:
loadBehavior: tryLoad
- name: gcr.io/k8s-staging-cluster-api/test-extension-{ARCH}:dev
loadBehavior: tryLoad
- name: quay.io/jetstack/cert-manager-cainjector:v1.8.2
- name: quay.io/jetstack/cert-manager-cainjector:v1.9.1
loadBehavior: tryLoad
- name: quay.io/jetstack/cert-manager-webhook:v1.8.2
- name: quay.io/jetstack/cert-manager-webhook:v1.9.1
loadBehavior: tryLoad
- name: quay.io/jetstack/cert-manager-controller:v1.8.2
- name: quay.io/jetstack/cert-manager-controller:v1.9.1
loadBehavior: tryLoad

providers:
Expand Down

0 comments on commit 3d58661

Please sign in to comment.