Created prepare playbook

This commit is contained in:
2021-11-08 03:32:56 +01:00
parent 04fbb0c3e3
commit 2d8ae4e8da
8 changed files with 197 additions and 0 deletions

74
ansible/inventory.yaml Normal file
View File

@@ -0,0 +1,74 @@
# ip addresses could be acquired from the vms after they're created
cloud-1:
vars:
magic_router_ip: 192.168.100.10
magic_routes:
- 192.168.101.0/24
- 192.168.102.0/24
- 192.168.103.0/24
ansible_become: true
ansible_user: ubuntu
hosts:
cloud-cluster-1-master-1:
ansible_host: 192.168.100.131
cloud-cluster-1-worker-1:
ansible_host: 192.168.100.244
cloud-cluster-1-worker-2:
ansible_host: 192.168.100.244
edge-1:
vars:
magic_router_ip: 192.168.101.10
magic_routes:
- 192.168.100.0/24
- 192.168.102.0/24
- 192.168.103.0/24
ansible_become: true
ansible_user: ubuntu
hosts:
edge-cluster-1-master-1:
ansible_host: 192.168.101.244
edge-cluster-1-worker-1:
ansible_host: 192.168.101.244
edge-cluster-1-worker-2:
ansible_host: 192.168.101.244
edge-2:
become: true
user: ubuntu
vars:
magic_router_ip: 192.168.102.10
magic_routes:
- 192.168.100.0/24
- 192.168.101.0/24
- 192.168.103.0/24
ansible_become: true
ansible_user: ubuntu
hosts:
edge-cluster-2-master-1:
ansible_host: 192.168.102.244
edge-cluster-2-worker-1:
ansible_host: 192.168.102.244
edge-cluster-2-worker-2:
ansible_host: 192.168.102.244
site-1:
vars:
magic_router_ip: 192.168.103.10
magic_routes:
- 192.168.100.0/24
- 192.168.101.0/24
- 192.168.102.0/24
ansible_become: true
ansible_user: ubuntu
hosts:
site-emulator-1:
ansible_host: 192.168.103.244
all:
children:
cloud-1:
edge-1:
edge-2:
site-1: