From 6e49f591aad5949f3008633dd90356159219e22e Mon Sep 17 00:00:00 2001 From: Catherine Luse Date: Fri, 3 Apr 2020 11:51:56 -0700 Subject: [PATCH] Add line breaks --- .../en/installation/install-options/how-to-flags/_index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/k3s/latest/en/installation/install-options/how-to-flags/_index.md b/content/k3s/latest/en/installation/install-options/how-to-flags/_index.md index cfb79d7371a..25aa9b43567 100644 --- a/content/k3s/latest/en/installation/install-options/how-to-flags/_index.md +++ b/content/k3s/latest/en/installation/install-options/how-to-flags/_index.md @@ -10,10 +10,12 @@ Throughout the K3s documentation, you will see some options that can be passed i The option to allow writing to the kubeconfig file is useful for allowing a K3s cluster to be imported into Rancher. Below are two ways to pass in the option. Using the flag `--write-kubeconfig-mode 644`: + ```bash $ curl -sfL https://get.k3s.io | sh -s - --write-kubeconfig-mode 644 ``` Using the environment variable `K3S_KUBECONFIG_MODE`: + ```bash $ curl -sfL https://get.k3s.io | K3S_KUBECONFIG_MODE="644" sh -s - ```