From a927ed2da481a4d803acf4eae894d452fd500da4 Mon Sep 17 00:00:00 2001 From: shiftky Date: Fri, 29 Sep 2017 18:00:01 +0900 Subject: [PATCH] Improve playbook example of integration document --- docs/integration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integration.md b/docs/integration.md index 0d6f4ba0f..79f5c6ad0 100644 --- a/docs/integration.md +++ b/docs/integration.md @@ -35,7 +35,7 @@ 7. Modify path to library and roles in your ansible.cfg file (role naming should be uniq, you may have to rename your existent roles if they have same names as kubespray project): ``` ... - library = 3d/kubespray/library/ + library = 3d/kubespray/library/ roles_path = 3d/kubespray/roles/ ... ``` @@ -73,7 +73,7 @@ You could rename *all.yml* config to something else, i.e. *kubespray.yml* and cr 10. Now you can include kargo tasks in you existent playbooks by including cluster.yml file: ``` - name: Include kargo tasks - include: 3d/kubespray/cluster.yml + include: 3d/kubespray/cluster.yml ``` Or your could copy separate tasks from cluster.yml into your ansible repository.