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

BareMetalNodePoolConfig

import type { BareMetalNodePoolConfig } from "https://googleapis.deno.dev/v1/gkeonprem:v1.ts";

BareMetalNodePoolConfig describes the configuration of all nodes within a given bare metal node pool.

interface BareMetalNodePoolConfig {
kubeletConfig?: BareMetalKubeletConfig;
labels?: {
[key: string]: string;
}
;
nodeConfigs?: BareMetalNodeConfig[];
operatingSystem?: "OPERATING_SYSTEM_UNSPECIFIED" | "LINUX";
taints?: NodeTaint[];
}

§Properties

§

The modifiable kubelet configurations for the bare metal machines.

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

The labels assigned to nodes of this node pool. An object containing a list of key/value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

§
nodeConfigs?: BareMetalNodeConfig[]
[src]

Required. The list of machine addresses in the bare metal node pool.

§
operatingSystem?: "OPERATING_SYSTEM_UNSPECIFIED" | "LINUX"
[src]

Specifies the nodes operating system (default: LINUX).

§
taints?: NodeTaint[]
[src]

The initial taints assigned to nodes of this node pool.