fixing fetch instructions for cert manager

This commit is contained in:
Mark Bishop
2018-10-17 16:51:01 -07:00
parent 4b43589319
commit 4911d6066d
2 changed files with 4 additions and 4 deletions
@@ -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 `<CHART_REPO>` 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 <CHART_REPO>/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.
@@ -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 `<CHART_REPO>` 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 <CHART_REPO>/cert-manager \
helm install stable/cert-manager \
--name cert-manager \
--namespace kube-system
```