fix some wording around the rke commands.

This commit is contained in:
Jason Greathouse
2018-09-12 15:22:10 -05:00
parent 4f50f46bef
commit 75bb86b29e
2 changed files with 3 additions and 13 deletions
@@ -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
+2 -12
View File
@@ -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