You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# An example of ClusterConfig object with highly available NAT gateways
---
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
region: eu-west-1
name: $CLUSTER_NAME
vpc:
nat:
gateway: Single # Valid variants are: "HighlyAvailable" configures a highly available NAT gateway, "Single" configures a single NAT gateway (default), "Disable" disables NAT.
cidr: $K8S_VPC_CIDR_BLOCK
nodeGroups:
- name: ng-1
instanceType: t3.xlarge
minSize: 2
maxSize: 4
# desiredCapacity: 2
privateNetworking: true # if only 'Private' subnets are given, this must be enabled
iam:
withAddonPolicies:
# ebs: true
efs: true # Allow the cluster nodes to interact with efs so they can manage mounts.