aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/create_node_pod_yaml/templates/pod.yaml.j2
blob: e51701830661bc35b06f39d4c54541e6acd6158f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
nodes:
{% for node in groups[pod_group] %}
-
  name: "{{ node }}"
{% if "control" in hostvars[node].group_names %}
  role: Controller
{% elif "compute" in hostvars[node].group_names %}
  role: Compute
{% endif %}
  ip: "{{ hostvars[node].ansible_host }}"
  user: "{{ hostvars[node].ansible_user }}"
{% if hostvars[node].ansible_port is defined %}
  ssh_port: "{{ hostvars[node].ansible_port }}"
{% endif %}
{% if hostvars[node].ansible_ssh_pass is defined %}
  password: "{{ hostvars[node].ansible_ssh_pass }}"
{% endif %}
{% if hostvars[node].ansible_ssh_private_key_file is defined %}
  key_filename: "{{ hostvars[node].ansible_ssh_private_key_file }}"
{% endif %}
{% endfor %}