From d33b296b9bc3be787f20927b01f33d0ac666f01d Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Fri, 17 Mar 2023 22:45:08 +0100 Subject: [PATCH] Accent the need of INSTALL_K3S_VERSION parameter Move the clause about INSTALL_K3S_VERSION before get.k3s.io cluster installation command example to emphasize its requirement to get the correct version of k3s on which the rancher should will be installed, because it can be an annoying mistake that user might start from setup from scratch. Signed-off-by: Kyr Shatskyy --- .../quick-start-guides/deploy-rancher-manager/helm-cli.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/quick-start-guides/deploy-rancher-manager/helm-cli.md b/docs/getting-started/quick-start-guides/deploy-rancher-manager/helm-cli.md index ec47ac7df19..06b62a7841e 100644 --- a/docs/getting-started/quick-start-guides/deploy-rancher-manager/helm-cli.md +++ b/docs/getting-started/quick-start-guides/deploy-rancher-manager/helm-cli.md @@ -15,14 +15,14 @@ The full installation requirements are [here](../../../pages-for-subheaders/inst ## Install K3s on Linux +Rancher needs to be installed on a supported Kubernetes version. To specify the K3s version, use the INSTALL_K3S_VERSION environment variable when running the K3s installation script. Refer to the [support maintenance terms](https://rancher.com/support-maintenance-terms/). + Install a K3s cluster by running this command on the Linux machine: ``` curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION="***" sh -s - server --cluster-init ``` -Rancher needs to be installed on a supported Kubernetes version. To specify the K3s version, use the INSTALL_K3S_VERSION environment variable when running the K3s installation script. Refer to the [support maintenance terms](https://rancher.com/support-maintenance-terms/). - Using `--cluster-init` allows K3s to use embedded etcd as the datastore and has the ability to convert to an HA setup. Refer to [High Availability with Embedded DB](https://rancher.com/docs/k3s/latest/en/installation/ha-embedded/). Save the IP of the Linux machine.