36 lines
848 B
YAML
36 lines
848 B
YAML
# 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
|