Node auto-provisioner

CFKE manages the infrastructure provisioning on behalf of its users. This means that users are not required to create and right-size new compute nodes, deleting unused ones, or managing upgrades. Cloudfleet has a built-in node auto-provisioner that calculates the optimal number and size of nodes based on the current workload. This allows users to focus on their applications rather than on the infrastructure. Customers can influence the node provisioner’s decisions through Kubernetes Pod labels, Pod resource requests, and affinity rules. The node provisioner determines the required node topology and the optimal node sizes, and provisions them accordingly. When the nodes are no longer needed, the node provisioner deletes them. If a node becomes unhealthy or is destroyed by the cloud provider due to spot instance preemption, the node auto-provisioner replaces it with a new one.

If your pods don’t have specific requirements for how or where to run, CFKE can select nodes from any configured cloud provider in your Fleets, always choosing the most cost-effective instance type. However, you can use the node auto-provisioner’s layered constraints model to ensure that your pods have the exact resources and type they need. Reasons for constraining where your pods run could include needing to run in zones with specific dependencies, requiring certain hardware, or wanting to use techniques like topology spread for high availability.

Node auto-provisioner kicks-in when a Pod is created but there is no available node to run it in the cluster. In this case the Pod stays in Pending state. Node auto-provisioner detects this and provisions a new node that meets the Pod’s requirements. Once the node is ready, the Pod is scheduled on it.

The Cloud Providers in your Fleets define the initial constraints for the nodes to provisioned, including all available instance types, CPU architectures, zones, and purchase types. Additional constraints come from the workload specifications of your Kubernetes pods. Pod scheduling constraints must fall within a Fleet’s constraints; otherwise, CFKE won’t find the right nodes and pods will not deploy. For example, if a Fleet has a limit of certain number of vCPUs, scheduling one more pod that would exceed this limit will not be possible.

Constraints you can request in a Pod request include:

  • Resource requests: Request that a certain amount of memory or CPU be available.
  • Node selection: Choose to run on a node that has a particular label (nodeSelector).
  • Node affinity: Draws a pod to run on nodes with particular attributes (affinity).
  • Topology spread: Use topology spread to help ensure availability of the application.
  • Pod affinity/anti-affinity: Draws pods towards or away from topology domains based on the scheduling of other pods.

CFKE adheres to standard Kubernetes scheduling constraints, which enables you to establish a uniform set of rules that govern both existing and provisioned capacity.

Additionally, CFKE supports specific Well-Known Labels, Annotations, and Taints that are beneficial for scheduling.

Resource requests

Within a Pod spec, you can both make requests and set limits on resources a pod needs, such as CPU and memory. For example:

apiVersion: v1
kind: Pod
metadata:
  name: example-app
spec:
  containers:
  - name: example-app
    image: nginx
    resources:
      requests:
        memory: "256Mi"
        cpu: "1000m"
      limits:
        memory: "512Mi"
        cpu: "2000m"

In this example, the container is requesting 256MiB of memory and 1 CPU. Its limits are set to 512MiB of memory and 2 CPUs. In this case, CFKE’s node auto-provisioner algorithm only uses requests to find out the instance type to accommodate this pod, but limits may also be configured to enable resource oversubscription.

See Managing Resources for Containers for details on resource types supported by Kubernetes, Specify a memory request and a memory limit for examples of memory requests..

Accelerators/GPU Resources

CFKE supports the following accelerator (e.g., GPU) values:

  • nvidia.com/gpu

Additionally, include a resource requirement in the workload manifest. This will cause the GPU dependent pod to be scheduled onto the appropriate node.

Here is an example of an accelerator resource in a workload manifest (e.g., pod):

spec:
  template:
    spec:
      containers:
      - resources:
          limits:
            nvidia.com/gpu: "1"

If an instance with NVIDIA GPU is scheduled, CFKE installs the NVIDIA drivers on the node. Please check the GPU-based workloads documentation for more information.

Selecting nodes

With nodeSelector you can ask for a node that matches selected key-value pairs. This can include well-known labels or custom labels you create yourself.

You can use affinity to define more complicated constraints, see Node Affinity for the complete specification.

Labels

Well-known labels may be specified as pod scheduling constraints. You can also select them using nodeAffinity or nodeSelectors on your Pods.

Well-Known Labels

Label Example Description
cfke.io/provider hetzner Cloud provider name
cfke.io/region europe Region name as defined by Cloudfleet
cfke.io/subregion central Subregion name as defined by Cloudfleet
topology.kubernetes.io/region us-east-2 Instance’s Region as defined by the cloud provider
topology.kubernetes.io/zone us-east-2a Instance’s Availability Zone as defined by the cloud provider
node.kubernetes.io/instance-type cpx11 Instance type as defined by the cloud provider
cfke.io/instance-family cpx Instance family as defined by the cloud provider
kubernetes.io/os linux Operating systems are defined by GOOS values on the instance
kubernetes.io/arch amd64 Architectures are defined by GOARCH values on the instance
cfke.io/accelerator-manufacturer NVIDIA Accelerator manufacturer name
cfke.io/accelerator-name L4 The Accelerator hardware model name
cfke.io/accelerator-count 1 The number of accelerator hardware per instance
cfke.io/accelerator-memory 40 Accelerator memory size in GiB

CFKE translates the following deprecated labels to their stable equivalents: failure-domain.beta.kubernetes.io/zone, failure-domain.beta.kubernetes.io/region, beta.kubernetes.io/arch, beta.kubernetes.io/os, and beta.kubernetes.io/instance-type.

You can find all the possible values for these labels in the Reference table in the end of this documentation.

Node selectors example

Here is an example of a nodeSelector for selecting nodes:

nodeSelector:
  cfke.io/provider: aws
  topology.kubernetes.io/zone: us-west-2

This example features a well-known label (topology.kubernetes.io/zone) to schedule a instance in AWS’s us-west-2 region.

Preferences

CFKE usually treats pod affinity, pod anti-affinity, pod topology, and node affinity as requirements. It considers these preferences when deciding if a pod can be scheduled or moved to a new node.

CFKE initially considers preferred affinities as required affinities when building requirements for a pod. If these requirements aren’t met, it relaxes the pod’s preferences one by one in ascending weight order, retrying the remaining requirements each time.

However, CFKE doesn’t treat preferred affinities as required when building topology requirements for scheduling to a node. In such cases, required affinities should be used as documented in Node Affinity.

Node affinity

Examples below show how to use Node affinity rules to include (In) and exclude (NotIn) objects. See Node affinity for more details. When setting rules, the following Node affinity types define how hard or soft each rule is:

  • requiredDuringSchedulingIgnoredDuringExecution: This is a hard rule that must be met.
  • preferredDuringSchedulingIgnoredDuringExecution: This is a preference, but the pod can run on a node where it is not guaranteed.

CFKE may create more nodes than you anticipate if you set preferred affinities on pods. This is because CFKE prioritizes creating new nodes to meet your preferences.

The IgnoredDuringExecution part of each tells the pod to keep running, even if conditions change on the node so the rules no longer match. You can think of these concepts as required and preferred, since Kubernetes never implemented other variants of these rules.

All examples below assume that the NodePool doesn’t have constraints to prevent those zones from being used. The first constraint says you could use us-west-2a or us-west-2b, the second constraint makes it so only us-west-2b can be used.

 affinity:
   nodeAffinity:
     requiredDuringSchedulingIgnoredDuringExecution:
       nodeSelectorTerms:
         - matchExpressions:
           - key: "topology.kubernetes.io/zone"
             operator: "In"
             values: ["us-west-2a", "us-west-2b"]
           - key: "topology.kubernetes.io/zone"
             operator: "In"
             values: ["us-west-2b"]

Changing the second operator to NotIn would allow the pod to run in us-west-2a only:

           - key: "topology.kubernetes.io/zone"
             operator: "In"
             values: ["us-west-2a", "us-west-2b"]
           - key: "topology.kubernetes.io/zone"
             operator: "NotIn"
             values: ["us-west-2b"]

Continuing to add to the example, nodeAffinity lets you define terms so if one term doesn’t work it goes to the next one. Here, if us-west-2a is not available, the second term will cause the pod to run on a spot instance in us-west-2d.

 affinity:
   nodeAffinity:
     requiredDuringSchedulingIgnoredDuringExecution:
       nodeSelectorTerms:
         - matchExpressions: # OR
           - key: "topology.kubernetes.io/zone" # AND
             operator: "In"
             values: ["us-west-2a", "us-west-2b"]
           - key: "topology.kubernetes.io/zone" # AND
             operator: "NotIn"
             values: ["us-west-2b"]
         - matchExpressions: # OR
           - key: "karpenter.sh/capacity-type" # AND
             operator: "In"
             values: ["spot"]
           - key: "topology.kubernetes.io/zone" # AND
             operator: "In"
             values: ["us-west-2d"]

CFKE will evaluate each of the nodeSelectorTerms in sequence and select the first one that fulfills the requirements. If CFKE is unable to provision using the first nodeSelectorTerms, it will attempt to use the subsequent ones. If all nodeSelectorTerms fail, CFKE will not be able to provision the pod. CFKE will then back off and retry over a period of time. If capacity becomes available at a later time, it will schedule the pod without requiring any action from the user.

Topology spread

TopologySpreadConstraints in Kubernetes can be used to spread pods away from each other within a cluster to minimize the impact of an outage. This feature can be considered as an enhancement of pod affinity, as it enables the association of pods with respect to nodes while still allowing for distribution.

Note that using Preferred topology spread (ScheduleAnyway) might lead to the creation of more nodes than anticipated. CFKE prioritizes the creation of new nodes to meet spread constraints. Refer to the preferences documentation for more information.

For example:

spec:
  topologySpreadConstraints:
    - maxSkew: 1
      topologyKey: "topology.kubernetes.io/zone"
      whenUnsatisfiable: ScheduleAnyway
      labelSelector:
        matchLabels:
          environment: dev
    - maxSkew: 1
      topologyKey: "kubernetes.io/hostname"
      whenUnsatisfiable: ScheduleAnyway
      labelSelector:
        matchLabels:
          environment: dev

Adding this to your podspec would result in:

  • Pods being spread across zones, hosts, and capacity-type (topologyKey).
  • The dev labelSelector will include all pods with the label of environment=dev in topology calculations. It is recommended to use a selector to match all pods in a deployment.
  • No more than one pod difference in the number of pods on each host (maxSkew). For example, if there were three nodes and five pods the pods could be spread 1, 2, 2 or 2, 1, 2 and so on. If instead the spread were 5, pods could be 5, 0, 0 or 3, 2, 0, or 2, 1, 2 and so on.

The two supported topologyKey values that CFKE supports are:

  • topology.kubernetes.io/zone
  • kubernetes.io/hostname

See Pod Topology Spread Constraints for details.

NodePools will adhere to zonal Topology Spread Constraints defined for Pods that require multi-zone durability, optimizing for compute costs. CFKE itself does not balance or rebalance availability zones for nodes.

Pod affinity/anti-affinity

The CFKE node auto-provisioner can be informed of your scheduling preferences by configuring podAffinity and podAntiAffinity on a pod spec. This allows you to indicate whether pods should be scheduled together or apart in relation to different topology domains.

Keep in mind that using preferred affinities on pods can lead to the creation of more nodes than anticipated. This is due to CFKE’s preference for creating new nodes to satisfy these preferences. For further information, refer to the preferences documentation.

For example:

spec:
  affinity:
    podAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
      - labelSelector:
          matchExpressions:
          - key: environment
            operator: In
            values:
            - production
        topologyKey: topology.kubernetes.io/zone
    podAntiAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
      - labelSelector:
          matchLabels:
            app: frontend
        topologyKey: kubernetes.io/hostname

The above pod affinity rule would cause the pod to only schedule in zones where a pod with the label environment=production is already running.

The anti-affinity rule would cause it to avoid running on any node with a pod labeled app=frontent. If this anti-affinity term was on a deployment pod spec along with a matching app=frontend label, it would prevent more than one pod from the deployment from running on any single node.

Check out Inter-pod affinity and anti-affinity in the Kubernetes documentation for details.

Scheduling examples

Below you can find some examples of how to use the node auto-provisioner to schedule your workloads based on Kubernetes Pod labels and affinity rules.

A deployment that is locked to a specific cloud provider and region

apiVersion: apps/v1
kind: Deployment
metadata:
    name: homepage
spec:
    selector:
        matchLabels:
            app: nginx
    replicas: 3
    template:
        metadata:
            labels:
                app: nginx
        spec:
            nodeSelector:
                cfke.io/provider: gcp
                topology.kubernetes.io/region: europe-west4
            containers:
                -   name: nginx
                    image: nginx:1.24
                    imagePullPolicy: Always
                    ports:
                        -   containerPort: 8080
                            name: http
                    resources:
                        requests:
                            cpu: 50m
                            memory: 56Mi
            terminationGracePeriodSeconds: 0

A deployment spread across clouds

apiVersion: apps/v1
kind: Deployment
metadata:
    name: homepage
spec:
    selector:
        matchLabels:
            app: nginx
    replicas: 3
    template:
        metadata:
            labels:
                app: nginx
        spec:
            affinity:
                podAntiAffinity:
                    requiredDuringSchedulingIgnoredDuringExecution:
                        -   labelSelector:
                                matchExpressions:
                                    -   key: app
                                        operator: In
                                        values:
                                            - nginx
                            topologyKey: cfke.io/provider
            containers:
                -   name: nginx
                    image: nginx:1.24
                    imagePullPolicy: Always
                    ports:
                        -   containerPort: 8080
                            name: http
                    resources:
                        requests:
                            cpu: 50m
                            memory: 56Mi
            terminationGracePeriodSeconds: 0

A deployment spread across regions within a cloud

apiVersion: apps/v1
kind: Deployment
metadata:
    name: homepage
spec:
    selector:
        matchLabels:
            app: nginx
    replicas: 3
    template:
        metadata:
            labels:
                app: nginx
        spec:
            nodeSelector:
                cfke.io/provider: gcp
            affinity:
                podAntiAffinity:
                    requiredDuringSchedulingIgnoredDuringExecution:
                        -   labelSelector:
                                matchExpressions:
                                    -   key: app
                                        operator: In
                                        values:
                                            - nginx
                            topologyKey: topology.kubernetes.io/region
            containers:
                -   name: nginx
                    image: nginx:1.24
                    imagePullPolicy: Always
                    ports:
                        -   containerPort: 8080
                            name: http
                    resources:
                        requests:
                            cpu: 50m
                            memory: 56Mi
            terminationGracePeriodSeconds: 0

A deployment spread across zones within a region

apiVersion: apps/v1
kind: Deployment
metadata:
    name: homepage
spec:
    selector:
        matchLabels:
            app: nginx
    replicas: 3
    template:
        metadata:
            labels:
                app: nginx
        spec:
            nodeSelector:
                cfke.io/provider: gcp
                topology.kubernetes.io/region: europe-west4
            affinity:
                podAntiAffinity:
                    requiredDuringSchedulingIgnoredDuringExecution:
                        -   labelSelector:
                                matchExpressions:
                                    -   key: app
                                        operator: In
                                        values:
                                            - nginx
                            topologyKey: topology.kubernetes.io/zone
            containers:
                -   name: nginx
                    image: nginx:1.24
                    imagePullPolicy: Always
                    ports:
                        -   containerPort: 8080
                            name: http
                    resources:
                        requests:
                            cpu: 50m
                            memory: 56Mi
            terminationGracePeriodSeconds: 0

Scheduling options Reference

Below you can find a list of well-known labels that CFKE auto node-provisinoner is aware of and can be used in your workloads.

Label Possible Values
cfke.io/accelerator-count 1
cfke.io/accelerator-count 16
cfke.io/accelerator-count 2
cfke.io/accelerator-count 4
cfke.io/accelerator-count 8
cfke.io/accelerator-manufacturer NVIDIA
cfke.io/accelerator-memory 12
cfke.io/accelerator-memory 141
cfke.io/accelerator-memory 16
cfke.io/accelerator-memory 178.8134765625
cfke.io/accelerator-memory 22.3515625
cfke.io/accelerator-memory 24
cfke.io/accelerator-memory 32
cfke.io/accelerator-memory 357.6279296875
cfke.io/accelerator-memory 40
cfke.io/accelerator-memory 44.703125
cfke.io/accelerator-memory 8
cfke.io/accelerator-memory 80
cfke.io/accelerator-memory 89.4072265625
cfke.io/accelerator-name A10
cfke.io/accelerator-name A100
cfke.io/accelerator-name H100
cfke.io/accelerator-name H200
cfke.io/accelerator-name K80
cfke.io/accelerator-name L4
cfke.io/accelerator-name L40S
cfke.io/accelerator-name M60
cfke.io/accelerator-name T4
cfke.io/accelerator-name V100
cfke.io/provider aws
cfke.io/provider gcp
cfke.io/provider hetzner
cfke.io/region africa
cfke.io/region apac
cfke.io/region europe
cfke.io/region northamerica
cfke.io/region southamerica
cfke.io/subregion central
cfke.io/subregion east
cfke.io/subregion north
cfke.io/subregion northeast
cfke.io/subregion south
cfke.io/subregion southeast
cfke.io/subregion west
karpenter.sh/capacity-type on-demand
karpenter.sh/capacity-type spot
kubernetes.io/arch amd64
kubernetes.io/arch arm64
kubernetes.io/os linux
cfke.io/instance-family a1
cfke.io/instance-family a2
cfke.io/instance-family a3
cfke.io/instance-family a4
cfke.io/instance-family c1
cfke.io/instance-family c2
cfke.io/instance-family c2d
cfke.io/instance-family c3
cfke.io/instance-family c3d
cfke.io/instance-family c4
cfke.io/instance-family c4a
cfke.io/instance-family c4d
cfke.io/instance-family c5
cfke.io/instance-family c5a
cfke.io/instance-family c5ad
cfke.io/instance-family c5d
cfke.io/instance-family c5n
cfke.io/instance-family c6a
cfke.io/instance-family c6g
cfke.io/instance-family c6gd
cfke.io/instance-family c6gn
cfke.io/instance-family c6i
cfke.io/instance-family c6id
cfke.io/instance-family c6in
cfke.io/instance-family c7a
cfke.io/instance-family c7g
cfke.io/instance-family c7gd
cfke.io/instance-family c7gn
cfke.io/instance-family c7i
cfke.io/instance-family c7i-flex
cfke.io/instance-family c8g
cfke.io/instance-family c8gd
cfke.io/instance-family cax
cfke.io/instance-family ccx
cfke.io/instance-family cpx
cfke.io/instance-family cx
cfke.io/instance-family d2
cfke.io/instance-family d3
cfke.io/instance-family d3en
cfke.io/instance-family dl1
cfke.io/instance-family dl2q
cfke.io/instance-family e2
cfke.io/instance-family f1
cfke.io/instance-family f2
cfke.io/instance-family g1
cfke.io/instance-family g2
cfke.io/instance-family g4ad
cfke.io/instance-family g4dn
cfke.io/instance-family g5
cfke.io/instance-family g5g
cfke.io/instance-family g6
cfke.io/instance-family g6e
cfke.io/instance-family gr6
cfke.io/instance-family h1
cfke.io/instance-family h3
cfke.io/instance-family hpc6a
cfke.io/instance-family hpc6id
cfke.io/instance-family hpc7a
cfke.io/instance-family hpc7g
cfke.io/instance-family i2
cfke.io/instance-family i3
cfke.io/instance-family i3en
cfke.io/instance-family i4g
cfke.io/instance-family i4i
cfke.io/instance-family i7i
cfke.io/instance-family i7ie
cfke.io/instance-family i8g
cfke.io/instance-family im4gn
cfke.io/instance-family inf1
cfke.io/instance-family inf2
cfke.io/instance-family is4gen
cfke.io/instance-family m1
cfke.io/instance-family m2
cfke.io/instance-family m3
cfke.io/instance-family m4
cfke.io/instance-family m5
cfke.io/instance-family m5a
cfke.io/instance-family m5ad
cfke.io/instance-family m5d
cfke.io/instance-family m5dn
cfke.io/instance-family m5n
cfke.io/instance-family m5zn
cfke.io/instance-family m6a
cfke.io/instance-family m6g
cfke.io/instance-family m6gd
cfke.io/instance-family m6i
cfke.io/instance-family m6id
cfke.io/instance-family m6idn
cfke.io/instance-family m6in
cfke.io/instance-family m7a
cfke.io/instance-family m7g
cfke.io/instance-family m7gd
cfke.io/instance-family m7i
cfke.io/instance-family m7i-flex
cfke.io/instance-family m8g
cfke.io/instance-family m8gd
cfke.io/instance-family n1
cfke.io/instance-family n2
cfke.io/instance-family n2d
cfke.io/instance-family n4
cfke.io/instance-family p3
cfke.io/instance-family p3dn
cfke.io/instance-family p4d
cfke.io/instance-family p4de
cfke.io/instance-family p5
cfke.io/instance-family p5e
cfke.io/instance-family p5en
cfke.io/instance-family p6-b200
cfke.io/instance-family r3
cfke.io/instance-family r4
cfke.io/instance-family r5
cfke.io/instance-family r5a
cfke.io/instance-family r5ad
cfke.io/instance-family r5b
cfke.io/instance-family r5d
cfke.io/instance-family r5dn
cfke.io/instance-family r5n
cfke.io/instance-family r6a
cfke.io/instance-family r6g
cfke.io/instance-family r6gd
cfke.io/instance-family r6i
cfke.io/instance-family r6id
cfke.io/instance-family r6idn
cfke.io/instance-family r6in
cfke.io/instance-family r7a
cfke.io/instance-family r7g
cfke.io/instance-family r7gd
cfke.io/instance-family r7i
cfke.io/instance-family r7iz
cfke.io/instance-family r8g
cfke.io/instance-family r8gd
cfke.io/instance-family t2
cfke.io/instance-family t2a
cfke.io/instance-family t2d
cfke.io/instance-family t3
cfke.io/instance-family t3a
cfke.io/instance-family t4g
cfke.io/instance-family trn1
cfke.io/instance-family trn1n
cfke.io/instance-family u-3tb1
cfke.io/instance-family u-6tb1
cfke.io/instance-family u7i-12tb
cfke.io/instance-family u7i-6tb
cfke.io/instance-family u7i-8tb
cfke.io/instance-family u7in-16tb
cfke.io/instance-family u7in-24tb
cfke.io/instance-family u7in-32tb
cfke.io/instance-family vt1
cfke.io/instance-family x1
cfke.io/instance-family x1e
cfke.io/instance-family x2gd
cfke.io/instance-family x2idn
cfke.io/instance-family x2iedn
cfke.io/instance-family x2iezn
cfke.io/instance-family x4
cfke.io/instance-family x8g
cfke.io/instance-family z1d
cfke.io/instance-family z3
node.kubernetes.io/instance-type a1.2xlarge
node.kubernetes.io/instance-type a1.4xlarge
node.kubernetes.io/instance-type a1.large
node.kubernetes.io/instance-type a1.medium
node.kubernetes.io/instance-type a1.metal
node.kubernetes.io/instance-type a1.xlarge
node.kubernetes.io/instance-type a2-highgpu-1g
node.kubernetes.io/instance-type a2-highgpu-2g
node.kubernetes.io/instance-type a2-highgpu-4g
node.kubernetes.io/instance-type a2-highgpu-8g
node.kubernetes.io/instance-type a2-megagpu-16g
node.kubernetes.io/instance-type a2-ultragpu-1g
node.kubernetes.io/instance-type a2-ultragpu-2g
node.kubernetes.io/instance-type a2-ultragpu-4g
node.kubernetes.io/instance-type a2-ultragpu-8g
node.kubernetes.io/instance-type a3-highgpu-1g
node.kubernetes.io/instance-type a3-highgpu-2g
node.kubernetes.io/instance-type a3-highgpu-4g
node.kubernetes.io/instance-type a3-highgpu-8g
node.kubernetes.io/instance-type c1.xlarge
node.kubernetes.io/instance-type c2-standard-16
node.kubernetes.io/instance-type c2-standard-30
node.kubernetes.io/instance-type c2-standard-4
node.kubernetes.io/instance-type c2-standard-60
node.kubernetes.io/instance-type c2-standard-8
node.kubernetes.io/instance-type c2d-highcpu-112
node.kubernetes.io/instance-type c2d-highcpu-16
node.kubernetes.io/instance-type c2d-highcpu-2
node.kubernetes.io/instance-type c2d-highcpu-32
node.kubernetes.io/instance-type c2d-highcpu-4
node.kubernetes.io/instance-type c2d-highcpu-56
node.kubernetes.io/instance-type c2d-highcpu-8
node.kubernetes.io/instance-type c2d-highmem-112
node.kubernetes.io/instance-type c2d-highmem-16
node.kubernetes.io/instance-type c2d-highmem-2
node.kubernetes.io/instance-type c2d-highmem-32
node.kubernetes.io/instance-type c2d-highmem-4
node.kubernetes.io/instance-type c2d-highmem-56
node.kubernetes.io/instance-type c2d-highmem-8
node.kubernetes.io/instance-type c2d-standard-112
node.kubernetes.io/instance-type c2d-standard-16
node.kubernetes.io/instance-type c2d-standard-2
node.kubernetes.io/instance-type c2d-standard-32
node.kubernetes.io/instance-type c2d-standard-4
node.kubernetes.io/instance-type c2d-standard-56
node.kubernetes.io/instance-type c2d-standard-8
node.kubernetes.io/instance-type c3-highcpu-176
node.kubernetes.io/instance-type c3-highcpu-192-metal
node.kubernetes.io/instance-type c3-highcpu-22
node.kubernetes.io/instance-type c3-highcpu-4
node.kubernetes.io/instance-type c3-highcpu-44
node.kubernetes.io/instance-type c3-highcpu-8
node.kubernetes.io/instance-type c3-highcpu-88
node.kubernetes.io/instance-type c3-highmem-176
node.kubernetes.io/instance-type c3-highmem-192-metal
node.kubernetes.io/instance-type c3-highmem-22
node.kubernetes.io/instance-type c3-highmem-4
node.kubernetes.io/instance-type c3-highmem-44
node.kubernetes.io/instance-type c3-highmem-8
node.kubernetes.io/instance-type c3-highmem-88
node.kubernetes.io/instance-type c3-standard-176
node.kubernetes.io/instance-type c3-standard-176-lssd
node.kubernetes.io/instance-type c3-standard-192-metal
node.kubernetes.io/instance-type c3-standard-22
node.kubernetes.io/instance-type c3-standard-22-lssd
node.kubernetes.io/instance-type c3-standard-4
node.kubernetes.io/instance-type c3-standard-4-lssd
node.kubernetes.io/instance-type c3-standard-44
node.kubernetes.io/instance-type c3-standard-44-lssd
node.kubernetes.io/instance-type c3-standard-8
node.kubernetes.io/instance-type c3-standard-8-lssd
node.kubernetes.io/instance-type c3-standard-88
node.kubernetes.io/instance-type c3-standard-88-lssd
node.kubernetes.io/instance-type c3.2xlarge
node.kubernetes.io/instance-type c3.4xlarge
node.kubernetes.io/instance-type c3.8xlarge
node.kubernetes.io/instance-type c3.xlarge
node.kubernetes.io/instance-type c3d-highcpu-16
node.kubernetes.io/instance-type c3d-highcpu-180
node.kubernetes.io/instance-type c3d-highcpu-30
node.kubernetes.io/instance-type c3d-highcpu-360
node.kubernetes.io/instance-type c3d-highcpu-4
node.kubernetes.io/instance-type c3d-highcpu-60
node.kubernetes.io/instance-type c3d-highcpu-8
node.kubernetes.io/instance-type c3d-highcpu-90
node.kubernetes.io/instance-type c3d-highmem-16
node.kubernetes.io/instance-type c3d-highmem-16-lssd
node.kubernetes.io/instance-type c3d-highmem-180
node.kubernetes.io/instance-type c3d-highmem-180-lssd
node.kubernetes.io/instance-type c3d-highmem-30
node.kubernetes.io/instance-type c3d-highmem-30-lssd
node.kubernetes.io/instance-type c3d-highmem-360
node.kubernetes.io/instance-type c3d-highmem-360-lssd
node.kubernetes.io/instance-type c3d-highmem-4
node.kubernetes.io/instance-type c3d-highmem-60
node.kubernetes.io/instance-type c3d-highmem-60-lssd
node.kubernetes.io/instance-type c3d-highmem-8
node.kubernetes.io/instance-type c3d-highmem-8-lssd
node.kubernetes.io/instance-type c3d-highmem-90
node.kubernetes.io/instance-type c3d-highmem-90-lssd
node.kubernetes.io/instance-type c3d-standard-16
node.kubernetes.io/instance-type c3d-standard-16-lssd
node.kubernetes.io/instance-type c3d-standard-180
node.kubernetes.io/instance-type c3d-standard-180-lssd
node.kubernetes.io/instance-type c3d-standard-30
node.kubernetes.io/instance-type c3d-standard-30-lssd
node.kubernetes.io/instance-type c3d-standard-360
node.kubernetes.io/instance-type c3d-standard-360-lssd
node.kubernetes.io/instance-type c3d-standard-4
node.kubernetes.io/instance-type c3d-standard-60
node.kubernetes.io/instance-type c3d-standard-60-lssd
node.kubernetes.io/instance-type c3d-standard-8
node.kubernetes.io/instance-type c3d-standard-8-lssd
node.kubernetes.io/instance-type c3d-standard-90
node.kubernetes.io/instance-type c3d-standard-90-lssd
node.kubernetes.io/instance-type c4-highcpu-16
node.kubernetes.io/instance-type c4-highcpu-192
node.kubernetes.io/instance-type c4-highcpu-2
node.kubernetes.io/instance-type c4-highcpu-32
node.kubernetes.io/instance-type c4-highcpu-4
node.kubernetes.io/instance-type c4-highcpu-48
node.kubernetes.io/instance-type c4-highcpu-8
node.kubernetes.io/instance-type c4-highcpu-96
node.kubernetes.io/instance-type c4-highmem-16
node.kubernetes.io/instance-type c4-highmem-192
node.kubernetes.io/instance-type c4-highmem-2
node.kubernetes.io/instance-type c4-highmem-32
node.kubernetes.io/instance-type c4-highmem-4
node.kubernetes.io/instance-type c4-highmem-48
node.kubernetes.io/instance-type c4-highmem-8
node.kubernetes.io/instance-type c4-highmem-96
node.kubernetes.io/instance-type c4-standard-16
node.kubernetes.io/instance-type c4-standard-192
node.kubernetes.io/instance-type c4-standard-2
node.kubernetes.io/instance-type c4-standard-32
node.kubernetes.io/instance-type c4-standard-4
node.kubernetes.io/instance-type c4-standard-48
node.kubernetes.io/instance-type c4-standard-8
node.kubernetes.io/instance-type c4-standard-96
node.kubernetes.io/instance-type c4.2xlarge
node.kubernetes.io/instance-type c4.4xlarge
node.kubernetes.io/instance-type c4.8xlarge
node.kubernetes.io/instance-type c4.large
node.kubernetes.io/instance-type c4.xlarge
node.kubernetes.io/instance-type c4a-highcpu-1
node.kubernetes.io/instance-type c4a-highcpu-16
node.kubernetes.io/instance-type c4a-highcpu-2
node.kubernetes.io/instance-type c4a-highcpu-32
node.kubernetes.io/instance-type c4a-highcpu-4
node.kubernetes.io/instance-type c4a-highcpu-48
node.kubernetes.io/instance-type c4a-highcpu-64
node.kubernetes.io/instance-type c4a-highcpu-72
node.kubernetes.io/instance-type c4a-highcpu-8
node.kubernetes.io/instance-type c4a-highmem-1
node.kubernetes.io/instance-type c4a-highmem-16
node.kubernetes.io/instance-type c4a-highmem-16-lssd
node.kubernetes.io/instance-type c4a-highmem-2
node.kubernetes.io/instance-type c4a-highmem-32
node.kubernetes.io/instance-type c4a-highmem-32-lssd
node.kubernetes.io/instance-type c4a-highmem-4
node.kubernetes.io/instance-type c4a-highmem-4-lssd
node.kubernetes.io/instance-type c4a-highmem-48
node.kubernetes.io/instance-type c4a-highmem-48-lssd
node.kubernetes.io/instance-type c4a-highmem-64
node.kubernetes.io/instance-type c4a-highmem-64-lssd
node.kubernetes.io/instance-type c4a-highmem-72
node.kubernetes.io/instance-type c4a-highmem-72-lssd
node.kubernetes.io/instance-type c4a-highmem-8
node.kubernetes.io/instance-type c4a-highmem-8-lssd
node.kubernetes.io/instance-type c4a-standard-1
node.kubernetes.io/instance-type c4a-standard-16
node.kubernetes.io/instance-type c4a-standard-16-lssd
node.kubernetes.io/instance-type c4a-standard-2
node.kubernetes.io/instance-type c4a-standard-32
node.kubernetes.io/instance-type c4a-standard-32-lssd
node.kubernetes.io/instance-type c4a-standard-4
node.kubernetes.io/instance-type c4a-standard-4-lssd
node.kubernetes.io/instance-type c4a-standard-48
node.kubernetes.io/instance-type c4a-standard-48-lssd
node.kubernetes.io/instance-type c4a-standard-64
node.kubernetes.io/instance-type c4a-standard-64-lssd
node.kubernetes.io/instance-type c4a-standard-72
node.kubernetes.io/instance-type c4a-standard-72-lssd
node.kubernetes.io/instance-type c4a-standard-8
node.kubernetes.io/instance-type c4a-standard-8-lssd
node.kubernetes.io/instance-type c5.12xlarge
node.kubernetes.io/instance-type c5.18xlarge
node.kubernetes.io/instance-type c5.24xlarge
node.kubernetes.io/instance-type c5.2xlarge
node.kubernetes.io/instance-type c5.4xlarge
node.kubernetes.io/instance-type c5.9xlarge
node.kubernetes.io/instance-type c5.large
node.kubernetes.io/instance-type c5.metal
node.kubernetes.io/instance-type c5.xlarge
node.kubernetes.io/instance-type c5a.12xlarge
node.kubernetes.io/instance-type c5a.16xlarge
node.kubernetes.io/instance-type c5a.24xlarge
node.kubernetes.io/instance-type c5a.2xlarge
node.kubernetes.io/instance-type c5a.4xlarge
node.kubernetes.io/instance-type c5a.8xlarge
node.kubernetes.io/instance-type c5a.large
node.kubernetes.io/instance-type c5a.xlarge
node.kubernetes.io/instance-type c5ad.12xlarge
node.kubernetes.io/instance-type c5ad.16xlarge
node.kubernetes.io/instance-type c5ad.24xlarge
node.kubernetes.io/instance-type c5ad.2xlarge
node.kubernetes.io/instance-type c5ad.4xlarge
node.kubernetes.io/instance-type c5ad.8xlarge
node.kubernetes.io/instance-type c5ad.large
node.kubernetes.io/instance-type c5ad.xlarge
node.kubernetes.io/instance-type c5d.12xlarge
node.kubernetes.io/instance-type c5d.18xlarge
node.kubernetes.io/instance-type c5d.24xlarge
node.kubernetes.io/instance-type c5d.2xlarge
node.kubernetes.io/instance-type c5d.4xlarge
node.kubernetes.io/instance-type c5d.9xlarge
node.kubernetes.io/instance-type c5d.large
node.kubernetes.io/instance-type c5d.metal
node.kubernetes.io/instance-type c5d.xlarge
node.kubernetes.io/instance-type c5n.18xlarge
node.kubernetes.io/instance-type c5n.2xlarge
node.kubernetes.io/instance-type c5n.4xlarge
node.kubernetes.io/instance-type c5n.9xlarge
node.kubernetes.io/instance-type c5n.large
node.kubernetes.io/instance-type c5n.metal
node.kubernetes.io/instance-type c5n.xlarge
node.kubernetes.io/instance-type c6a.12xlarge
node.kubernetes.io/instance-type c6a.16xlarge
node.kubernetes.io/instance-type c6a.24xlarge
node.kubernetes.io/instance-type c6a.2xlarge
node.kubernetes.io/instance-type c6a.32xlarge
node.kubernetes.io/instance-type c6a.48xlarge
node.kubernetes.io/instance-type c6a.4xlarge
node.kubernetes.io/instance-type c6a.8xlarge
node.kubernetes.io/instance-type c6a.large
node.kubernetes.io/instance-type c6a.metal
node.kubernetes.io/instance-type c6a.xlarge
node.kubernetes.io/instance-type c6g.12xlarge
node.kubernetes.io/instance-type c6g.16xlarge
node.kubernetes.io/instance-type c6g.2xlarge
node.kubernetes.io/instance-type c6g.4xlarge
node.kubernetes.io/instance-type c6g.8xlarge
node.kubernetes.io/instance-type c6g.large
node.kubernetes.io/instance-type c6g.medium
node.kubernetes.io/instance-type c6g.metal
node.kubernetes.io/instance-type c6g.xlarge
node.kubernetes.io/instance-type c6gd.12xlarge
node.kubernetes.io/instance-type c6gd.16xlarge
node.kubernetes.io/instance-type c6gd.2xlarge
node.kubernetes.io/instance-type c6gd.4xlarge
node.kubernetes.io/instance-type c6gd.8xlarge
node.kubernetes.io/instance-type c6gd.large
node.kubernetes.io/instance-type c6gd.medium
node.kubernetes.io/instance-type c6gd.metal
node.kubernetes.io/instance-type c6gd.xlarge
node.kubernetes.io/instance-type c6gn.12xlarge
node.kubernetes.io/instance-type c6gn.16xlarge
node.kubernetes.io/instance-type c6gn.2xlarge
node.kubernetes.io/instance-type c6gn.4xlarge
node.kubernetes.io/instance-type c6gn.8xlarge
node.kubernetes.io/instance-type c6gn.large
node.kubernetes.io/instance-type c6gn.medium
node.kubernetes.io/instance-type c6gn.xlarge
node.kubernetes.io/instance-type c6i.12xlarge
node.kubernetes.io/instance-type c6i.16xlarge
node.kubernetes.io/instance-type c6i.24xlarge
node.kubernetes.io/instance-type c6i.2xlarge
node.kubernetes.io/instance-type c6i.32xlarge
node.kubernetes.io/instance-type c6i.4xlarge
node.kubernetes.io/instance-type c6i.8xlarge
node.kubernetes.io/instance-type c6i.large
node.kubernetes.io/instance-type c6i.metal
node.kubernetes.io/instance-type c6i.xlarge
node.kubernetes.io/instance-type c6id.12xlarge
node.kubernetes.io/instance-type c6id.16xlarge
node.kubernetes.io/instance-type c6id.24xlarge
node.kubernetes.io/instance-type c6id.2xlarge
node.kubernetes.io/instance-type c6id.32xlarge
node.kubernetes.io/instance-type c6id.4xlarge
node.kubernetes.io/instance-type c6id.8xlarge
node.kubernetes.io/instance-type c6id.large
node.kubernetes.io/instance-type c6id.metal
node.kubernetes.io/instance-type c6id.xlarge
node.kubernetes.io/instance-type c6in.12xlarge
node.kubernetes.io/instance-type c6in.16xlarge
node.kubernetes.io/instance-type c6in.24xlarge
node.kubernetes.io/instance-type c6in.2xlarge
node.kubernetes.io/instance-type c6in.32xlarge
node.kubernetes.io/instance-type c6in.4xlarge
node.kubernetes.io/instance-type c6in.8xlarge
node.kubernetes.io/instance-type c6in.large
node.kubernetes.io/instance-type c6in.metal
node.kubernetes.io/instance-type c6in.xlarge
node.kubernetes.io/instance-type c7a.12xlarge
node.kubernetes.io/instance-type c7a.16xlarge
node.kubernetes.io/instance-type c7a.24xlarge
node.kubernetes.io/instance-type c7a.2xlarge
node.kubernetes.io/instance-type c7a.32xlarge
node.kubernetes.io/instance-type c7a.48xlarge
node.kubernetes.io/instance-type c7a.4xlarge
node.kubernetes.io/instance-type c7a.8xlarge
node.kubernetes.io/instance-type c7a.large
node.kubernetes.io/instance-type c7a.medium
node.kubernetes.io/instance-type c7a.metal-48xl
node.kubernetes.io/instance-type c7a.xlarge
node.kubernetes.io/instance-type c7g.12xlarge
node.kubernetes.io/instance-type c7g.16xlarge
node.kubernetes.io/instance-type c7g.2xlarge
node.kubernetes.io/instance-type c7g.4xlarge
node.kubernetes.io/instance-type c7g.8xlarge
node.kubernetes.io/instance-type c7g.large
node.kubernetes.io/instance-type c7g.medium
node.kubernetes.io/instance-type c7g.metal
node.kubernetes.io/instance-type c7g.xlarge
node.kubernetes.io/instance-type c7gd.12xlarge
node.kubernetes.io/instance-type c7gd.16xlarge
node.kubernetes.io/instance-type c7gd.2xlarge
node.kubernetes.io/instance-type c7gd.4xlarge
node.kubernetes.io/instance-type c7gd.8xlarge
node.kubernetes.io/instance-type c7gd.large
node.kubernetes.io/instance-type c7gd.medium
node.kubernetes.io/instance-type c7gd.metal
node.kubernetes.io/instance-type c7gd.xlarge
node.kubernetes.io/instance-type c7gn.12xlarge
node.kubernetes.io/instance-type c7gn.16xlarge
node.kubernetes.io/instance-type c7gn.2xlarge
node.kubernetes.io/instance-type c7gn.4xlarge
node.kubernetes.io/instance-type c7gn.8xlarge
node.kubernetes.io/instance-type c7gn.large
node.kubernetes.io/instance-type c7gn.medium
node.kubernetes.io/instance-type c7gn.metal
node.kubernetes.io/instance-type c7gn.xlarge
node.kubernetes.io/instance-type c7i-flex.2xlarge
node.kubernetes.io/instance-type c7i-flex.4xlarge
node.kubernetes.io/instance-type c7i-flex.8xlarge
node.kubernetes.io/instance-type c7i-flex.large
node.kubernetes.io/instance-type c7i-flex.xlarge
node.kubernetes.io/instance-type c7i.12xlarge
node.kubernetes.io/instance-type c7i.16xlarge
node.kubernetes.io/instance-type c7i.24xlarge
node.kubernetes.io/instance-type c7i.2xlarge
node.kubernetes.io/instance-type c7i.48xlarge
node.kubernetes.io/instance-type c7i.4xlarge
node.kubernetes.io/instance-type c7i.8xlarge
node.kubernetes.io/instance-type c7i.large
node.kubernetes.io/instance-type c7i.metal-24xl
node.kubernetes.io/instance-type c7i.metal-48xl
node.kubernetes.io/instance-type c7i.xlarge
node.kubernetes.io/instance-type c8g.12xlarge
node.kubernetes.io/instance-type c8g.16xlarge
node.kubernetes.io/instance-type c8g.24xlarge
node.kubernetes.io/instance-type c8g.2xlarge
node.kubernetes.io/instance-type c8g.48xlarge
node.kubernetes.io/instance-type c8g.4xlarge
node.kubernetes.io/instance-type c8g.8xlarge
node.kubernetes.io/instance-type c8g.large
node.kubernetes.io/instance-type c8g.medium
node.kubernetes.io/instance-type c8g.metal-24xl
node.kubernetes.io/instance-type c8g.metal-48xl
node.kubernetes.io/instance-type c8g.xlarge
node.kubernetes.io/instance-type cax11
node.kubernetes.io/instance-type cax21
node.kubernetes.io/instance-type cax31
node.kubernetes.io/instance-type cax41
node.kubernetes.io/instance-type ccx13
node.kubernetes.io/instance-type ccx23
node.kubernetes.io/instance-type ccx33
node.kubernetes.io/instance-type ccx43
node.kubernetes.io/instance-type ccx53
node.kubernetes.io/instance-type ccx63
node.kubernetes.io/instance-type cpx11
node.kubernetes.io/instance-type cpx21
node.kubernetes.io/instance-type cpx31
node.kubernetes.io/instance-type cpx41
node.kubernetes.io/instance-type cpx51
node.kubernetes.io/instance-type cx22
node.kubernetes.io/instance-type cx32
node.kubernetes.io/instance-type cx42
node.kubernetes.io/instance-type cx52
node.kubernetes.io/instance-type d2.2xlarge
node.kubernetes.io/instance-type d2.4xlarge
node.kubernetes.io/instance-type d2.8xlarge
node.kubernetes.io/instance-type d2.xlarge
node.kubernetes.io/instance-type d3.2xlarge
node.kubernetes.io/instance-type d3.4xlarge
node.kubernetes.io/instance-type d3.8xlarge
node.kubernetes.io/instance-type d3.xlarge
node.kubernetes.io/instance-type d3en.12xlarge
node.kubernetes.io/instance-type d3en.2xlarge
node.kubernetes.io/instance-type d3en.4xlarge
node.kubernetes.io/instance-type d3en.6xlarge
node.kubernetes.io/instance-type d3en.8xlarge
node.kubernetes.io/instance-type d3en.xlarge
node.kubernetes.io/instance-type e2-highcpu-16
node.kubernetes.io/instance-type e2-highcpu-2
node.kubernetes.io/instance-type e2-highcpu-32
node.kubernetes.io/instance-type e2-highcpu-4
node.kubernetes.io/instance-type e2-highcpu-8
node.kubernetes.io/instance-type e2-highmem-16
node.kubernetes.io/instance-type e2-highmem-2
node.kubernetes.io/instance-type e2-highmem-4
node.kubernetes.io/instance-type e2-highmem-8
node.kubernetes.io/instance-type e2-medium
node.kubernetes.io/instance-type e2-micro
node.kubernetes.io/instance-type e2-small
node.kubernetes.io/instance-type e2-standard-16
node.kubernetes.io/instance-type e2-standard-2
node.kubernetes.io/instance-type e2-standard-32
node.kubernetes.io/instance-type e2-standard-4
node.kubernetes.io/instance-type e2-standard-8
node.kubernetes.io/instance-type f1-micro
node.kubernetes.io/instance-type g1-small
node.kubernetes.io/instance-type g2-standard-12
node.kubernetes.io/instance-type g2-standard-16
node.kubernetes.io/instance-type g2-standard-24
node.kubernetes.io/instance-type g2-standard-32
node.kubernetes.io/instance-type g2-standard-4
node.kubernetes.io/instance-type g2-standard-48
node.kubernetes.io/instance-type g2-standard-8
node.kubernetes.io/instance-type g2-standard-96
node.kubernetes.io/instance-type g3.16xlarge
node.kubernetes.io/instance-type g3.4xlarge
node.kubernetes.io/instance-type g3.8xlarge
node.kubernetes.io/instance-type g3s.xlarge
node.kubernetes.io/instance-type g4dn.12xlarge
node.kubernetes.io/instance-type g4dn.16xlarge
node.kubernetes.io/instance-type g4dn.2xlarge
node.kubernetes.io/instance-type g4dn.4xlarge
node.kubernetes.io/instance-type g4dn.8xlarge
node.kubernetes.io/instance-type g4dn.metal
node.kubernetes.io/instance-type g4dn.xlarge
node.kubernetes.io/instance-type g5.12xlarge
node.kubernetes.io/instance-type g5.16xlarge
node.kubernetes.io/instance-type g5.24xlarge
node.kubernetes.io/instance-type g5.2xlarge
node.kubernetes.io/instance-type g5.48xlarge
node.kubernetes.io/instance-type g5.4xlarge
node.kubernetes.io/instance-type g5.8xlarge
node.kubernetes.io/instance-type g5.xlarge
node.kubernetes.io/instance-type g5g.16xlarge
node.kubernetes.io/instance-type g5g.2xlarge
node.kubernetes.io/instance-type g5g.4xlarge
node.kubernetes.io/instance-type g5g.8xlarge
node.kubernetes.io/instance-type g5g.metal
node.kubernetes.io/instance-type g5g.xlarge
node.kubernetes.io/instance-type g6.12xlarge
node.kubernetes.io/instance-type g6.16xlarge
node.kubernetes.io/instance-type g6.24xlarge
node.kubernetes.io/instance-type g6.2xlarge
node.kubernetes.io/instance-type g6.48xlarge
node.kubernetes.io/instance-type g6.4xlarge
node.kubernetes.io/instance-type g6.8xlarge
node.kubernetes.io/instance-type g6.xlarge
node.kubernetes.io/instance-type g6e.12xlarge
node.kubernetes.io/instance-type g6e.16xlarge
node.kubernetes.io/instance-type g6e.24xlarge
node.kubernetes.io/instance-type g6e.2xlarge
node.kubernetes.io/instance-type g6e.48xlarge
node.kubernetes.io/instance-type g6e.4xlarge
node.kubernetes.io/instance-type g6e.8xlarge
node.kubernetes.io/instance-type g6e.xlarge
node.kubernetes.io/instance-type gr6.4xlarge
node.kubernetes.io/instance-type gr6.8xlarge
node.kubernetes.io/instance-type h1.16xlarge
node.kubernetes.io/instance-type h1.2xlarge
node.kubernetes.io/instance-type h1.4xlarge
node.kubernetes.io/instance-type h1.8xlarge
node.kubernetes.io/instance-type h3-standard-88
node.kubernetes.io/instance-type hpc6a.48xlarge
node.kubernetes.io/instance-type hpc6id.32xlarge
node.kubernetes.io/instance-type hpc7a.12xlarge
node.kubernetes.io/instance-type hpc7a.24xlarge
node.kubernetes.io/instance-type hpc7a.48xlarge
node.kubernetes.io/instance-type hpc7a.96xlarge
node.kubernetes.io/instance-type hpc7g.16xlarge
node.kubernetes.io/instance-type hpc7g.4xlarge
node.kubernetes.io/instance-type hpc7g.8xlarge
node.kubernetes.io/instance-type i2.2xlarge
node.kubernetes.io/instance-type i2.4xlarge
node.kubernetes.io/instance-type i2.8xlarge
node.kubernetes.io/instance-type i2.xlarge
node.kubernetes.io/instance-type i3.16xlarge
node.kubernetes.io/instance-type i3.2xlarge
node.kubernetes.io/instance-type i3.4xlarge
node.kubernetes.io/instance-type i3.8xlarge
node.kubernetes.io/instance-type i3.large
node.kubernetes.io/instance-type i3.metal
node.kubernetes.io/instance-type i3.xlarge
node.kubernetes.io/instance-type i3en.12xlarge
node.kubernetes.io/instance-type i3en.24xlarge
node.kubernetes.io/instance-type i3en.2xlarge
node.kubernetes.io/instance-type i3en.3xlarge
node.kubernetes.io/instance-type i3en.6xlarge
node.kubernetes.io/instance-type i3en.large
node.kubernetes.io/instance-type i3en.metal
node.kubernetes.io/instance-type i3en.xlarge
node.kubernetes.io/instance-type i4g.16xlarge
node.kubernetes.io/instance-type i4g.2xlarge
node.kubernetes.io/instance-type i4g.4xlarge
node.kubernetes.io/instance-type i4g.8xlarge
node.kubernetes.io/instance-type i4g.large
node.kubernetes.io/instance-type i4g.xlarge
node.kubernetes.io/instance-type i4i.12xlarge
node.kubernetes.io/instance-type i4i.16xlarge
node.kubernetes.io/instance-type i4i.24xlarge
node.kubernetes.io/instance-type i4i.2xlarge
node.kubernetes.io/instance-type i4i.32xlarge
node.kubernetes.io/instance-type i4i.4xlarge
node.kubernetes.io/instance-type i4i.8xlarge
node.kubernetes.io/instance-type i4i.large
node.kubernetes.io/instance-type i4i.metal
node.kubernetes.io/instance-type i4i.xlarge
node.kubernetes.io/instance-type im4gn.16xlarge
node.kubernetes.io/instance-type im4gn.2xlarge
node.kubernetes.io/instance-type im4gn.4xlarge
node.kubernetes.io/instance-type im4gn.8xlarge
node.kubernetes.io/instance-type im4gn.large
node.kubernetes.io/instance-type im4gn.xlarge
node.kubernetes.io/instance-type is4gen.2xlarge
node.kubernetes.io/instance-type is4gen.4xlarge
node.kubernetes.io/instance-type is4gen.8xlarge
node.kubernetes.io/instance-type is4gen.large
node.kubernetes.io/instance-type is4gen.medium
node.kubernetes.io/instance-type is4gen.xlarge
node.kubernetes.io/instance-type m1-megamem-96
node.kubernetes.io/instance-type m1-ultramem-160
node.kubernetes.io/instance-type m1-ultramem-40
node.kubernetes.io/instance-type m1-ultramem-80
node.kubernetes.io/instance-type m1.large
node.kubernetes.io/instance-type m1.xlarge
node.kubernetes.io/instance-type m2-hypermem-416
node.kubernetes.io/instance-type m2-megamem-416
node.kubernetes.io/instance-type m2-ultramem-208
node.kubernetes.io/instance-type m2-ultramem-416
node.kubernetes.io/instance-type m2-ultramem2x-96
node.kubernetes.io/instance-type m2-ultramemx-96
node.kubernetes.io/instance-type m2.2xlarge
node.kubernetes.io/instance-type m2.4xlarge
node.kubernetes.io/instance-type m2.xlarge
node.kubernetes.io/instance-type m3-megamem-128
node.kubernetes.io/instance-type m3-megamem-64
node.kubernetes.io/instance-type m3-ultramem-128
node.kubernetes.io/instance-type m3-ultramem-32
node.kubernetes.io/instance-type m3-ultramem-64
node.kubernetes.io/instance-type m3.2xlarge
node.kubernetes.io/instance-type m3.large
node.kubernetes.io/instance-type m3.medium
node.kubernetes.io/instance-type m3.xlarge
node.kubernetes.io/instance-type m4.10xlarge
node.kubernetes.io/instance-type m4.16xlarge
node.kubernetes.io/instance-type m4.2xlarge
node.kubernetes.io/instance-type m4.4xlarge
node.kubernetes.io/instance-type m4.large
node.kubernetes.io/instance-type m4.xlarge
node.kubernetes.io/instance-type m5.12xlarge
node.kubernetes.io/instance-type m5.16xlarge
node.kubernetes.io/instance-type m5.24xlarge
node.kubernetes.io/instance-type m5.2xlarge
node.kubernetes.io/instance-type m5.4xlarge
node.kubernetes.io/instance-type m5.8xlarge
node.kubernetes.io/instance-type m5.large
node.kubernetes.io/instance-type m5.metal
node.kubernetes.io/instance-type m5.xlarge
node.kubernetes.io/instance-type m5a.12xlarge
node.kubernetes.io/instance-type m5a.16xlarge
node.kubernetes.io/instance-type m5a.24xlarge
node.kubernetes.io/instance-type m5a.2xlarge
node.kubernetes.io/instance-type m5a.4xlarge
node.kubernetes.io/instance-type m5a.8xlarge
node.kubernetes.io/instance-type m5a.large
node.kubernetes.io/instance-type m5a.xlarge
node.kubernetes.io/instance-type m5ad.12xlarge
node.kubernetes.io/instance-type m5ad.16xlarge
node.kubernetes.io/instance-type m5ad.24xlarge
node.kubernetes.io/instance-type m5ad.2xlarge
node.kubernetes.io/instance-type m5ad.4xlarge
node.kubernetes.io/instance-type m5ad.8xlarge
node.kubernetes.io/instance-type m5ad.large
node.kubernetes.io/instance-type m5ad.xlarge
node.kubernetes.io/instance-type m5d.12xlarge
node.kubernetes.io/instance-type m5d.16xlarge
node.kubernetes.io/instance-type m5d.24xlarge
node.kubernetes.io/instance-type m5d.2xlarge
node.kubernetes.io/instance-type m5d.4xlarge
node.kubernetes.io/instance-type m5d.8xlarge
node.kubernetes.io/instance-type m5d.large
node.kubernetes.io/instance-type m5d.metal
node.kubernetes.io/instance-type m5d.xlarge
node.kubernetes.io/instance-type m5dn.12xlarge
node.kubernetes.io/instance-type m5dn.16xlarge
node.kubernetes.io/instance-type m5dn.24xlarge
node.kubernetes.io/instance-type m5dn.2xlarge
node.kubernetes.io/instance-type m5dn.4xlarge
node.kubernetes.io/instance-type m5dn.8xlarge
node.kubernetes.io/instance-type m5dn.large
node.kubernetes.io/instance-type m5dn.metal
node.kubernetes.io/instance-type m5dn.xlarge
node.kubernetes.io/instance-type m5n.12xlarge
node.kubernetes.io/instance-type m5n.16xlarge
node.kubernetes.io/instance-type m5n.24xlarge
node.kubernetes.io/instance-type m5n.2xlarge
node.kubernetes.io/instance-type m5n.4xlarge
node.kubernetes.io/instance-type m5n.8xlarge
node.kubernetes.io/instance-type m5n.large
node.kubernetes.io/instance-type m5n.metal
node.kubernetes.io/instance-type m5n.xlarge
node.kubernetes.io/instance-type m5zn.12xlarge
node.kubernetes.io/instance-type m5zn.2xlarge
node.kubernetes.io/instance-type m5zn.3xlarge
node.kubernetes.io/instance-type m5zn.6xlarge
node.kubernetes.io/instance-type m5zn.large
node.kubernetes.io/instance-type m5zn.metal
node.kubernetes.io/instance-type m5zn.xlarge
node.kubernetes.io/instance-type m6a.12xlarge
node.kubernetes.io/instance-type m6a.16xlarge
node.kubernetes.io/instance-type m6a.24xlarge
node.kubernetes.io/instance-type m6a.2xlarge
node.kubernetes.io/instance-type m6a.32xlarge
node.kubernetes.io/instance-type m6a.48xlarge
node.kubernetes.io/instance-type m6a.4xlarge
node.kubernetes.io/instance-type m6a.8xlarge
node.kubernetes.io/instance-type m6a.large
node.kubernetes.io/instance-type m6a.metal
node.kubernetes.io/instance-type m6a.xlarge
node.kubernetes.io/instance-type m6g.12xlarge
node.kubernetes.io/instance-type m6g.16xlarge
node.kubernetes.io/instance-type m6g.2xlarge
node.kubernetes.io/instance-type m6g.4xlarge
node.kubernetes.io/instance-type m6g.8xlarge
node.kubernetes.io/instance-type m6g.large
node.kubernetes.io/instance-type m6g.medium
node.kubernetes.io/instance-type m6g.metal
node.kubernetes.io/instance-type m6g.xlarge
node.kubernetes.io/instance-type m6gd.12xlarge
node.kubernetes.io/instance-type m6gd.16xlarge
node.kubernetes.io/instance-type m6gd.2xlarge
node.kubernetes.io/instance-type m6gd.4xlarge
node.kubernetes.io/instance-type m6gd.8xlarge
node.kubernetes.io/instance-type m6gd.large
node.kubernetes.io/instance-type m6gd.medium
node.kubernetes.io/instance-type m6gd.metal
node.kubernetes.io/instance-type m6gd.xlarge
node.kubernetes.io/instance-type m6i.12xlarge
node.kubernetes.io/instance-type m6i.16xlarge
node.kubernetes.io/instance-type m6i.24xlarge
node.kubernetes.io/instance-type m6i.2xlarge
node.kubernetes.io/instance-type m6i.32xlarge
node.kubernetes.io/instance-type m6i.4xlarge
node.kubernetes.io/instance-type m6i.8xlarge
node.kubernetes.io/instance-type m6i.large
node.kubernetes.io/instance-type m6i.metal
node.kubernetes.io/instance-type m6i.xlarge
node.kubernetes.io/instance-type m6id.12xlarge
node.kubernetes.io/instance-type m6id.16xlarge
node.kubernetes.io/instance-type m6id.24xlarge
node.kubernetes.io/instance-type m6id.2xlarge
node.kubernetes.io/instance-type m6id.32xlarge
node.kubernetes.io/instance-type m6id.4xlarge
node.kubernetes.io/instance-type m6id.8xlarge
node.kubernetes.io/instance-type m6id.large
node.kubernetes.io/instance-type m6id.metal
node.kubernetes.io/instance-type m6id.xlarge
node.kubernetes.io/instance-type m6idn.12xlarge
node.kubernetes.io/instance-type m6idn.16xlarge
node.kubernetes.io/instance-type m6idn.24xlarge
node.kubernetes.io/instance-type m6idn.2xlarge
node.kubernetes.io/instance-type m6idn.32xlarge
node.kubernetes.io/instance-type m6idn.4xlarge
node.kubernetes.io/instance-type m6idn.8xlarge
node.kubernetes.io/instance-type m6idn.large
node.kubernetes.io/instance-type m6idn.metal
node.kubernetes.io/instance-type m6idn.xlarge
node.kubernetes.io/instance-type m6in.12xlarge
node.kubernetes.io/instance-type m6in.16xlarge
node.kubernetes.io/instance-type m6in.24xlarge
node.kubernetes.io/instance-type m6in.2xlarge
node.kubernetes.io/instance-type m6in.32xlarge
node.kubernetes.io/instance-type m6in.4xlarge
node.kubernetes.io/instance-type m6in.8xlarge
node.kubernetes.io/instance-type m6in.large
node.kubernetes.io/instance-type m6in.metal
node.kubernetes.io/instance-type m6in.xlarge
node.kubernetes.io/instance-type m7a.12xlarge
node.kubernetes.io/instance-type m7a.16xlarge
node.kubernetes.io/instance-type m7a.24xlarge
node.kubernetes.io/instance-type m7a.2xlarge
node.kubernetes.io/instance-type m7a.32xlarge
node.kubernetes.io/instance-type m7a.48xlarge
node.kubernetes.io/instance-type m7a.4xlarge
node.kubernetes.io/instance-type m7a.8xlarge
node.kubernetes.io/instance-type m7a.large
node.kubernetes.io/instance-type m7a.medium
node.kubernetes.io/instance-type m7a.metal-48xl
node.kubernetes.io/instance-type m7a.xlarge
node.kubernetes.io/instance-type m7g.12xlarge
node.kubernetes.io/instance-type m7g.16xlarge
node.kubernetes.io/instance-type m7g.2xlarge
node.kubernetes.io/instance-type m7g.4xlarge
node.kubernetes.io/instance-type m7g.8xlarge
node.kubernetes.io/instance-type m7g.large
node.kubernetes.io/instance-type m7g.medium
node.kubernetes.io/instance-type m7g.metal
node.kubernetes.io/instance-type m7g.xlarge
node.kubernetes.io/instance-type m7gd.12xlarge
node.kubernetes.io/instance-type m7gd.16xlarge
node.kubernetes.io/instance-type m7gd.2xlarge
node.kubernetes.io/instance-type m7gd.4xlarge
node.kubernetes.io/instance-type m7gd.8xlarge
node.kubernetes.io/instance-type m7gd.large
node.kubernetes.io/instance-type m7gd.medium
node.kubernetes.io/instance-type m7gd.metal
node.kubernetes.io/instance-type m7gd.xlarge
node.kubernetes.io/instance-type m7i-flex.2xlarge
node.kubernetes.io/instance-type m7i-flex.4xlarge
node.kubernetes.io/instance-type m7i-flex.8xlarge
node.kubernetes.io/instance-type m7i-flex.large
node.kubernetes.io/instance-type m7i-flex.xlarge
node.kubernetes.io/instance-type m7i.12xlarge
node.kubernetes.io/instance-type m7i.16xlarge
node.kubernetes.io/instance-type m7i.24xlarge
node.kubernetes.io/instance-type m7i.2xlarge
node.kubernetes.io/instance-type m7i.48xlarge
node.kubernetes.io/instance-type m7i.4xlarge
node.kubernetes.io/instance-type m7i.8xlarge
node.kubernetes.io/instance-type m7i.large
node.kubernetes.io/instance-type m7i.metal-24xl
node.kubernetes.io/instance-type m7i.metal-48xl
node.kubernetes.io/instance-type m7i.xlarge
node.kubernetes.io/instance-type m8g.12xlarge
node.kubernetes.io/instance-type m8g.16xlarge
node.kubernetes.io/instance-type m8g.24xlarge
node.kubernetes.io/instance-type m8g.2xlarge
node.kubernetes.io/instance-type m8g.48xlarge
node.kubernetes.io/instance-type m8g.4xlarge
node.kubernetes.io/instance-type m8g.8xlarge
node.kubernetes.io/instance-type m8g.large
node.kubernetes.io/instance-type m8g.medium
node.kubernetes.io/instance-type m8g.metal-24xl
node.kubernetes.io/instance-type m8g.metal-48xl
node.kubernetes.io/instance-type m8g.xlarge
node.kubernetes.io/instance-type n1-highcpu-16
node.kubernetes.io/instance-type n1-highcpu-2
node.kubernetes.io/instance-type n1-highcpu-32
node.kubernetes.io/instance-type n1-highcpu-4
node.kubernetes.io/instance-type n1-highcpu-64
node.kubernetes.io/instance-type n1-highcpu-8
node.kubernetes.io/instance-type n1-highcpu-96
node.kubernetes.io/instance-type n1-highmem-16
node.kubernetes.io/instance-type n1-highmem-2
node.kubernetes.io/instance-type n1-highmem-32
node.kubernetes.io/instance-type n1-highmem-4
node.kubernetes.io/instance-type n1-highmem-64
node.kubernetes.io/instance-type n1-highmem-8
node.kubernetes.io/instance-type n1-highmem-96
node.kubernetes.io/instance-type n1-megamem-96
node.kubernetes.io/instance-type n1-standard-1
node.kubernetes.io/instance-type n1-standard-16
node.kubernetes.io/instance-type n1-standard-2
node.kubernetes.io/instance-type n1-standard-32
node.kubernetes.io/instance-type n1-standard-4
node.kubernetes.io/instance-type n1-standard-64
node.kubernetes.io/instance-type n1-standard-8
node.kubernetes.io/instance-type n1-standard-96
node.kubernetes.io/instance-type n1-ultramem-160
node.kubernetes.io/instance-type n1-ultramem-40
node.kubernetes.io/instance-type n1-ultramem-80
node.kubernetes.io/instance-type n2-highcpu-16
node.kubernetes.io/instance-type n2-highcpu-2
node.kubernetes.io/instance-type n2-highcpu-32
node.kubernetes.io/instance-type n2-highcpu-4
node.kubernetes.io/instance-type n2-highcpu-48
node.kubernetes.io/instance-type n2-highcpu-64
node.kubernetes.io/instance-type n2-highcpu-8
node.kubernetes.io/instance-type n2-highcpu-80
node.kubernetes.io/instance-type n2-highcpu-96
node.kubernetes.io/instance-type n2-highmem-128
node.kubernetes.io/instance-type n2-highmem-16
node.kubernetes.io/instance-type n2-highmem-2
node.kubernetes.io/instance-type n2-highmem-32
node.kubernetes.io/instance-type n2-highmem-4
node.kubernetes.io/instance-type n2-highmem-48
node.kubernetes.io/instance-type n2-highmem-64
node.kubernetes.io/instance-type n2-highmem-8
node.kubernetes.io/instance-type n2-highmem-80
node.kubernetes.io/instance-type n2-highmem-96
node.kubernetes.io/instance-type n2-standard-128
node.kubernetes.io/instance-type n2-standard-16
node.kubernetes.io/instance-type n2-standard-2
node.kubernetes.io/instance-type n2-standard-32
node.kubernetes.io/instance-type n2-standard-4
node.kubernetes.io/instance-type n2-standard-48
node.kubernetes.io/instance-type n2-standard-64
node.kubernetes.io/instance-type n2-standard-8
node.kubernetes.io/instance-type n2-standard-80
node.kubernetes.io/instance-type n2-standard-96
node.kubernetes.io/instance-type n2d-highcpu-128
node.kubernetes.io/instance-type n2d-highcpu-16
node.kubernetes.io/instance-type n2d-highcpu-2
node.kubernetes.io/instance-type n2d-highcpu-224
node.kubernetes.io/instance-type n2d-highcpu-32
node.kubernetes.io/instance-type n2d-highcpu-4
node.kubernetes.io/instance-type n2d-highcpu-48
node.kubernetes.io/instance-type n2d-highcpu-64
node.kubernetes.io/instance-type n2d-highcpu-8
node.kubernetes.io/instance-type n2d-highcpu-80
node.kubernetes.io/instance-type n2d-highcpu-96
node.kubernetes.io/instance-type n2d-highmem-16
node.kubernetes.io/instance-type n2d-highmem-2
node.kubernetes.io/instance-type n2d-highmem-32
node.kubernetes.io/instance-type n2d-highmem-4
node.kubernetes.io/instance-type n2d-highmem-48
node.kubernetes.io/instance-type n2d-highmem-64
node.kubernetes.io/instance-type n2d-highmem-8
node.kubernetes.io/instance-type n2d-highmem-80
node.kubernetes.io/instance-type n2d-highmem-96
node.kubernetes.io/instance-type n2d-standard-128
node.kubernetes.io/instance-type n2d-standard-16
node.kubernetes.io/instance-type n2d-standard-2
node.kubernetes.io/instance-type n2d-standard-224
node.kubernetes.io/instance-type n2d-standard-32
node.kubernetes.io/instance-type n2d-standard-4
node.kubernetes.io/instance-type n2d-standard-48
node.kubernetes.io/instance-type n2d-standard-64
node.kubernetes.io/instance-type n2d-standard-8
node.kubernetes.io/instance-type n2d-standard-80
node.kubernetes.io/instance-type n2d-standard-96
node.kubernetes.io/instance-type n4-highcpu-16
node.kubernetes.io/instance-type n4-highcpu-2
node.kubernetes.io/instance-type n4-highcpu-32
node.kubernetes.io/instance-type n4-highcpu-4
node.kubernetes.io/instance-type n4-highcpu-48
node.kubernetes.io/instance-type n4-highcpu-64
node.kubernetes.io/instance-type n4-highcpu-8
node.kubernetes.io/instance-type n4-highcpu-80
node.kubernetes.io/instance-type n4-highmem-16
node.kubernetes.io/instance-type n4-highmem-2
node.kubernetes.io/instance-type n4-highmem-32
node.kubernetes.io/instance-type n4-highmem-4
node.kubernetes.io/instance-type n4-highmem-48
node.kubernetes.io/instance-type n4-highmem-64
node.kubernetes.io/instance-type n4-highmem-8
node.kubernetes.io/instance-type n4-highmem-80
node.kubernetes.io/instance-type n4-standard-16
node.kubernetes.io/instance-type n4-standard-2
node.kubernetes.io/instance-type n4-standard-32
node.kubernetes.io/instance-type n4-standard-4
node.kubernetes.io/instance-type n4-standard-48
node.kubernetes.io/instance-type n4-standard-64
node.kubernetes.io/instance-type n4-standard-8
node.kubernetes.io/instance-type n4-standard-80
node.kubernetes.io/instance-type p2.16xlarge
node.kubernetes.io/instance-type p2.8xlarge
node.kubernetes.io/instance-type p2.xlarge
node.kubernetes.io/instance-type p3.16xlarge
node.kubernetes.io/instance-type p3.2xlarge
node.kubernetes.io/instance-type p3.8xlarge
node.kubernetes.io/instance-type p3dn.24xlarge
node.kubernetes.io/instance-type p4d.24xlarge
node.kubernetes.io/instance-type p5.48xlarge
node.kubernetes.io/instance-type p5e.48xlarge
node.kubernetes.io/instance-type r3.2xlarge
node.kubernetes.io/instance-type r3.4xlarge
node.kubernetes.io/instance-type r3.8xlarge
node.kubernetes.io/instance-type r3.large
node.kubernetes.io/instance-type r3.xlarge
node.kubernetes.io/instance-type r4.16xlarge
node.kubernetes.io/instance-type r4.2xlarge
node.kubernetes.io/instance-type r4.4xlarge
node.kubernetes.io/instance-type r4.8xlarge
node.kubernetes.io/instance-type r4.large
node.kubernetes.io/instance-type r4.xlarge
node.kubernetes.io/instance-type r5.12xlarge
node.kubernetes.io/instance-type r5.16xlarge
node.kubernetes.io/instance-type r5.24xlarge
node.kubernetes.io/instance-type r5.2xlarge
node.kubernetes.io/instance-type r5.4xlarge
node.kubernetes.io/instance-type r5.8xlarge
node.kubernetes.io/instance-type r5.large
node.kubernetes.io/instance-type r5.metal
node.kubernetes.io/instance-type r5.xlarge
node.kubernetes.io/instance-type r5a.12xlarge
node.kubernetes.io/instance-type r5a.16xlarge
node.kubernetes.io/instance-type r5a.24xlarge
node.kubernetes.io/instance-type r5a.2xlarge
node.kubernetes.io/instance-type r5a.4xlarge
node.kubernetes.io/instance-type r5a.8xlarge
node.kubernetes.io/instance-type r5a.large
node.kubernetes.io/instance-type r5a.xlarge
node.kubernetes.io/instance-type r5ad.12xlarge
node.kubernetes.io/instance-type r5ad.16xlarge
node.kubernetes.io/instance-type r5ad.24xlarge
node.kubernetes.io/instance-type r5ad.2xlarge
node.kubernetes.io/instance-type r5ad.4xlarge
node.kubernetes.io/instance-type r5ad.8xlarge
node.kubernetes.io/instance-type r5ad.large
node.kubernetes.io/instance-type r5ad.xlarge
node.kubernetes.io/instance-type r5b.12xlarge
node.kubernetes.io/instance-type r5b.16xlarge
node.kubernetes.io/instance-type r5b.24xlarge
node.kubernetes.io/instance-type r5b.2xlarge
node.kubernetes.io/instance-type r5b.4xlarge
node.kubernetes.io/instance-type r5b.8xlarge
node.kubernetes.io/instance-type r5b.large
node.kubernetes.io/instance-type r5b.metal
node.kubernetes.io/instance-type r5b.xlarge
node.kubernetes.io/instance-type r5d.12xlarge
node.kubernetes.io/instance-type r5d.16xlarge
node.kubernetes.io/instance-type r5d.24xlarge
node.kubernetes.io/instance-type r5d.2xlarge
node.kubernetes.io/instance-type r5d.4xlarge
node.kubernetes.io/instance-type r5d.8xlarge
node.kubernetes.io/instance-type r5d.large
node.kubernetes.io/instance-type r5d.metal
node.kubernetes.io/instance-type r5d.xlarge
node.kubernetes.io/instance-type r5dn.12xlarge
node.kubernetes.io/instance-type r5dn.16xlarge
node.kubernetes.io/instance-type r5dn.24xlarge
node.kubernetes.io/instance-type r5dn.2xlarge
node.kubernetes.io/instance-type r5dn.4xlarge
node.kubernetes.io/instance-type r5dn.8xlarge
node.kubernetes.io/instance-type r5dn.large
node.kubernetes.io/instance-type r5dn.metal
node.kubernetes.io/instance-type r5dn.xlarge
node.kubernetes.io/instance-type r5n.12xlarge
node.kubernetes.io/instance-type r5n.16xlarge
node.kubernetes.io/instance-type r5n.24xlarge
node.kubernetes.io/instance-type r5n.2xlarge
node.kubernetes.io/instance-type r5n.4xlarge
node.kubernetes.io/instance-type r5n.8xlarge
node.kubernetes.io/instance-type r5n.large
node.kubernetes.io/instance-type r5n.metal
node.kubernetes.io/instance-type r5n.xlarge
node.kubernetes.io/instance-type r6a.12xlarge
node.kubernetes.io/instance-type r6a.16xlarge
node.kubernetes.io/instance-type r6a.24xlarge
node.kubernetes.io/instance-type r6a.2xlarge
node.kubernetes.io/instance-type r6a.32xlarge
node.kubernetes.io/instance-type r6a.48xlarge
node.kubernetes.io/instance-type r6a.4xlarge
node.kubernetes.io/instance-type r6a.8xlarge
node.kubernetes.io/instance-type r6a.large
node.kubernetes.io/instance-type r6a.metal
node.kubernetes.io/instance-type r6a.xlarge
node.kubernetes.io/instance-type r6g.12xlarge
node.kubernetes.io/instance-type r6g.16xlarge
node.kubernetes.io/instance-type r6g.2xlarge
node.kubernetes.io/instance-type r6g.4xlarge
node.kubernetes.io/instance-type r6g.8xlarge
node.kubernetes.io/instance-type r6g.large
node.kubernetes.io/instance-type r6g.medium
node.kubernetes.io/instance-type r6g.metal
node.kubernetes.io/instance-type r6g.xlarge
node.kubernetes.io/instance-type r6gd.12xlarge
node.kubernetes.io/instance-type r6gd.16xlarge
node.kubernetes.io/instance-type r6gd.2xlarge
node.kubernetes.io/instance-type r6gd.4xlarge
node.kubernetes.io/instance-type r6gd.8xlarge
node.kubernetes.io/instance-type r6gd.large
node.kubernetes.io/instance-type r6gd.medium
node.kubernetes.io/instance-type r6gd.metal
node.kubernetes.io/instance-type r6gd.xlarge
node.kubernetes.io/instance-type r6i.12xlarge
node.kubernetes.io/instance-type r6i.16xlarge
node.kubernetes.io/instance-type r6i.24xlarge
node.kubernetes.io/instance-type r6i.2xlarge
node.kubernetes.io/instance-type r6i.32xlarge
node.kubernetes.io/instance-type r6i.4xlarge
node.kubernetes.io/instance-type r6i.8xlarge
node.kubernetes.io/instance-type r6i.large
node.kubernetes.io/instance-type r6i.metal
node.kubernetes.io/instance-type r6i.xlarge
node.kubernetes.io/instance-type r6id.12xlarge
node.kubernetes.io/instance-type r6id.16xlarge
node.kubernetes.io/instance-type r6id.24xlarge
node.kubernetes.io/instance-type r6id.2xlarge
node.kubernetes.io/instance-type r6id.32xlarge
node.kubernetes.io/instance-type r6id.4xlarge
node.kubernetes.io/instance-type r6id.8xlarge
node.kubernetes.io/instance-type r6id.large
node.kubernetes.io/instance-type r6id.metal
node.kubernetes.io/instance-type r6id.xlarge
node.kubernetes.io/instance-type r6idn.12xlarge
node.kubernetes.io/instance-type r6idn.16xlarge
node.kubernetes.io/instance-type r6idn.24xlarge
node.kubernetes.io/instance-type r6idn.2xlarge
node.kubernetes.io/instance-type r6idn.32xlarge
node.kubernetes.io/instance-type r6idn.4xlarge
node.kubernetes.io/instance-type r6idn.8xlarge
node.kubernetes.io/instance-type r6idn.large
node.kubernetes.io/instance-type r6idn.metal
node.kubernetes.io/instance-type r6idn.xlarge
node.kubernetes.io/instance-type r6in.12xlarge
node.kubernetes.io/instance-type r6in.16xlarge
node.kubernetes.io/instance-type r6in.24xlarge
node.kubernetes.io/instance-type r6in.2xlarge
node.kubernetes.io/instance-type r6in.32xlarge
node.kubernetes.io/instance-type r6in.4xlarge
node.kubernetes.io/instance-type r6in.8xlarge
node.kubernetes.io/instance-type r6in.large
node.kubernetes.io/instance-type r6in.metal
node.kubernetes.io/instance-type r6in.xlarge
node.kubernetes.io/instance-type r7a.12xlarge
node.kubernetes.io/instance-type r7a.16xlarge
node.kubernetes.io/instance-type r7a.24xlarge
node.kubernetes.io/instance-type r7a.2xlarge
node.kubernetes.io/instance-type r7a.32xlarge
node.kubernetes.io/instance-type r7a.48xlarge
node.kubernetes.io/instance-type r7a.4xlarge
node.kubernetes.io/instance-type r7a.8xlarge
node.kubernetes.io/instance-type r7a.large
node.kubernetes.io/instance-type r7a.medium
node.kubernetes.io/instance-type r7a.metal-48xl
node.kubernetes.io/instance-type r7a.xlarge
node.kubernetes.io/instance-type r7g.12xlarge
node.kubernetes.io/instance-type r7g.16xlarge
node.kubernetes.io/instance-type r7g.2xlarge
node.kubernetes.io/instance-type r7g.4xlarge
node.kubernetes.io/instance-type r7g.8xlarge
node.kubernetes.io/instance-type r7g.large
node.kubernetes.io/instance-type r7g.medium
node.kubernetes.io/instance-type r7g.metal
node.kubernetes.io/instance-type r7g.xlarge
node.kubernetes.io/instance-type r7gd.12xlarge
node.kubernetes.io/instance-type r7gd.16xlarge
node.kubernetes.io/instance-type r7gd.2xlarge
node.kubernetes.io/instance-type r7gd.4xlarge
node.kubernetes.io/instance-type r7gd.8xlarge
node.kubernetes.io/instance-type r7gd.large
node.kubernetes.io/instance-type r7gd.medium
node.kubernetes.io/instance-type r7gd.metal
node.kubernetes.io/instance-type r7gd.xlarge
node.kubernetes.io/instance-type r7i.12xlarge
node.kubernetes.io/instance-type r7i.16xlarge
node.kubernetes.io/instance-type r7i.24xlarge
node.kubernetes.io/instance-type r7i.2xlarge
node.kubernetes.io/instance-type r7i.48xlarge
node.kubernetes.io/instance-type r7i.4xlarge
node.kubernetes.io/instance-type r7i.8xlarge
node.kubernetes.io/instance-type r7i.large
node.kubernetes.io/instance-type r7i.metal-24xl
node.kubernetes.io/instance-type r7i.metal-48xl
node.kubernetes.io/instance-type r7i.xlarge
node.kubernetes.io/instance-type r7iz.12xlarge
node.kubernetes.io/instance-type r7iz.16xlarge
node.kubernetes.io/instance-type r7iz.2xlarge
node.kubernetes.io/instance-type r7iz.32xlarge
node.kubernetes.io/instance-type r7iz.4xlarge
node.kubernetes.io/instance-type r7iz.8xlarge
node.kubernetes.io/instance-type r7iz.large
node.kubernetes.io/instance-type r7iz.metal-16xl
node.kubernetes.io/instance-type r7iz.metal-32xl
node.kubernetes.io/instance-type r7iz.xlarge
node.kubernetes.io/instance-type r8g.12xlarge
node.kubernetes.io/instance-type r8g.16xlarge
node.kubernetes.io/instance-type r8g.24xlarge
node.kubernetes.io/instance-type r8g.2xlarge
node.kubernetes.io/instance-type r8g.48xlarge
node.kubernetes.io/instance-type r8g.4xlarge
node.kubernetes.io/instance-type r8g.8xlarge
node.kubernetes.io/instance-type r8g.large
node.kubernetes.io/instance-type r8g.medium
node.kubernetes.io/instance-type r8g.metal-24xl
node.kubernetes.io/instance-type r8g.metal-48xl
node.kubernetes.io/instance-type r8g.xlarge
node.kubernetes.io/instance-type t2.2xlarge
node.kubernetes.io/instance-type t2.large
node.kubernetes.io/instance-type t2.xlarge
node.kubernetes.io/instance-type t2a-standard-1
node.kubernetes.io/instance-type t2a-standard-16
node.kubernetes.io/instance-type t2a-standard-2
node.kubernetes.io/instance-type t2a-standard-32
node.kubernetes.io/instance-type t2a-standard-4
node.kubernetes.io/instance-type t2a-standard-48
node.kubernetes.io/instance-type t2a-standard-8
node.kubernetes.io/instance-type t2d-standard-1
node.kubernetes.io/instance-type t2d-standard-16
node.kubernetes.io/instance-type t2d-standard-2
node.kubernetes.io/instance-type t2d-standard-32
node.kubernetes.io/instance-type t2d-standard-4
node.kubernetes.io/instance-type t2d-standard-48
node.kubernetes.io/instance-type t2d-standard-60
node.kubernetes.io/instance-type t2d-standard-8
node.kubernetes.io/instance-type t3.2xlarge
node.kubernetes.io/instance-type t3.large
node.kubernetes.io/instance-type t3.medium
node.kubernetes.io/instance-type t3.micro
node.kubernetes.io/instance-type t3.nano
node.kubernetes.io/instance-type t3.small
node.kubernetes.io/instance-type t3.xlarge
node.kubernetes.io/instance-type t3a.2xlarge
node.kubernetes.io/instance-type t3a.large
node.kubernetes.io/instance-type t3a.medium
node.kubernetes.io/instance-type t3a.micro
node.kubernetes.io/instance-type t3a.nano
node.kubernetes.io/instance-type t3a.small
node.kubernetes.io/instance-type t3a.xlarge
node.kubernetes.io/instance-type t4g.2xlarge
node.kubernetes.io/instance-type t4g.large
node.kubernetes.io/instance-type t4g.medium
node.kubernetes.io/instance-type t4g.micro
node.kubernetes.io/instance-type t4g.nano
node.kubernetes.io/instance-type t4g.small
node.kubernetes.io/instance-type t4g.xlarge
node.kubernetes.io/instance-type trn1.2xlarge
node.kubernetes.io/instance-type trn1.32xlarge
node.kubernetes.io/instance-type trn1n.32xlarge
node.kubernetes.io/instance-type u-12tb1.112xlarge
node.kubernetes.io/instance-type u-18tb1.112xlarge
node.kubernetes.io/instance-type u-24tb1.112xlarge
node.kubernetes.io/instance-type u-3tb1.56xlarge
node.kubernetes.io/instance-type u-6tb1.112xlarge
node.kubernetes.io/instance-type u-6tb1.56xlarge
node.kubernetes.io/instance-type u-9tb1.112xlarge
node.kubernetes.io/instance-type u7i-12tb.224xlarge
node.kubernetes.io/instance-type u7in-16tb.224xlarge
node.kubernetes.io/instance-type u7in-24tb.224xlarge
node.kubernetes.io/instance-type u7in-32tb.224xlarge
node.kubernetes.io/instance-type vt1.24xlarge
node.kubernetes.io/instance-type vt1.3xlarge
node.kubernetes.io/instance-type vt1.6xlarge
node.kubernetes.io/instance-type x1.16xlarge
node.kubernetes.io/instance-type x1.32xlarge
node.kubernetes.io/instance-type x1e.16xlarge
node.kubernetes.io/instance-type x1e.2xlarge
node.kubernetes.io/instance-type x1e.32xlarge
node.kubernetes.io/instance-type x1e.4xlarge
node.kubernetes.io/instance-type x1e.8xlarge
node.kubernetes.io/instance-type x1e.xlarge
node.kubernetes.io/instance-type x2gd.12xlarge
node.kubernetes.io/instance-type x2gd.16xlarge
node.kubernetes.io/instance-type x2gd.2xlarge
node.kubernetes.io/instance-type x2gd.4xlarge
node.kubernetes.io/instance-type x2gd.8xlarge
node.kubernetes.io/instance-type x2gd.large
node.kubernetes.io/instance-type x2gd.medium
node.kubernetes.io/instance-type x2gd.metal
node.kubernetes.io/instance-type x2gd.xlarge
node.kubernetes.io/instance-type x2idn.16xlarge
node.kubernetes.io/instance-type x2idn.24xlarge
node.kubernetes.io/instance-type x2idn.32xlarge
node.kubernetes.io/instance-type x2idn.metal
node.kubernetes.io/instance-type x2iedn.16xlarge
node.kubernetes.io/instance-type x2iedn.24xlarge
node.kubernetes.io/instance-type x2iedn.2xlarge
node.kubernetes.io/instance-type x2iedn.32xlarge
node.kubernetes.io/instance-type x2iedn.4xlarge
node.kubernetes.io/instance-type x2iedn.8xlarge
node.kubernetes.io/instance-type x2iedn.metal
node.kubernetes.io/instance-type x2iedn.xlarge
node.kubernetes.io/instance-type x2iezn.12xlarge
node.kubernetes.io/instance-type x2iezn.2xlarge
node.kubernetes.io/instance-type x2iezn.4xlarge
node.kubernetes.io/instance-type x2iezn.6xlarge
node.kubernetes.io/instance-type x2iezn.8xlarge
node.kubernetes.io/instance-type x2iezn.metal
node.kubernetes.io/instance-type x4-megamem-1440-metal
node.kubernetes.io/instance-type x4-megamem-1920-metal
node.kubernetes.io/instance-type x4-megamem-960-metal
node.kubernetes.io/instance-type x8g.12xlarge
node.kubernetes.io/instance-type x8g.16xlarge
node.kubernetes.io/instance-type x8g.24xlarge
node.kubernetes.io/instance-type x8g.2xlarge
node.kubernetes.io/instance-type x8g.48xlarge
node.kubernetes.io/instance-type x8g.4xlarge
node.kubernetes.io/instance-type x8g.8xlarge
node.kubernetes.io/instance-type x8g.large
node.kubernetes.io/instance-type x8g.medium
node.kubernetes.io/instance-type x8g.metal-24xl
node.kubernetes.io/instance-type x8g.metal-48xl
node.kubernetes.io/instance-type x8g.xlarge
node.kubernetes.io/instance-type z1d.12xlarge
node.kubernetes.io/instance-type z1d.2xlarge
node.kubernetes.io/instance-type z1d.3xlarge
node.kubernetes.io/instance-type z1d.6xlarge
node.kubernetes.io/instance-type z1d.large
node.kubernetes.io/instance-type z1d.metal
node.kubernetes.io/instance-type z1d.xlarge
node.kubernetes.io/instance-type z3-highmem-176
node.kubernetes.io/instance-type z3-highmem-88
topology.kubernetes.io/region africa-south1
topology.kubernetes.io/region ap-northeast-1
topology.kubernetes.io/region ap-northeast-2
topology.kubernetes.io/region ap-northeast-3
topology.kubernetes.io/region ap-south-1
topology.kubernetes.io/region ap-southeast-1
topology.kubernetes.io/region ap-southeast-2
topology.kubernetes.io/region ash
topology.kubernetes.io/region asia-east1
topology.kubernetes.io/region asia-east2
topology.kubernetes.io/region asia-northeast1
topology.kubernetes.io/region asia-northeast2
topology.kubernetes.io/region asia-northeast3
topology.kubernetes.io/region asia-south1
topology.kubernetes.io/region asia-south2
topology.kubernetes.io/region asia-southeast1
topology.kubernetes.io/region asia-southeast2
topology.kubernetes.io/region australia-southeast1
topology.kubernetes.io/region australia-southeast2
topology.kubernetes.io/region ca-central-1
topology.kubernetes.io/region eu-central-1
topology.kubernetes.io/region eu-central-2
topology.kubernetes.io/region eu-north-1
topology.kubernetes.io/region eu-west-1
topology.kubernetes.io/region eu-west-2
topology.kubernetes.io/region eu-west-3
topology.kubernetes.io/region europe-central2
topology.kubernetes.io/region europe-north1
topology.kubernetes.io/region europe-southwest1
topology.kubernetes.io/region europe-west1
topology.kubernetes.io/region europe-west10
topology.kubernetes.io/region europe-west12
topology.kubernetes.io/region europe-west2
topology.kubernetes.io/region europe-west3
topology.kubernetes.io/region europe-west4
topology.kubernetes.io/region europe-west6
topology.kubernetes.io/region europe-west8
topology.kubernetes.io/region europe-west9
topology.kubernetes.io/region fsn1
topology.kubernetes.io/region hel1
topology.kubernetes.io/region hil
topology.kubernetes.io/region me-central1
topology.kubernetes.io/region me-central2
topology.kubernetes.io/region me-west1
topology.kubernetes.io/region nbg1
topology.kubernetes.io/region northamerica-northeast1
topology.kubernetes.io/region northamerica-northeast2
topology.kubernetes.io/region sa-east-1
topology.kubernetes.io/region sin
topology.kubernetes.io/region southamerica-east1
topology.kubernetes.io/region southamerica-west1
topology.kubernetes.io/region us-central1
topology.kubernetes.io/region us-east-1
topology.kubernetes.io/region us-east-2
topology.kubernetes.io/region us-east1
topology.kubernetes.io/region us-east4
topology.kubernetes.io/region us-east5
topology.kubernetes.io/region us-south1
topology.kubernetes.io/region us-west-1
topology.kubernetes.io/region us-west-2
topology.kubernetes.io/region us-west1
topology.kubernetes.io/region us-west2
topology.kubernetes.io/region us-west3
topology.kubernetes.io/region us-west4
topology.kubernetes.io/zone africa-south1-a
topology.kubernetes.io/zone africa-south1-b
topology.kubernetes.io/zone africa-south1-c
topology.kubernetes.io/zone apne1-az1
topology.kubernetes.io/zone apne1-az2
topology.kubernetes.io/zone apne1-az4
topology.kubernetes.io/zone apne2-az1
topology.kubernetes.io/zone apne2-az2
topology.kubernetes.io/zone apne2-az3
topology.kubernetes.io/zone apne2-az4
topology.kubernetes.io/zone apne3-az1
topology.kubernetes.io/zone apne3-az2
topology.kubernetes.io/zone apne3-az3
topology.kubernetes.io/zone aps1-az1
topology.kubernetes.io/zone aps1-az2
topology.kubernetes.io/zone aps1-az3
topology.kubernetes.io/zone apse1-az1
topology.kubernetes.io/zone apse1-az2
topology.kubernetes.io/zone apse1-az3
topology.kubernetes.io/zone apse2-az1
topology.kubernetes.io/zone apse2-az2
topology.kubernetes.io/zone apse2-az3
topology.kubernetes.io/zone ash
topology.kubernetes.io/zone asia-east1-a
topology.kubernetes.io/zone asia-east1-b
topology.kubernetes.io/zone asia-east1-c
topology.kubernetes.io/zone asia-east2-a
topology.kubernetes.io/zone asia-east2-b
topology.kubernetes.io/zone asia-east2-c
topology.kubernetes.io/zone asia-northeast1-a
topology.kubernetes.io/zone asia-northeast1-b
topology.kubernetes.io/zone asia-northeast1-c
topology.kubernetes.io/zone asia-northeast2-a
topology.kubernetes.io/zone asia-northeast2-b
topology.kubernetes.io/zone asia-northeast2-c
topology.kubernetes.io/zone asia-northeast3-a
topology.kubernetes.io/zone asia-northeast3-b
topology.kubernetes.io/zone asia-northeast3-c
topology.kubernetes.io/zone asia-south1-a
topology.kubernetes.io/zone asia-south1-b
topology.kubernetes.io/zone asia-south1-c
topology.kubernetes.io/zone asia-south2-a
topology.kubernetes.io/zone asia-south2-b
topology.kubernetes.io/zone asia-south2-c
topology.kubernetes.io/zone asia-southeast1-a
topology.kubernetes.io/zone asia-southeast1-b
topology.kubernetes.io/zone asia-southeast1-c
topology.kubernetes.io/zone asia-southeast2-a
topology.kubernetes.io/zone asia-southeast2-b
topology.kubernetes.io/zone asia-southeast2-c
topology.kubernetes.io/zone australia-southeast1-a
topology.kubernetes.io/zone australia-southeast1-b
topology.kubernetes.io/zone australia-southeast1-c
topology.kubernetes.io/zone australia-southeast2-a
topology.kubernetes.io/zone australia-southeast2-b
topology.kubernetes.io/zone australia-southeast2-c
topology.kubernetes.io/zone cac1-az1
topology.kubernetes.io/zone cac1-az2
topology.kubernetes.io/zone cac1-az4
topology.kubernetes.io/zone euc1-az1
topology.kubernetes.io/zone euc1-az2
topology.kubernetes.io/zone euc1-az3
topology.kubernetes.io/zone euc2-az1
topology.kubernetes.io/zone euc2-az2
topology.kubernetes.io/zone euc2-az3
topology.kubernetes.io/zone eun1-az1
topology.kubernetes.io/zone eun1-az2
topology.kubernetes.io/zone eun1-az3
topology.kubernetes.io/zone europe-central2-a
topology.kubernetes.io/zone europe-central2-b
topology.kubernetes.io/zone europe-central2-c
topology.kubernetes.io/zone europe-north1-a
topology.kubernetes.io/zone europe-north1-b
topology.kubernetes.io/zone europe-north1-c
topology.kubernetes.io/zone europe-southwest1-a
topology.kubernetes.io/zone europe-southwest1-b
topology.kubernetes.io/zone europe-southwest1-c
topology.kubernetes.io/zone europe-west1-b
topology.kubernetes.io/zone europe-west1-c
topology.kubernetes.io/zone europe-west1-d
topology.kubernetes.io/zone europe-west10-a
topology.kubernetes.io/zone europe-west10-b
topology.kubernetes.io/zone europe-west10-c
topology.kubernetes.io/zone europe-west12-a
topology.kubernetes.io/zone europe-west12-b
topology.kubernetes.io/zone europe-west12-c
topology.kubernetes.io/zone europe-west2-a
topology.kubernetes.io/zone europe-west2-b
topology.kubernetes.io/zone europe-west2-c
topology.kubernetes.io/zone europe-west3-a
topology.kubernetes.io/zone europe-west3-b
topology.kubernetes.io/zone europe-west3-c
topology.kubernetes.io/zone europe-west4-a
topology.kubernetes.io/zone europe-west4-b
topology.kubernetes.io/zone europe-west4-c
topology.kubernetes.io/zone europe-west6-a
topology.kubernetes.io/zone europe-west6-b
topology.kubernetes.io/zone europe-west6-c
topology.kubernetes.io/zone europe-west8-a
topology.kubernetes.io/zone europe-west8-b
topology.kubernetes.io/zone europe-west8-c
topology.kubernetes.io/zone europe-west9-a
topology.kubernetes.io/zone europe-west9-b
topology.kubernetes.io/zone europe-west9-c
topology.kubernetes.io/zone euw1-az1
topology.kubernetes.io/zone euw1-az2
topology.kubernetes.io/zone euw1-az3
topology.kubernetes.io/zone euw2-az1
topology.kubernetes.io/zone euw2-az2
topology.kubernetes.io/zone euw2-az3
topology.kubernetes.io/zone euw3-az1
topology.kubernetes.io/zone euw3-az2
topology.kubernetes.io/zone euw3-az3
topology.kubernetes.io/zone fsn1
topology.kubernetes.io/zone hel1
topology.kubernetes.io/zone hil
topology.kubernetes.io/zone me-central1-a
topology.kubernetes.io/zone me-central1-b
topology.kubernetes.io/zone me-central1-c
topology.kubernetes.io/zone me-central2-a
topology.kubernetes.io/zone me-central2-b
topology.kubernetes.io/zone me-central2-c
topology.kubernetes.io/zone me-west1-a
topology.kubernetes.io/zone me-west1-b
topology.kubernetes.io/zone me-west1-c
topology.kubernetes.io/zone nan
topology.kubernetes.io/zone nbg1
topology.kubernetes.io/zone northamerica-northeast1-a
topology.kubernetes.io/zone northamerica-northeast1-b
topology.kubernetes.io/zone northamerica-northeast1-c
topology.kubernetes.io/zone northamerica-northeast2-a
topology.kubernetes.io/zone northamerica-northeast2-b
topology.kubernetes.io/zone northamerica-northeast2-c
topology.kubernetes.io/zone sae1-az1
topology.kubernetes.io/zone sae1-az2
topology.kubernetes.io/zone sae1-az3
topology.kubernetes.io/zone sin
topology.kubernetes.io/zone southamerica-east1-a
topology.kubernetes.io/zone southamerica-east1-b
topology.kubernetes.io/zone southamerica-east1-c
topology.kubernetes.io/zone southamerica-west1-a
topology.kubernetes.io/zone southamerica-west1-b
topology.kubernetes.io/zone southamerica-west1-c
topology.kubernetes.io/zone us-central1-a
topology.kubernetes.io/zone us-central1-b
topology.kubernetes.io/zone us-central1-c
topology.kubernetes.io/zone us-central1-f
topology.kubernetes.io/zone us-east1-b
topology.kubernetes.io/zone us-east1-c
topology.kubernetes.io/zone us-east1-d
topology.kubernetes.io/zone us-east4-a
topology.kubernetes.io/zone us-east4-b
topology.kubernetes.io/zone us-east4-c
topology.kubernetes.io/zone us-east5-a
topology.kubernetes.io/zone us-east5-b
topology.kubernetes.io/zone us-east5-c
topology.kubernetes.io/zone us-south1-a
topology.kubernetes.io/zone us-south1-b
topology.kubernetes.io/zone us-south1-c
topology.kubernetes.io/zone us-west1-a
topology.kubernetes.io/zone us-west1-b
topology.kubernetes.io/zone us-west1-c
topology.kubernetes.io/zone us-west2-a
topology.kubernetes.io/zone us-west2-b
topology.kubernetes.io/zone us-west2-c
topology.kubernetes.io/zone us-west3-a
topology.kubernetes.io/zone us-west3-b
topology.kubernetes.io/zone us-west3-c
topology.kubernetes.io/zone us-west4-a
topology.kubernetes.io/zone us-west4-b
topology.kubernetes.io/zone us-west4-c
topology.kubernetes.io/zone use1-az1
topology.kubernetes.io/zone use1-az2
topology.kubernetes.io/zone use1-az3
topology.kubernetes.io/zone use1-az4
topology.kubernetes.io/zone use1-az5
topology.kubernetes.io/zone use1-az6
topology.kubernetes.io/zone use2-az1
topology.kubernetes.io/zone use2-az2
topology.kubernetes.io/zone use2-az3
topology.kubernetes.io/zone usw1-az1
topology.kubernetes.io/zone usw1-az3
topology.kubernetes.io/zone usw2-az1
topology.kubernetes.io/zone usw2-az2
topology.kubernetes.io/zone usw2-az3
topology.kubernetes.io/zone usw2-az4