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.