tripleo-heat-templates/environments/fixed-ip-vips.yaml
Emilien Macchi ac9af72f99 Fix PublicVirtualFixedIPs in envs
PublicVirtualFixedIPs vs PublicVirtualFixedIps

It was a typo introduced in this commit:
I4e926f1c6b30d4009d24a307bc21e07e1731b387

And found here:
http://logs.openstack.org/79/535479/4/check/tripleo-ci-centos-7-undercloud-containers/670d906/logs/undercloud/home/zuul/undercloud_install.log.gz#_2018-02-14_11_04_59

Change-Id: I15a632376451a7554e3304202872694e70cd4ecd
2018-02-15 05:52:07 +00:00

22 lines
1.1 KiB
YAML

# This template allows the IPs to be preselected for each VIP. Note that
# this template should be included after other templates which affect the
# network such as network-isolation.yaml.
resource_registry:
OS::TripleO::Network::Ports::ExternalVipPort: ../network/ports/external.yaml
OS::TripleO::Network::Ports::InternalApiVipPort: ../network/ports/internal_api.yaml
OS::TripleO::Network::Ports::StorageVipPort: ../network/ports/storage.yaml
OS::TripleO::Network::Ports::StorageMgmtVipPort: ../network/ports/storage_mgmt.yaml
OS::TripleO::Network::Ports::RedisVipPort: ../network/ports/vip.yaml
parameter_defaults:
# Set the IP addresses of the VIPs here.
# NOTE: we will eventually move to one VIP per service
#
ControlFixedIPs: [{'ip_address':'192.168.24.240'}]
PublicVirtualFixedIPs: [{'ip_address':'10.0.0.240'}]
InternalApiVirtualFixedIPs: [{'ip_address':'172.16.2.240'}]
StorageVirtualFixedIPs: [{'ip_address':'172.16.1.240'}]
StorageMgmtVirtualFixedIPs: [{'ip_address':'172.16.3.240'}]
RedisVirtualFixedIPs: [{'ip_address':'172.16.2.241'}]