Skip to content

Commit dad1d76

Browse files
chore: (AWS) Change LB type to NLB following the deprecation of ELB (#151)
* chore: (AWS) Change LB type to NLB following the deprecation of classic ELB * chore: (AWS) Update the root disk size in templates according to docs
1 parent b9795aa commit dad1d76

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

templates/aws/cluster-template.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ spec:
3131
bastion:
3232
enabled: ${AWS_CREATE_BASTION}
3333
controlPlaneLoadBalancer:
34-
healthCheckProtocol: TCP
34+
loadBalancerType: nlb
35+
healthCheckProtocol: HTTPS
3536
network:
3637
cni:
3738
cniIngressRules:

templates/aws/template-variables.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export AWS_CREATE_BASTION="true"
1111
export AWS_PUBLIC_IP="true"
1212
export AWS_CONTROL_PLANE_INSTANCE_TYPE="t3.large"
1313
export AWS_NODE_INSTANCE_TYPE="t3.large"
14-
export AWS_CONTROL_PLANE_ROOT_VOLUME_SIZE=16
15-
export AWS_NODE_ROOT_VOLUME_SIZE=16
14+
export AWS_CONTROL_PLANE_ROOT_VOLUME_SIZE=40
15+
export AWS_NODE_ROOT_VOLUME_SIZE=40
1616
export AWS_SSH_KEY_NAME="default"
1717
# List upstream AMIs with clusterawsadm ami list --owner-id 819546954734
1818
export AWS_AMI_ID="ami-027b534ab5d0b4886"

test/e2e/data/infrastructure-aws/cluster-template.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ spec:
3131
bastion:
3232
enabled: ${AWS_CREATE_BASTION}
3333
controlPlaneLoadBalancer:
34-
healthCheckProtocol: TCP
34+
loadBalancerType: nlb
35+
healthCheckProtocol: HTTPS
3536
network:
3637
cni:
3738
cniIngressRules:

0 commit comments

Comments
 (0)