diff options
author | Ryan Cook <rcook@redhat.com> | 2017-06-16 10:27:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-16 10:27:41 -0700 |
commit | aa0c8c910a0b8c29afb83d1562c252affcd4a2cb (patch) | |
tree | fbde420c20e6f18fcc8063e268a1525f8848c8d0 /roles/hostnames/vars | |
parent | 7ba2ef768b25b99f628c88a8e6348a8d0df630a0 (diff) | |
parent | 9369c9dfd722e697f83a225d78c2c1dcd1247976 (diff) | |
download | openshift-aa0c8c910a0b8c29afb83d1562c252affcd4a2cb.tar.gz openshift-aa0c8c910a0b8c29afb83d1562c252affcd4a2cb.tar.bz2 openshift-aa0c8c910a0b8c29afb83d1562c252affcd4a2cb.tar.xz openshift-aa0c8c910a0b8c29afb83d1562c252affcd4a2cb.zip |
Merge pull request #466 from tomassedovic/openstack-provider
Openstack provider
Diffstat (limited to 'roles/hostnames/vars')
-rw-r--r-- | roles/hostnames/vars/main.yaml | 2 | ||||
-rw-r--r-- | roles/hostnames/vars/records.yaml | 28 |
2 files changed, 30 insertions, 0 deletions
diff --git a/roles/hostnames/vars/main.yaml b/roles/hostnames/vars/main.yaml new file mode 100644 index 000000000..3eecb8dc4 --- /dev/null +++ b/roles/hostnames/vars/main.yaml @@ -0,0 +1,2 @@ +--- +counter: 1 diff --git a/roles/hostnames/vars/records.yaml b/roles/hostnames/vars/records.yaml new file mode 100644 index 000000000..0cadc8181 --- /dev/null +++ b/roles/hostnames/vars/records.yaml @@ -0,0 +1,28 @@ +--- +- name: "Building Records" + set_fact: + dns_records_add: + - view: private + zone: example.com + entries: + - type: A + hostname: master1.example.com + ip: 172.16.15.94 + - type: A + hostname: node1.example.com + ip: 172.16.15.86 + - type: A + hostname: node2.example.com + ip: 172.16.15.87 + - view: public + zone: example.com + entries: + - type: A + hostname: master1.example.com + ip: 10.3.10.116 + - type: A + hostname: node1.example.com + ip: 10.3.11.46 + - type: A + hostname: node2.example.com + ip: 10.3.12.6 |