overcloud deploy fails for overcloud-ComputeAllNodesValidationDeployment
Trying to deploy an overcloud using redhat openstack 8. It keeps failing on the compute node. the controller node seems ok.
I have created local copies of the controller and compute yaml files, we will use bonding and vlans on our external connections. Both the controller and compute servers will have external IPs.
One think that I notice is the IP address of the compute server does not get set correctly. the bond is created correctly and the vlan is tagged correctly on the bond. the IP address that keeps using is that of the provisioning network. I even went so far to copy the controller.yaml file to the compute.yaml file. Same result, the IP address of the external vlan was wrong.
Here is the network-environment.yaml file I am using
[stack@ostack4-director templates]$ more network-environment.yaml
resource_registry:
OS::TripleO::Compute::Net::SoftwareConfig: /home/stack/templates/nic-configs/compute.yaml
OS::TripleO::Controller::Net::SoftwareConfig: /home/stack/templates/nic-configs/controller.yaml
parameter_defaults:
# The IP address of the EC2 metadata server. Generally the IP of the Undercloud
EC2MetadataIp: 192.0.2.1
# Gateway router for the provisioning network (or Undercloud IP)
ControlPlaneDefaultRoute: 192.0.2.1
DnsServers: ["192.0.2.1"]
InternalApiNetCidr: 172.16.0.0/24
TenantNetCidr: 172.17.0.0/24
StorageNetCidr: 172.18.0.0/24
StorageMgmtNetCidr: 172.19.0.0/24
ExternalNetCidr: 10.19.72.0/26
# Leave room for floating IPs in the External allocation pool
ExternalAllocationPools: [{'start': '10.19.72.30', 'end': '10.19.72.39'}]
InternalApiAllocationPools: [{'start': '172.16.0.10', 'end': '172.16.0.200'}]
TenantAllocationPools: [{'start': '172.17.0.10', 'end': '172.17.0.200'}]
StorageAllocationPools: [{'start': '172.18.0.10', 'end': '172.18.0.200'}]
StorageMgmtAllocationPools: [{'start': '172.19.0.10', 'end': '172.19.0.200'}]
InternalApiNetworkVlanID: 201
StorageNetworkVlanID: 3903
StorageMgmtNetworkVlanID: 203
TenantNetworkVlanID: 204
ExternalNetworkVlanID: 3020
# Set to the router gateway on the external network
ExternalInterfaceDefaultRoute: 10.19.72.62
# Set to "br-ex" if using floating IPs on native VLAN on bridge br-ex
NeutronExternalNetworkBridge: "br-ex"
# Customize bonding options if required
BondInterfaceOvsOptions: "bond_mode=active-backup"
Any suggestions?
Thanks..
Tim