You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
848 B
35 lines
848 B
# Example vip data entry specifying a fixed IP address |
|
# |
|
# The vip data file should be a list of vip definitions, following is the |
|
# configurable options for each vip entry. |
|
# |
|
# name: |
|
# description: |
|
# - Virtual IP name (optional) |
|
# type: str |
|
# network: |
|
# description: |
|
# - Neutron Network name |
|
# type: str |
|
# required: True |
|
# ip_address: |
|
# description: |
|
# - IP address (Optional) |
|
# type: str |
|
# subnet: |
|
# description: |
|
# - Neutron Subnet name (Optional) |
|
# type: str |
|
# dns_name: |
|
# description: |
|
# - Dns Name |
|
# type: str |
|
# required: True |
|
# default: overcloud |
|
# |
|
- network: ctlplane |
|
dns_name: overcloud |
|
ip_address: 192.168.24.5 |
|
- network: external |
|
dns_name: overcloud |
|
ip_address: 10.0.0.5
|
|
|