From 78fc0b82532ba978d70bf1d35c93a55531166da5 Mon Sep 17 00:00:00 2001 From: Guanpeng Gao Date: Wed, 22 Sep 2021 12:43:04 -0700 Subject: [PATCH] Upgrade cert-manager to 1.5.3 --- Tiltfile | 2 +- cmd/clusterctl/client/config/cert_manager_client.go | 2 +- docs/book/src/clusterctl/commands/init.md | 2 +- docs/book/src/clusterctl/commands/upgrade.md | 2 +- docs/book/src/clusterctl/configuration.md | 4 ++-- docs/book/src/developer/guide.md | 2 +- docs/book/src/user/quick-start.md | 2 +- scripts/ci-e2e-lib.sh | 6 +++--- test/e2e/config/docker.yaml | 6 +++--- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Tiltfile b/Tiltfile index 147b68db1475..48bc79f5a8f4 100644 --- a/Tiltfile +++ b/Tiltfile @@ -238,6 +238,6 @@ load_provider_tiltfiles() load("ext://cert_manager", "deploy_cert_manager") if settings.get("deploy_cert_manager"): - deploy_cert_manager(version = "v1.5.0") + deploy_cert_manager(version = "v1.5.3") enable_providers() diff --git a/cmd/clusterctl/client/config/cert_manager_client.go b/cmd/clusterctl/client/config/cert_manager_client.go index 46dc67082714..bb6eec995fc5 100644 --- a/cmd/clusterctl/client/config/cert_manager_client.go +++ b/cmd/clusterctl/client/config/cert_manager_client.go @@ -27,7 +27,7 @@ const ( CertManagerConfigKey = "cert-manager" // CertManagerDefaultVersion defines the default cert-manager version to be used by clusterctl. - CertManagerDefaultVersion = "v1.5.0" + CertManagerDefaultVersion = "v1.5.3" // 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 diff --git a/docs/book/src/clusterctl/commands/init.md b/docs/book/src/clusterctl/commands/init.md index b7a271a54c60..202a1eb05837 100644 --- a/docs/book/src/clusterctl/commands/init.md +++ b/docs/book/src/clusterctl/commands/init.md @@ -178,7 +178,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.5.0). See [clusterctl configuration](../configuration.md) for +install a default version (currently cert-manager v1.5.3). See [clusterctl configuration](../configuration.md) for available options to customize this operation.