From 144f28a1a980350d135c9ee2c48c6d8c3afb45cd Mon Sep 17 00:00:00 2001 From: Petr OspalĂ˝ Date: Wed, 19 Dec 2018 14:27:43 +0100 Subject: Add the template for the hosts inventory file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue-ID: OOM-1551 Change-Id: I6ed8cae7fae5b482b5934d0e974434083714cf75 Signed-off-by: Petr OspalĂ˝ --- ansible/inventory/hosts.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 ansible/inventory/hosts.yml (limited to 'ansible/inventory') diff --git a/ansible/inventory/hosts.yml b/ansible/inventory/hosts.yml new file mode 100644 index 00000000..f11ef7b1 --- /dev/null +++ b/ansible/inventory/hosts.yml @@ -0,0 +1,32 @@ +--- +# This group contains hosts with all resources (binaries, packages, etc.) +# in tarball. +all: + vars: + # this key is supposed to be generated during setup.yml playbook execution + # change it just when you have better one working for all nodes + ansible_ssh_private_key_file: /root/.ssh/offline_ssh_key + ansible_ssh_common_args: '-o StrictHostKeyChecking=no' + + children: + resources: + hosts: + resource-host: + ansible_host: 10.8.8.5 + + # This is group of hosts where nexus, nginx, dns and all other required + # services are running. + infrastructure: + hosts: + infrastructure-server: + ansible_host: 10.8.8.13 + + # This is group of hosts which are/will be part of Kubernetes cluster. + kubernetes: + hosts: + kubernetes-node-1: + ansible_host: 10.8.8.19 + + nfs-server: + hosts: + kubernetes-node-1 -- cgit 1.2.3-korg