$ openshift-install create install-config --dir=<your_installation_directory>
You can manage application traffic efficiently by allocating load balancers. Network administrators can allocate load balancers to customize deployments which can ensure optimal traffic distribution, high availability of applications, uninterrupted service, and network segmentation.
You can control the network placement of OpenShift Load Balancers on AWS, including those for the Ingress Controller, by explicitly defining your virtual private cloud’s (VPC’s) subnets and assigning them specific roles directly within the platform.aws.vpc.subnets
section of the install-config.yaml
file. This method provides granular control over which subnets are used for resources, such as the Ingress Controller and other cluster components.
Perform the following steps to allocate API and ingress load balancers to specific subnets.
Before you begin, ensure you have:
An existing AWS virtual private cloud (VPC).
Pre-configured AWS subnets intended for use by the OpenShift cluster, with the following considerations:
You have a list of their subnet IDs (for example, subnet-0123456789abcdef0
). These IDs will be used in the install-config.yaml
file.
Use subnets spanning at least two availability zones (AZs) for high availability of load balancers and other critical components, like control planes.
You have sufficient available IP addresses within these subnets for all assigned roles.
The AWS configuration for these subnets, including network ACLs and security groups, must permit necessary traffic for all roles assigned to them. For subnets hosting an ingress controller, this typically includes TCP ports 80 and 443 from required sources.
You have the OpenShift installer binary for your target OpenShift version.
You have an install-config.yaml
file.
Prepare the install-config.yaml
file:
If you haven’t already, generate the installation configuration file using the OpenShift installer:
$ openshift-install create install-config --dir=<your_installation_directory>
This command creates the install-config.yaml
file in the specified directory.
Define subnets and assign roles:
Open the install-config.yaml
file located in <your_installation_directory>
using a text editor. You will define your VPC subnets and their designated roles under the platform.aws.vpc.subnets
field.
For each AWS subnet you intend the cluster to use, you will create an entry specifying its id
and a list of roles
. Each role is an object with a type
key. To designate a subnet for the default Ingress Controller, assign it a role with type: IngressControllerLB
.
apiVersion: v1
baseDomain: example.com (1)
metadata:
name: my-cluster # Example cluster name
platform:
aws:
region: us-east-1 (2)
vpc: (3)
subnets: (4)
- id: subnet-0fcf8e0392f0910d5 # Public Subnet in AZ us-east-1a (5)
roles:
- type: IngressControllerLB (6)
- type: BootstrapNode
- id: subnet-0xxxxxxxxxxxxxxza # Public Subnet in another AZ for HA
roles:
- type: IngressControllerLB
- id: subnet-0fcf8e0392f0910d4 # Private Subnet in AZ us-east-1a
roles:
- type: ClusterNode (7)
- id: subnet-0yyyyyyyyyyyyyyzb # Private Subnet in another AZ for HA
roles:
- type: ClusterNode
# Add other subnet IDs and their roles as needed for your cluster architecture
pullSecret: '...' (8)
sshKey: '...' (9)
1 | Your base domain. |
2 | Your AWS region. |
3 | The vpc object under platform.aws contains the subnets list. |
4 | List of all subnet objects that OpenShift will use. Each object defines a subnet id and its roles. |
5 | Replace with your AWS Subnet ID. |
6 | The type: IngressControllerLB role specifically designates this subnet for the default Ingress Controller’s LoadBalancer. In private/internal cluster, the subnet with IngressControllerLB role must be private. |
7 | The type: ClusterNode role designates this subnet for control plane and compute nodes. These are typically private subnets. |
8 | Your pull secret. |
9 | Your SSH key. |
Entries for control plane load balancers in the subnets
list would follow a similar pattern:
# ... (within platform.aws.vpc.subnets list)
- id: subnet-0fcf8e0392f0910d6 # Public Subnet for External API LB
roles:
- type: ControlPlaneExternalLB
- id: subnet-0fcf8e0392f0910d7 # Private Subnet for Internal API LB
roles:
- type: ControlPlaneInternalLB
# ...
For the default public Ingress Controller, any subnet assigned the IngressControllerLB
role in your install-config.yaml
file must be a public subnet. For example, it must have a route table entry in AWS that directs outbound traffic to an internet gateway (IGW).
Ensure you list all necessary subnets, public and private across the AZs, and assign them appropriate roles according to your cluster architecture.
Subnet IDs define the subnets in an existing VPC and can optionally specify their intended roles. If no roles are specified on any subnet, the subnet roles are decided automatically. In this case, the VPC must not contain any other non-cluster subnets without the kubernetes.io/cluster/<cluster-id>
tag.
If roles are specified for subnets, each subnet must have at least one assigned role, and the ClusterNode
, BootstrapNode
, IngressControllerLB
, ControlPlaneExternalLB
, and ControlPlaneInternalLB
roles must be assigned to at least one subnet. However, if the cluster scope is internal, ControlPlaneExternalLB
is not required.
Proceed with the cluster Installation:
After saving your changes to the install-config.yaml
file, create the cluster:
$ openshift-install create cluster --dir=<your_installation_directory>
The installation program will now use the subnet definitions and explicit role assignments from the platform.aws.vpc.subnets
section of your install-config.yaml
file to provision cluster resources, including placing the Ingress Controller’s LoadBalancer in the subnets you designated with the IngressControllerLB
role.
The role assignment mechanism within |