diff options
author | Eric Sauer <esauer@redhat.com> | 2016-06-08 14:58:36 -0400 |
---|---|---|
committer | Eric Sauer <esauer@redhat.com> | 2016-06-08 14:58:36 -0400 |
commit | e2181a706679666a6fff2e2aaca648ed982060bd (patch) | |
tree | 66008fbe9ed364e14df1ce3f3284b7d38401e1de /roles/hostnames/templates | |
parent | 61ea8e62e232bb86d9abfb1f2acb0786a67bbb78 (diff) | |
download | openshift-e2181a706679666a6fff2e2aaca648ed982060bd.tar.gz openshift-e2181a706679666a6fff2e2aaca648ed982060bd.tar.bz2 openshift-e2181a706679666a6fff2e2aaca648ed982060bd.tar.xz openshift-e2181a706679666a6fff2e2aaca648ed982060bd.zip |
Channging hard coded host groups to match openshift-ansible expected host groups. Importing byo playbook now instead of nested ansible run. Need to refactor how we generate hostnames to make it fit this.
Diffstat (limited to 'roles/hostnames/templates')
-rw-r--r-- | roles/hostnames/templates/records.template.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/hostnames/templates/records.template.yaml b/roles/hostnames/templates/records.template.yaml index a916fd2b3..2f2420464 100644 --- a/roles/hostnames/templates/records.template.yaml +++ b/roles/hostnames/templates/records.template.yaml @@ -3,12 +3,12 @@ dns_records_add: - view: private zone: {{ dns_domain }} entries: -{% for mst in groups['openshift_masters'] %} +{% for mst in groups['masters'] %} - type: A hostname: {{ hostvars[mst]['ansible_hostname'] }} ip: {{ hostvars[mst]['dns_private_ip'] }} {% endfor %} -{% for node in groups['openshift_nodes'] %} +{% for node in groups['nodes'] %} - type: A hostname: {{ hostvars[node]['ansible_hostname'] }} ip: {{ hostvars[node]['dns_private_ip'] }} @@ -16,12 +16,12 @@ dns_records_add: - view: public zone: {{ dns_domain}} entries: -{% for mst in groups['openshift_masters']%} +{% for mst in groups['masters']%} - type: A hostname: {{ hostvars[mst]['ansible_hostname'] }} ip: {{ hostvars[mst]['dns_public_ip'] }} {% endfor %} -{% for node in groups['openshift_nodes'] %} +{% for node in groups['nodes'] %} - type: A hostname: {{ hostvars[node]['ansible_hostname'] }} ip: {{ hostvars[node]['dns_public_ip'] }} |