summaryrefslogtreecommitdiffstats
path: root/ansible/roles/create_node_pod_yaml/templates/pod.yaml.j2
blob: e51701830661bc35b06f39d4c54541e6acd6158f (plain) @media only all and (prefers-color-scheme: dark) { .highlight .hll { background-color: #49483e } .highlight .c { color: #75715e } /* Comment */ .highlight .err { color: #960050; background-color: #1e0010 } /* Error */ .highlight .k { color: #66d9ef } /* Keyword */ .highlight .l { color: #ae81ff } /* Literal */ .highlight .n { color: #f8f8f2 } /* Name */ .highlight .o { color: #f92672 } /* Operator */ .highlight .p { color: #f8f8f2 } /* Punctuation */ .highlight .ch { color: #75715e } /* Comment.Hashbang */ .highlight .cm { color: #75715e } /* Comment.Multiline */ .highlight .cp { color: #75715e } /* Comment.Preproc */ .highlight .cpf { color: #75715e } /* Comment.PreprocFile */ .highlight .c1 { color: #757
---
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 %}
<