@aws-quickstart/eks-blueprints
    Preparing search index...

    Interface GenericClusterProviderV2Props

    Properties for the generic cluster provider, containing definitions of managed node groups, auto-scaling groups, fargate profiles.

    interface GenericClusterProviderV2Props {
        albController?: AlbControllerOptions;
        autoscalingNodeGroups?: AutoscalingNodeGroup[];
        bootstrapClusterCreatorAdminPermissions?: boolean;
        clusterLogging?: ClusterLoggingTypes[];
        clusterName?: string;
        compute?: ComputeConfig;
        coreDnsComputeType?: CoreDnsComputeType;
        defaultCapacity?: number;
        defaultCapacityInstance?: InstanceType;
        defaultCapacityType?: DefaultCapacityType;
        endpointAccess?: EndpointAccess;
        fargateProfiles?: { [key: string]: FargateProfileOptions };
        ipFamily?: IpFamily;
        isolatedCluster?: boolean;
        kubectlProviderOptions?: KubectlProviderOptions;
        managedNodeGroups?: ManagedNodeGroup[];
        mastersRole?: IRole;
        outputConfigCommand?: boolean;
        privateCluster?: boolean;
        prune?: boolean;
        role?: IRole;
        secretsEncryptionKey?: IKey;
        securityGroup?: ISecurityGroup;
        serviceIpv4Cidr?: string;
        tags?: { [key: string]: string };
        version?: KubernetesVersion;
        vpc?: IVpc;
        vpcSubnets?: SubnetSelection[];
    }

    Hierarchy

    • Partial<eks.ClusterProps>
      • GenericClusterProviderV2Props
    Index

    Properties

    albController?: AlbControllerOptions

    Install the AWS Load Balancer Controller onto the cluster.

    - The controller is not installed.
    
    autoscalingNodeGroups?: AutoscalingNodeGroup[]

    Array of autoscaling node groups.

    bootstrapClusterCreatorAdminPermissions?: boolean

    Whether or not IAM principal of the cluster creator was set as a cluster admin access entry during cluster creation time.

    Changing this value after the cluster has been created will result in the cluster being replaced.

    true
    
    clusterLogging?: ClusterLoggingTypes[]

    The cluster log types which you want to enable.

    - none
    
    clusterName?: string

    Name for the cluster.

    - Automatically generated name
    
    compute?: ComputeConfig

    EKS Automode compute config

    coreDnsComputeType?: CoreDnsComputeType

    Controls the "eks.amazonaws.com/compute-type" annotation in the CoreDNS configuration on your cluster to determine which compute type to use for CoreDNS.

    CoreDnsComputeType.EC2 (for FargateCluster the default is FARGATE)

    defaultCapacity?: number

    Number of instances to allocate as an initial capacity for this cluster. Instance type can be configured through defaultCapacityInstanceType, which defaults to m5.large.

    Use cluster.addAutoScalingGroupCapacity to add additional customized capacity. Set this to 0 is you wish to avoid the initial capacity allocation.

    2
    
    defaultCapacityInstance?: InstanceType

    The instance type to use for the default capacity. This will only be taken into account if defaultCapacity is > 0.

    m5.large
    
    defaultCapacityType?: DefaultCapacityType

    The default capacity type for the cluster.

    AUTOMODE
    
    endpointAccess?: EndpointAccess

    Configure access to the Kubernetes API server endpoint..

    EndpointAccess.PUBLIC_AND_PRIVATE
    
    fargateProfiles?: { [key: string]: FargateProfileOptions }

    Fargate profiles

    ipFamily?: IpFamily

    Specify which IP family is used to assign Kubernetes pod and service IP addresses.

    isolatedCluster?: boolean

    Whether cluster has internet access.

    kubectlProviderOptions?: KubectlProviderOptions

    Options for creating the kubectl provider - a lambda function that executes kubectl and helm against the cluster. If defined, kubectlLayer is a required property.

    If not defined, kubectl provider will not be created by default.

    managedNodeGroups?: ManagedNodeGroup[]

    Array of managed node groups.

    mastersRole?: IRole

    An IAM role that will be added to the system:masters Kubernetes RBAC group.

    outputConfigCommand?: boolean

    Determines whether a CloudFormation output with the aws eks update-kubeconfig command will be synthesized. This command will include the cluster name and, if applicable, the ARN of the masters IAM role.

    true
    
    privateCluster?: boolean

    Whether API server is private.

    prune?: boolean

    Indicates whether Kubernetes resources added through addManifest() can be automatically pruned. When this is enabled (default), prune labels will be allocated and injected to each resource. These labels will then be used when issuing the kubectl apply operation with the --prune switch.

    true
    
    role?: IRole

    Role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.

    - A role is automatically created for you
    
    secretsEncryptionKey?: IKey

    KMS secret for envelope encryption for Kubernetes secrets.

    - By default, Kubernetes stores all secret object data within etcd and
    all etcd volumes used by Amazon EKS are encrypted at the disk-level
    using AWS-Managed encryption keys.
    securityGroup?: ISecurityGroup

    Security Group to use for Control Plane ENIs

    - A security group is automatically created
    
    serviceIpv4Cidr?: string

    The CIDR block to assign Kubernetes service IP addresses from.

    - Kubernetes assigns addresses from either the
    10.100.0.0/16 or 172.20.0.0/16 CIDR blocks
    tags?: { [key: string]: string }

    Tags for the cluster

    version?: KubernetesVersion

    The Kubernetes version to run in the cluster

    vpc?: IVpc

    The VPC in which to create the Cluster.

    • a VPC with default configuration will be created and can be accessed through cluster.vpc.
    vpcSubnets?: SubnetSelection[]

    Where to place EKS Control Plane ENIs

    For example, to only select private subnets, supply the following:

    vpcSubnets: [{ subnetType: ec2.SubnetType.PRIVATE_WITH_EGRESS }]

    - All public and private subnets