From d197ce230f0e2dd85bff08154ef32f43c1b25262 Mon Sep 17 00:00:00 2001 From: Kopylov German Date: Sun, 26 Feb 2017 13:42:52 +0300 Subject: [PATCH] Fix cluster.yml file extension in docs --- docs/ansible.md | 2 +- docs/getting-started.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ansible.md b/docs/ansible.md index b47f3d705..19b964317 100644 --- a/docs/ansible.md +++ b/docs/ansible.md @@ -162,7 +162,7 @@ ansible-playbook -i inventory/inventory.ini -e dns_server='' cluster.yml --tags And this prepares all container images localy (at the ansible runner node) without installing or upgrading related stuff or trying to upload container to K8s cluster nodes: ``` -ansible-playbook -i inventory/inventory.ini cluster.yaml \ +ansible-playbook -i inventory/inventory.ini cluster.yml \ -e download_run_once=true -e download_localhost=true \ --tags download --skip-tags upload,upgrade ``` diff --git a/docs/getting-started.md b/docs/getting-started.md index c44ed1d75..caf4485ae 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -50,7 +50,7 @@ and start the deployment: **IMPORTANT: Edit my_inventory/groups_vars/*.yaml to override data vars** ``` -ansible-playbook -i my_inventory/inventory.cfg cluster.yaml -b -v \ +ansible-playbook -i my_inventory/inventory.cfg cluster.yml -b -v \ --private-key=~/.ssh/private_key ```