From e7b3dce72812dbfdddf3d15b4883c813b7448587 Mon Sep 17 00:00:00 2001
From: Sam Yaple <sam@yaple.net>
Date: Tue, 18 Aug 2015 11:55:40 +0000
Subject: [PATCH] Remove defaults.yml from docs

Change-Id: I1d69aa1670c897deee09f09ecfa29866223056cc
---
 docs/ansible-deployment.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/ansible-deployment.md b/docs/ansible-deployment.md
index b1c79c9d32..9f277c2abd 100644
--- a/docs/ansible-deployment.md
+++ b/docs/ansible-deployment.md
@@ -78,14 +78,14 @@ of the containers on the localhost. These commands will be wrapped in the
 kolla-script in the future.
 
     cd ./kolla/ansible
-    ansible-playbook -i inventory/all-in-one -e @/etc/kolla/defaults.yml -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml
+    ansible-playbook -i inventory/all-in-one -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml
 
 To run the playbooks for only a particular service, Ansible tags can be used.
 Multiple tags may be specified, and order is still determined by the playbooks.
 
     cd ./kolla/ansible
-    ansible-playbook -i inventory/all-in-one -e @/etc/kolla/defaults.yml -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml --tags rabbitmq
-    ansible-playbook -i inventory/all-in-one -e @/etc/kolla/defaults.yml -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml --tags rabbitmq,mariadb
+    ansible-playbook -i inventory/all-in-one -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml --tags rabbitmq
+    ansible-playbook -i inventory/all-in-one -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml site.yml --tags rabbitmq,mariadb
 
 Finally, you can view ./kolla/tools/openrc-example for an example of an openrc
 you can use with your environment. If you wish you may also run the following