Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Nodegroup

import type { Nodegroup } from "https://aws-api.deno.dev/v0.3/services/eks.ts?docs=full";

An object representing an Amazon EKS managed node group.

interface Nodegroup {
amiType?: AMITypes | null;
capacityType?: CapacityTypes | null;
clusterName?: string | null;
createdAt?: Date | number | null;
diskSize?: number | null;
health?: NodegroupHealth | null;
instanceTypes?: string[] | null;
labels?: {
[key: string]: string | null | undefined;
}
| null;
launchTemplate?: LaunchTemplateSpecification | null;
modifiedAt?: Date | number | null;
nodegroupArn?: string | null;
nodegroupName?: string | null;
nodeRole?: string | null;
releaseVersion?: string | null;
remoteAccess?: RemoteAccessConfig | null;
resources?: NodegroupResources | null;
scalingConfig?: NodegroupScalingConfig | null;
status?: NodegroupStatus | null;
subnets?: string[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
taints?: Taint[] | null;
updateConfig?: NodegroupUpdateConfig | null;
version?: string | null;
}

§Properties

§
amiType?: AMITypes | null
[src]

If the node group was deployed using a launch template with a custom AMI, then this is CUSTOM. For node groups that weren't deployed using a launch template, this is the AMI type that was specified in the node group configuration.

§
capacityType?: CapacityTypes | null
[src]

The capacity type of your managed node group.

§
clusterName?: string | null
[src]

The name of the cluster that the managed node group resides in.

§
createdAt?: Date | number | null
[src]

The Unix epoch timestamp in seconds for when the managed node group was created.

§
diskSize?: number | null
[src]

If the node group wasn't deployed with a launch template, then this is the disk size in the node group configuration. If the node group was deployed with a launch template, then this is null.

§
health?: NodegroupHealth | null
[src]

The health status of the node group. If there are issues with your node group's health, they are listed here.

§
instanceTypes?: string[] | null
[src]

If the node group wasn't deployed with a launch template, then this is the instance type that is associated with the node group. If the node group was deployed with a launch template, then this is null.

§
labels?: {
[key: string]: string | null | undefined;
}
| null
[src]

The Kubernetes labels applied to the nodes in the node group.

Note: Only labels that are applied with the Amazon EKS API are shown here. There may be other Kubernetes labels applied to the nodes in this group.

§
launchTemplate?: LaunchTemplateSpecification | null
[src]

If a launch template was used to create the node group, then this is the launch template that was used.

§
modifiedAt?: Date | number | null
[src]

The Unix epoch timestamp in seconds for when the managed node group was last modified.

§
nodegroupArn?: string | null
[src]

The Amazon Resource Name (ARN) associated with the managed node group.

§
nodegroupName?: string | null
[src]

The name associated with an Amazon EKS managed node group.

§
nodeRole?: string | null
[src]

The IAM role associated with your node group. The Amazon EKS node kubelet daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API calls through an IAM instance profile and associated policies.

§
releaseVersion?: string | null
[src]

If the node group was deployed using a launch template with a custom AMI, then this is the AMI ID that was specified in the launch template. For node groups that weren't deployed using a launch template, this is the version of the Amazon EKS optimized AMI that the node group was deployed with.

§
remoteAccess?: RemoteAccessConfig | null
[src]

If the node group wasn't deployed with a launch template, then this is the remote access configuration that is associated with the node group. If the node group was deployed with a launch template, then this is null.

§
resources?: NodegroupResources | null
[src]

The resources associated with the node group, such as Auto Scaling groups and security groups for remote access.

§
scalingConfig?: NodegroupScalingConfig | null
[src]

The scaling configuration details for the Auto Scaling group that is associated with your node group.

§
status?: NodegroupStatus | null
[src]

The current status of the managed node group.

§
subnets?: string[] | null
[src]

The subnets that were specified for the Auto Scaling group that is associated with your node group.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The metadata applied to the node group to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Node group tags do not propagate to any other resources associated with the node group, such as the Amazon EC2 instances or subnets.

§
taints?: Taint[] | null
[src]

The Kubernetes taints to be applied to the nodes in the node group when they are created. Effect is one of No_Schedule, Prefer_No_Schedule, or No_Execute. Kubernetes taints can be used together with tolerations to control how workloads are scheduled to your nodes.

§
updateConfig?: NodegroupUpdateConfig | null
[src]

The node group update configuration.

§
version?: string | null
[src]

The Kubernetes version of the managed node group.