diff --git a/content/rancher/v2.x/en/backups/backups/ha-backups/_index.md b/content/rancher/v2.x/en/backups/backups/ha-backups/_index.md index c9ef3595a95..0437530f6bd 100644 --- a/content/rancher/v2.x/en/backups/backups/ha-backups/_index.md +++ b/content/rancher/v2.x/en/backups/backups/ha-backups/_index.md @@ -61,7 +61,7 @@ To take recurring snapshots, enable the `etcd-snapshot` service, which is a serv 5. Open **Terminal** and change directory to the location of the RKE binary. Your `rancher-cluster.yml` file must reside in the same directory. -6. Run one of the following commands: +6. Run the following command: ``` rke up --config rancher-cluster.yml diff --git a/content/rke/v0.1.x/en/installation/_index.md b/content/rke/v0.1.x/en/installation/_index.md index dc7eed18d51..bead2e1cab9 100644 --- a/content/rke/v0.1.x/en/installation/_index.md +++ b/content/rke/v0.1.x/en/installation/_index.md @@ -62,25 +62,15 @@ There are two easy ways to create a `cluster.yml`: ### Using `rke config` -To create a new `cluster.yml`, run `rke config` and this command prompts you for all the information needed to build your cluster. Review [our cluster configuration options]({{< baseurl >}}/rke/v0.1.x/en/config-options/) to understand what each question means. - -``` -rke config -``` - -After answering the list of questions, there is a `cluster.yml` created in the directory where you launched the `rke config` command. After the `cluster.yml` is created, you can edit the file to make any changes. - -#### Creating a Basic `cluster.yml` +Run `rke config` to create a new `cluster.yml` in the current directory. This command will prompt you for all the information needed to build a cluster. See [cluster configuration options]({{< baseurl >}}/rke/v0.1.x/en/config-options/) for details on the various options. ``` rke config --name cluster.yml ``` -After answering the list of questions, there is a `cluster.yml` created in the directory where you launched the `rke config` command. - #### Creating an Empty `cluster.yml` -If you want an empty `cluster.yml` template, you can use the `--empty` flag so that a template is produced, but there are no values in the template. +You can create an empty template `cluster.yml` file by specifying the `--empty` flag. ``` rke config --empty --name cluster.yml