From 82aa5843f7001013499ac83c1ca915f9263dac7a Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Mon, 20 Apr 2015 14:46:49 -0500 Subject: [PATCH] Creates a new playbook to run for initial node setup. This playbook is meant to be pointed at a freshly reimaged node to ensure that it's setup to be managed by ansible and provisioned according to its defined role in the inventory. Signed-off-by: Andrew Schoen --- cephlab.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 cephlab.yml diff --git a/cephlab.yml b/cephlab.yml new file mode 100644 index 00000000..72492362 --- /dev/null +++ b/cephlab.yml @@ -0,0 +1,11 @@ +--- +# ensure the node is setup to be managed by ansible +# eventually, most of the things here will be done by +# cobbler / downburst / cloud-init. +- include: ansible_managed.yml + +# if this node is in the testnode group, configure it +- include: testnodes.yml + +# if this node is in the cobbler group, configure it +- include: cobbler.yml -- 2.47.3