From 53e6689352242fb26e26acb1f525b469dc240654 Mon Sep 17 00:00:00 2001 From: Alpha Date: Mon, 20 Apr 2020 14:50:55 +0800 Subject: [PATCH 1/2] update the helm rancher example --- .../v2.x/en/installation/k8s-install/helm-rancher/_index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/rancher/v2.x/en/installation/k8s-install/helm-rancher/_index.md b/content/rancher/v2.x/en/installation/k8s-install/helm-rancher/_index.md index dc7e7ac01e..335d58d310 100644 --- a/content/rancher/v2.x/en/installation/k8s-install/helm-rancher/_index.md +++ b/content/rancher/v2.x/en/installation/k8s-install/helm-rancher/_index.md @@ -145,10 +145,13 @@ Because `rancher` is the default option for `ingress.tls.source`, we are not spe - Set the `hostname` to the DNS name you pointed at your load balancer. - If you are installing an alpha version, Helm requires adding the `--devel` option to the command. - To install a specific Rancher version, use the `--version` flag, example: `--version 2.3.6` +- Provder certmanager version, as difference version has difference annotation. + * For example `--set certmanager.version="0.14.1"` ``` helm install rancher rancher-/rancher \ --namespace cattle-system \ + --set certmanager.version="0.14.1" \ --set hostname=rancher.my.org ``` From 4523fa65d2ef6282cd072b311b8def60e6404335 Mon Sep 17 00:00:00 2001 From: Alpha Date: Tue, 21 Apr 2020 10:49:03 +0800 Subject: [PATCH 2/2] Update _index.md --- .../v2.x/en/installation/k8s-install/helm-rancher/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rancher/v2.x/en/installation/k8s-install/helm-rancher/_index.md b/content/rancher/v2.x/en/installation/k8s-install/helm-rancher/_index.md index 335d58d310..2071415d66 100644 --- a/content/rancher/v2.x/en/installation/k8s-install/helm-rancher/_index.md +++ b/content/rancher/v2.x/en/installation/k8s-install/helm-rancher/_index.md @@ -145,7 +145,7 @@ Because `rancher` is the default option for `ingress.tls.source`, we are not spe - Set the `hostname` to the DNS name you pointed at your load balancer. - If you are installing an alpha version, Helm requires adding the `--devel` option to the command. - To install a specific Rancher version, use the `--version` flag, example: `--version 2.3.6` -- Provder certmanager version, as difference version has difference annotation. +- Provide certmanager version, as difference version has difference annotation. * For example `--set certmanager.version="0.14.1"` ```