Skip to content

Commit

Permalink
tripleo muilti-cell: conditionally use ext net
Browse files Browse the repository at this point in the history
Move the External networks removal snippet from ceph.sh to
the main tripleo.sh script, and make it controled by
the TRIPLEO_NETWORKING flag.

Add attach_external_net j2 var based on the TRIPLEO_NETWORKING
value.

Multi-node adoption CI jobs deploy tripleo isolnet w/o external network
historically, so it would use TRIPLEO_NETWORKING=false.
For local setups, one might want to use it.

Signed-off-by: Bohdan Dobrelia <[email protected]>
  • Loading branch information
bogdando committed Oct 17, 2024
1 parent 49703a0 commit 9300e3c
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 9 deletions.
2 changes: 2 additions & 0 deletions devsetup/scripts/tripleo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export OCTAVIA_ENABLED=${OCTAVIA_ENABLED}
export TELEMETRY_ENABLED=${TELEMETRY_ENABLED:-true}
export TLSE_ENABLED=${TLSE_ENABLED:-false}
export CLOUD_DOMAIN=${CLOUD_DOMAIN:-localdomain}
export TRIPLEO_NETWORKING=${TRIPLEO_NETWORKING:-true}
set +x
if [ ! -f \$HOME/containers-prepare-parameters.yaml ]; then
Expand Down Expand Up @@ -162,6 +163,7 @@ interface_mtu: ${INTERFACE_MTU:-1500}
ntp_server: ${NTP_SERVER}
gateway_ip: ${GATEWAY}
manage_default_route: ${TRIPLEO_NETWORKING}
attach_external_net: ${TRIPLEO_NETWORKING}
dns_server: ${PRIMARY_RESOLV_CONF_ENTRY}
user_home: /home/zuul
cloud_domain: ${CLOUD_DOMAIN}
Expand Down
5 changes: 0 additions & 5 deletions devsetup/tripleo/ceph.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ EOF
# create roles file
openstack overcloud roles generate Controller ComputeHCI > roles.yaml

# disable external gateway for controller nodes
sed -i "s/default_route_networks: \['External'\]/default_route_networks: \['ControlPlane'\]/" roles.yaml
sed -i "/External:/d" roles.yaml
sed -i "/subnet: external_subnet/d" roles.yaml

# generate ceph_spec file
openstack overcloud ceph spec config-download.yaml \
--tld localdomain \
Expand Down
21 changes: 18 additions & 3 deletions devsetup/tripleo/config-download-multistack.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,25 @@ resource_registry:
OS::TripleO::Compute::Ports::StorageMgmtPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_storage_mgmt.yaml
OS::TripleO::Compute::Ports::StoragePort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_storage.yaml
OS::TripleO::Compute::Ports::TenantPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_tenant.yaml
OS::TripleO::Compute::Ports::ExternalPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_external.yaml
OS::TripleO::Controller::Ports::InternalApiPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_internal_api.yaml
OS::TripleO::Controller::Ports::StorageMgmtPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_storage_mgmt.yaml
OS::TripleO::Controller::Ports::StoragePort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_storage.yaml
OS::TripleO::Controller::Ports::TenantPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_tenant.yaml
OS::TripleO::Controller::Ports::ExternalPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_external.yaml
OS::TripleO::CellController::Ports::InternalApiPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_internal_api.yaml
OS::TripleO::CellController::Ports::StorageMgmtPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_storage_mgmt.yaml
OS::TripleO::CellController::Ports::StoragePort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_storage.yaml
OS::TripleO::CellController::Ports::TenantPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_tenant.yaml
OS::TripleO::CellController::Ports::ExternalPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_external.yaml
OS::TripleO::CellControllerCompute::Ports::InternalApiPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_internal_api.yaml
OS::TripleO::CellControllerCompute::Ports::StorageMgmtPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_storage_mgmt.yaml
OS::TripleO::CellControllerCompute::Ports::StoragePort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_storage.yaml
OS::TripleO::CellControllerCompute::Ports::TenantPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_tenant.yaml
{% if attach_external_net|bool %}
OS::TripleO::Compute::Ports::ExternalPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_external.yaml
OS::TripleO::Controller::Ports::ExternalPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_external.yaml
OS::TripleO::CellController::Ports::ExternalPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_external.yaml
OS::TripleO::CellControllerCompute::Ports::ExternalPort: /usr/share/openstack-tripleo-heat-templates/network/ports/deployed_external.yaml
{% endif %}

parameter_defaults:
DeployedServerPortMap:
controller-0-ctlplane:
Expand Down Expand Up @@ -83,10 +86,13 @@ parameter_defaults:
ip_address: 172.20.0.103
ip_address_uri: 172.20.0.103
ip_subnet: 172.20.0.0/24
{% if attach_external_net|bool %}
external:
ip_address: 172.21.0.103
ip_address_uri: 172.21.0.103
ip_subnet: 172.21.0.0/24
{% endif %}

compute-0: # cell1-controller-0 (cell1, ind0)
ctlplane:
ip_address: 192.168.122.106
Expand All @@ -108,10 +114,13 @@ parameter_defaults:
ip_address: 172.20.0.106
ip_address_uri: 172.20.0.106
ip_subnet: 172.20.0.0/24
{% if attach_external_net|bool %}
external:
ip_address: 172.21.0.106
ip_address_uri: 172.21.0.106
ip_subnet: 172.21.0.0/24
{% endif %}

compute-1: # cell1-compute-0 (cell1, ind1)
ctlplane:
ip_address: 192.168.122.107
Expand All @@ -133,10 +142,13 @@ parameter_defaults:
ip_address: 172.20.0.107
ip_address_uri: 172.20.0.107
ip_subnet: 172.20.0.0/24
{% if attach_external_net|bool %}
external:
ip_address: 172.21.0.107
ip_address_uri: 172.21.0.107
ip_subnet: 172.21.0.0/24
{% endif %}

compute-2: # cell2-controller-compute-0 AIO (cell2, ind0)
ctlplane:
ip_address: 192.168.122.109
Expand All @@ -158,10 +170,13 @@ parameter_defaults:
ip_address: 172.20.0.109
ip_address_uri: 172.20.0.109
ip_subnet: 172.20.0.0/24
{% if attach_external_net|bool %}
external:
ip_address: 172.21.0.109
ip_address_uri: 172.21.0.109
ip_subnet: 172.21.0.0/24
{% endif %}

CtlplaneNetworkAttributes:
network:
dns_domain: localdomain
Expand Down
10 changes: 9 additions & 1 deletion devsetup/tripleo/tripleo_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,18 @@ fi
# defaults for non-ceph case
CEPH_OVERCLOUD_ARGS=""
ROLES_FILE="/home/zuul/overcloud_roles.yaml"
if [ "$EDPM_COMPUTE_CEPH_ENABLED" = "true" ] ; then
ROLES_FILE="/home/zuul/roles.yaml"
fi
if [ "$TRIPLEO_NETWORKING" != "true" ] ; then
# disable external gateway for controller nodes
sed -i "s/default_route_networks: \['External'\]/default_route_networks: \['ControlPlane'\]/" $ROLES_FILE
sed -i "/External:/d" $ROLES_FILE
sed -i "/subnet: external_subnet/d" $ROLES_FILE
fi
if [ "$EDPM_COMPUTE_CEPH_ENABLED" = "true" ] ; then
CEPH_OVERCLOUD_ARGS="${CEPH_ARGS}"
[[ "$MANILA_ENABLED" == "true" ]] && CEPH_OVERCLOUD_ARGS+=' -e /usr/share/openstack-tripleo-heat-templates/environments/cephadm/ceph-mds.yaml'
ROLES_FILE="/home/zuul/roles.yaml"
/tmp/ceph.sh
fi

Expand Down

0 comments on commit 9300e3c

Please sign in to comment.