You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
adc/ansible/halo.yml

17 lines
349 B

---
- name: init droplet
hosts: halo
tasks:
- debug: msg="Deploying droplet config to cloud server"
roles:
- { name: droplets, tags: ['init']}
- name: deploy the halo stack
hosts: halo
remote_user: "{{ remote_user }}"
tasks:
- debug: msg="Deploying halo stack to cloud server"
roles:
- { name: halo, tags: ['halo'] }