diff options
author | Kevin Jones <kevinjones@redhat.com> | 2017-01-09 21:53:36 -0500 |
---|---|---|
committer | Kevin Jones <kevinjones@redhat.com> | 2017-01-09 21:53:36 -0500 |
commit | 1e606a1edd5226e41bc411e6793a5e4efe8c55f9 (patch) | |
tree | ea9faa35ba5aebc85ec900c8c0903512197fe531 /environments | |
parent | 23e9099612d3b97b9c238126b98e2016d9fdb783 (diff) |
Correct typo in ManagementAllocationPools in network-environment.yaml
There was a comma after 'end' in ManagementAllocationPools that causes
a failure if using this parameter straight without modification.
Replaced comma with colon.
Closes-Bug: 1655204
Change-Id: Ic25606ea0b6637fcd33f1375f34a6486eda2af85
Signed-off-by: Kevin Jones <kevinjones@redhat.com>
Diffstat (limited to 'environments')
-rw-r--r-- | environments/network-environment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/environments/network-environment.yaml b/environments/network-environment.yaml index b02fc198..796eb806 100644 --- a/environments/network-environment.yaml +++ b/environments/network-environment.yaml @@ -43,7 +43,7 @@ parameter_defaults: ExternalInterfaceDefaultRoute: 10.0.0.1 # Uncomment if using the Management Network (see network-management.yaml) # ManagementNetCidr: 10.0.1.0/24 - # ManagementAllocationPools: [{'start': '10.0.1.10', 'end', '10.0.1.50'}] + # ManagementAllocationPools: [{'start': '10.0.1.10', 'end': '10.0.1.50'}] # Use either this parameter or ControlPlaneDefaultRoute in the NIC templates # ManagementInterfaceDefaultRoute: 10.0.1.1 # Define the DNS servers (maximum 2) for the overcloud nodes |