You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
419 B
YAML
21 lines
419 B
YAML
- import_tasks: ./prerequisites.yml
|
|
|
|
- name: Copy folder-structure
|
|
ansible.builtin.copy:
|
|
src: opt/netmaker_server
|
|
dest: /opt/
|
|
mode: preserve
|
|
|
|
- name: Deploy compose file
|
|
ansible.builtin.template:
|
|
src: docker-compose.yml.template
|
|
dest: /opt/netmaker_server/docker-compose.yml
|
|
|
|
- import_tasks: ./certs.yml
|
|
|
|
- import_tasks: ./nginx.yml
|
|
|
|
- import_tasks: ./rqlite.yml
|
|
|
|
- import_tasks: ./netmaker.yml
|