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

NodeTaint

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

NodeTaint applied to every Kubernetes node in a node pool. Kubernetes taints can be used together with tolerations to control how workloads are scheduled to your nodes. Node taints are permanent.

interface NodeTaint {
effect?:
| "EFFECT_UNSPECIFIED"
| "NO_SCHEDULE"
| "PREFER_NO_SCHEDULE"
| "NO_EXECUTE";
key?: string;
value?: string;
}

§Properties

§
effect?: "EFFECT_UNSPECIFIED" | "NO_SCHEDULE" | "PREFER_NO_SCHEDULE" | "NO_EXECUTE"
[src]

The taint effect.

§
key?: string
[src]

Key associated with the effect.

§
value?: string
[src]

Value associated with the effect.