From 3c491ec5f87bae6db7147008510855cc5a34a0d0 Mon Sep 17 00:00:00 2001 From: Vasili Revelas Date: Tue, 6 Dec 2022 16:35:21 +0200 Subject: [PATCH] Fix helm install error The error is "Error: unknown flag: --output-dir" This is a leftover from when the instructions ran "helm template --output-dir ." --- .../air-gapped-helm-cli-install/install-rancher-ha.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versioned_docs/version-2.6/getting-started/installation-and-upgrade/other-installation-methods/air-gapped-helm-cli-install/install-rancher-ha.md b/versioned_docs/version-2.6/getting-started/installation-and-upgrade/other-installation-methods/air-gapped-helm-cli-install/install-rancher-ha.md index 2ea074ef230..f48e3975385 100644 --- a/versioned_docs/version-2.6/getting-started/installation-and-upgrade/other-installation-methods/air-gapped-helm-cli-install/install-rancher-ha.md +++ b/versioned_docs/version-2.6/getting-started/installation-and-upgrade/other-installation-methods/air-gapped-helm-cli-install/install-rancher-ha.md @@ -205,7 +205,7 @@ Install Rancher, declaring your chosen options. Use the reference table below to | `` | The DNS name for your private registry. | ```plain - helm install rancher ./rancher-.tgz --output-dir . \ + helm install rancher ./rancher-.tgz \ --namespace cattle-system \ --set hostname= \ --set rancherImage=/rancher/rancher \ @@ -217,7 +217,7 @@ Install Rancher, declaring your chosen options. Use the reference table below to If you are using a Private CA signed cert, add `--set privateCA=true` following `--set ingress.tls.source=secret`: ```plain - helm install rancher ./rancher-.tgz --output-dir . \ + helm install rancher ./rancher-.tgz \ --namespace cattle-system \ --set hostname= \ --set rancherImage=/rancher/rancher \