aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/create_node_pod_yaml/templates/pod.yaml.j2
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/roles/create_node_pod_yaml/templates/pod.yaml.j2')
-rw-r--r--ansible/roles/create_node_pod_yaml/templates/pod.yaml.j222
1 files changed, 22 insertions, 0 deletions
diff --git a/ansible/roles/create_node_pod_yaml/templates/pod.yaml.j2 b/ansible/roles/create_node_pod_yaml/templates/pod.yaml.j2
new file mode 100644
index 000000000..e51701830
--- /dev/null
+++ b/ansible/roles/create_node_pod_yaml/templates/pod.yaml.j2
@@ -0,0 +1,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 %}