How to change cluster CICD address for Automation Suite during install?
The 10.42.0.0/16 and 10.43.0.0/16 ranges are set by default and can not be changed through cluster_config.json.
- To use custom IP's , in Infra_Installer/infra-installer.sh file, search for cluster_cidrs_array and service_cidrs_array
if [[ "${IPV4_ENABLED}" == "true" ]]
then
node_ip_addrs_array+=("${ipv4}")
cluster_cidrs_array+=("10.42.0.0/16")
service_cidrs_array+=("10.43.0.0/16")
fi
if [[ "${IPV6_ENABLED}" == "true" ]]
then
node_ip_addrs_array+=("${ipv6}")
cluster_cidrs_array+=("2001:cafe:42:0::/56")
service_cidrs_array+=("2001:cafe:42:1::/112")
fi
- Update range by replacing 10.42.0.0/16 and 10.43.0.0/16.