-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathprovision.yml
More file actions
41 lines (39 loc) · 911 Bytes
/
Copy pathprovision.yml
File metadata and controls
41 lines (39 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
- hosts: tag_role_proxy
become: yes
vars:
ansible_ssh_common_args: '-o ProxyCommand="ssh -W %h:%p -q centos@haproxy.projecteka.in"'
ansible_user: centos
roles:
- haproxy
vars_files:
- "vars/vars.yml"
- "vars/secrets.yml"
- "vars/cidr_blocks.yml"
tags:
- proxy
- hosts: tag_role_proxy
become: yes
vars:
ansible_ssh_common_args: '-o ProxyCommand="ssh -W %h:%p -q centos@haproxy.projecteka.in"'
ansible_user: centos
roles:
- ssl-certs
vars_files:
- "vars/vars.yml"
- "vars/secrets.yml"
- "vars/cidr_blocks.yml"
tags:
- ssl-certs
- hosts: tag_role_docker_node
become: yes
vars:
ansible_ssh_common_args: '-o ProxyCommand="ssh -W %h:%p -q centos@haproxy.projecteka.in"'
ansible_user: centos
roles:
- docker
vars_files:
- "vars/vars.yml"
- "vars/secrets.yml"
- "vars/cidr_blocks.yml"
tags:
- docker-provision