From e492452ae3076ccf3c7b2924d53f2a4c99f99937 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Steenis Date: Wed, 3 Apr 2019 00:01:36 +0200 Subject: [PATCH] Pin cert-manager version on HA air gap installs --- .../air-gap-high-availability/install-rancher/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/rancher/v2.x/en/installation/air-gap-high-availability/install-rancher/_index.md b/content/rancher/v2.x/en/installation/air-gap-high-availability/install-rancher/_index.md index 61f989cca0a..7c1c84b1972 100644 --- a/content/rancher/v2.x/en/installation/air-gap-high-availability/install-rancher/_index.md +++ b/content/rancher/v2.x/en/installation/air-gap-high-availability/install-rancher/_index.md @@ -55,13 +55,13 @@ By default, Rancher generates a CA and uses cert manger to issue the certificate 1. From a system connected to the internet, fetch the latest cert-manager chart available from the [official Helm chart repository](https://github.com/helm/charts/tree/master/stable). ```plain - helm fetch stable/cert-manager + helm fetch stable/cert-manager --version 0.5.2 ``` 1. Render the cert manager template with the options you would like to use to install the chart. Remember to set the `image.repository` option to pull the image from your private registry. This will create a `cert-manager` directory with the Kubernetes manifest files. ```plain - helm template ./cert-manager-.tgz --output-dir . \ + helm template ./cert-manager-v0.5.2.tgz --output-dir . \ --name cert-manager --namespace kube-system \ --set image.repository=/quay.io/jetstack/cert-manager-controller ```