--- upgrade: - | Users of the ``OS::TripleO::Network::Ports::RedisVipPort`` and ``OS::TripleO::Network::Ports::OVNDBsVipPort`` interfaces must update their templates. The interfaces has been removed, and the managment of these virtual IPs has been moved to the tripleo-heat-templates service template. This change will typically affect deployments using already deployed servers. Typically the virtual IPs for Redis and OVNDBs was overriden using the ``deployed-neutron-port`` template. For example:: resource_registry: OS::TripleO::Network::Ports::RedisVipPort: /usr/share/openstack-tripleo-heat-templates/deployed-server/deployed-neutron-port.yaml OS::TripleO::Network::Ports::OVNDBsVipPort: /usr/share/openstack-tripleo-heat-templates/deployed-server/deployed-neutron-port.yaml parameter_defaults: DeployedServerPortMap: redis_virtual_ip: fixed_ips: - ip_address: 192.168.100.10 subnets: - cidr: 192.168.100.0/24 network: tags: - 192.168.100.0/24 ovn_dbs_virtual_ip: fixed_ips: - ip_address: 192.168.100.11 subnets: - cidr: 192.168.100.0/24 network: tags: - 192.168.100.0/24 This will have to be changed. The following example shows how to replicate the above configuration:: parameter_defaults: RedisVirtualFixedIPs: - ip_address: 192.168.100.10 use_neutron: false OVNDBsVirtualFixedIPs: - ip_address: 192.168.100.11 use_neutron: false deprecations: - | The interfaces ``OS::TripleO::Network::Ports::RedisVipPort`` and ``OS::TripleO::Network::Ports::OVNDBsVipPort`` ha been removed. The resources are no longer used in the overcloud heat stack.