diff options
author | Matt Bruzek <mbruzek@gmail.com> | 2018-02-02 11:10:58 -0600 |
---|---|---|
committer | Matt Bruzek <mbruzek@gmail.com> | 2018-02-02 11:10:58 -0600 |
commit | 447ce80b3960eebff3a8a19d157487d7649929fc (patch) | |
tree | a3330c9b4994946b6987940b9f65a4d3750763cd /playbooks/openstack | |
parent | 3e2c7c22a54a3ccf88b49742003a3a4a937683f8 (diff) | |
download | openshift-447ce80b3960eebff3a8a19d157487d7649929fc.tar.gz openshift-447ce80b3960eebff3a8a19d157487d7649929fc.tar.bz2 openshift-447ce80b3960eebff3a8a19d157487d7649929fc.tar.xz openshift-447ce80b3960eebff3a8a19d157487d7649929fc.zip |
Removing prefix and replacing with cidr, pool_start and pool_end variables.
Diffstat (limited to 'playbooks/openstack')
-rw-r--r-- | playbooks/openstack/sample-inventory/group_vars/all.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/playbooks/openstack/sample-inventory/group_vars/all.yml b/playbooks/openstack/sample-inventory/group_vars/all.yml index d63229120..101ac52ad 100644 --- a/playbooks/openstack/sample-inventory/group_vars/all.yml +++ b/playbooks/openstack/sample-inventory/group_vars/all.yml @@ -85,7 +85,12 @@ openshift_openstack_docker_volume_size: "15" ## WARNING: This will delete any data on the volume! #openshift_openstack_prepare_and_format_registry_volume: False -openshift_openstack_subnet_prefix: "192.168.99" +# The Classless Inter-Domain Routing (CIDR) for the OpenStack VM subnet. +openshift_openstack_subnet_cidr: "192.168.99.0/24" +# The starting IP address for the OpenStack subnet allocation pool. +openshift_openstack_pool_start: "192.168.99.3" +# The ending IP address for the OpenStack subnet allocation pool. +openshift_openstack_pool_end: "192.168.99.254" ## Red Hat subscription: #rhsub_user: '<username>' |