Split out playbooks, start on registry

This commit is contained in:
Amarpreet Minhas 2020-08-29 20:23:24 -04:00
parent ee97d0611f
commit edaa4cc9f6
5 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
- hosts: docker_registry
roles:
- role: docker_registry
...

View file

@ -0,0 +1,5 @@
---
- hosts: docker_registry:nomad_client
roles:
- role: docker
...

View file

@ -0,0 +1,5 @@
---
- hosts: nomad_client
roles:
- role: nomad_client
...

View file

@ -0,0 +1,5 @@
---
- hosts: nomad_server
roles:
- role: nomad_server
...

View file

@ -0,0 +1,4 @@
---
- import_playbook: nomad-server.yml
- import_playbook: nomad-client.yml
...