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

GkeCluster

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

Information specifying a GKE Cluster.

interface GkeCluster {
cluster?: string;
dnsEndpoint?: boolean;
internalIp?: boolean;
proxyUrl?: string;
}

§Properties

§
cluster?: string
[src]

Optional. Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.

§
dnsEndpoint?: boolean
[src]

Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both dns_endpoint and internal_ip cannot be set to true.

§
internalIp?: boolean
[src]

Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster. Note that internal_ip and dns_endpoint cannot both be set to true.

§
proxyUrl?: string
[src]

Optional. If set, used to configure a proxy to the Kubernetes server.