From 4911d6066d68c038d7ac5b17e3a1c419652ffd57 Mon Sep 17 00:00:00 2001 From: Mark Bishop Date: Wed, 17 Oct 2018 16:51:01 -0700 Subject: [PATCH] fixing fetch instructions for cert manager --- .../air-gap-installation/install-rancher/_index.md | 4 ++-- .../rancher/v2.x/en/installation/ha/helm-rancher/_index.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/rancher/v2.x/en/installation/air-gap-installation/install-rancher/_index.md b/content/rancher/v2.x/en/installation/air-gap-installation/install-rancher/_index.md index 81283ffc762..0808d5a3988 100644 --- a/content/rancher/v2.x/en/installation/air-gap-installation/install-rancher/_index.md +++ b/content/rancher/v2.x/en/installation/air-gap-installation/install-rancher/_index.md @@ -82,10 +82,10 @@ Fetch and render the `helm` charts on a system that has internet access. If you are installing Rancher with Rancher self-signed certificates you will need to install 'cert-manager' on your cluster. If you are installing your own certificates you may skip this section. -Fetch the latest `cert-manager` chart from your configured repo, replacing `` with the repo you're using (`latest` or `stable`). For more information on chart repo configuration, see [Choosing a Version of Rancher: Rancher Chart Repositories]({{< baseurl >}}/rancher/v2.x/en/installation/server-tags/#rancher-chart-repositories). +Fetch the latest `cert-manager` chart from your Helm catalog. ```plain -helm fetch /cert-manager +helm fetch stable/cert-manager ``` Render the template with the option you would 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. diff --git a/content/rancher/v2.x/en/installation/ha/helm-rancher/_index.md b/content/rancher/v2.x/en/installation/ha/helm-rancher/_index.md index b9a982a5aad..9a2b7830a7d 100644 --- a/content/rancher/v2.x/en/installation/ha/helm-rancher/_index.md +++ b/content/rancher/v2.x/en/installation/ha/helm-rancher/_index.md @@ -39,11 +39,11 @@ rancher-latest/rancher 2018.10.1 v2.1.0 Install Rancher Serve Rancher relies on [cert-manager](https://github.com/kubernetes/charts/tree/master/stable/cert-manager) from the Kubernetes Helm stable catalog to issue self-signed or LetsEncrypt certificates. -Install `cert-manager` from your Helm catalog. Replace `` with the repository that you configured in [Add the Chart Repo](#add-the-chart-repo) (`latest` or `stable`). +Install `cert-manager` from your Helm catalog. ``` -helm install /cert-manager \ +helm install stable/cert-manager \ --name cert-manager \ --namespace kube-system ```