diff options
author | Lénaïc Huard <lhuard@amadeus.com> | 2016-01-18 16:28:55 +0100 |
---|---|---|
committer | Lénaïc Huard <lhuard@amadeus.com> | 2016-02-04 18:20:03 +0100 |
commit | 82d474d7b1ba564f051c1ccf125413f4cca28d42 (patch) | |
tree | 0824401bf9beb36f4e137827177e988070b51981 /playbooks/openstack/openshift-cluster/vars.yml | |
parent | 73ab565d036b6f3c8777d305fdc1a5029b097f88 (diff) | |
download | openshift-82d474d7b1ba564f051c1ccf125413f4cca28d42.tar.gz openshift-82d474d7b1ba564f051c1ccf125413f4cca28d42.tar.bz2 openshift-82d474d7b1ba564f051c1ccf125413f4cca28d42.tar.xz openshift-82d474d7b1ba564f051c1ccf125413f4cca28d42.zip |
Add a DNS server on OpenStack clusters
Diffstat (limited to 'playbooks/openstack/openshift-cluster/vars.yml')
-rw-r--r-- | playbooks/openstack/openshift-cluster/vars.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/playbooks/openstack/openshift-cluster/vars.yml b/playbooks/openstack/openshift-cluster/vars.yml index 76cde1706..ee26d223e 100644 --- a/playbooks/openstack/openshift-cluster/vars.yml +++ b/playbooks/openstack/openshift-cluster/vars.yml @@ -2,12 +2,10 @@ debug_level: 2 openstack_infra_heat_stack: "{{ lookup('oo_option', 'infra_heat_stack' ) | default('files/heat_stack.yaml', True) }}" -openstack_network_cidr: "{{ lookup('oo_option', 'net_cidr' ) | - default('192.168.' + ( ( 1048576 | random % 256 ) | string() ) + '.0/24', True) }}" +openstack_subnet_24_prefix: "{{ lookup('oo_option', 'subnet_24_prefix' ) | + default('192.168.' + ( ( 1048576 | random % 256 ) | string() ), True) }}" openstack_network_external_net: "{{ lookup('oo_option', 'external_net' ) | default('external', True) }}" -openstack_floating_ip_pool: "{{ lookup('oo_option', 'floating_ip_pool' ) | - default('external', True) }}" openstack_network_dns: "{{ lookup('oo_option', 'dns' ) | default('8.8.8.8,8.8.4.4', True) | oo_split() }}" openstack_ssh_public_key: "{{ lookup('file', lookup('oo_option', 'public_key') | |