1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-20 04:58:26 +00:00

gcloud: Wed Jul 12 10:20:16 UTC 2023

This commit is contained in:
Automated 2023-07-12 10:20:16 +00:00
parent f52bc665a7
commit b4c2508b12
300 changed files with 7469 additions and 3231 deletions

View file

@ -197,7 +197,7 @@ FLAGS
ADDON must be one of: HttpLoadBalancing, HorizontalPodAutoscaling,
KubernetesDashboard, NetworkPolicy, NodeLocalDNS, ConfigConnector,
GcePersistentDiskCsiDriver, GcpFilestoreCsiDriver, BackupRestore,
CloudRun.
GcsFuseCsiDriver, CloudRun.
--async
Return immediately, without waiting for the operation in progress to
@ -1115,6 +1115,8 @@ FLAGS
Selects Cloud DNS as the DNS provider for the cluster.
default
Selects the default DNS provider (kube-dns) for the cluster.
kubedns
Selects Kube DNS as the DNS provider for the cluster.
--cluster-dns-domain=CLUSTER_DNS_DOMAIN
DNS domain for this cluster. The default value is cluster.local. This

View file

@ -531,6 +531,7 @@ REQUIRED FLAGS
ConfigConnector=ENABLED|DISABLED NodeLocalDNS=ENABLED|DISABLED
GcePersistentDiskCsiDriver=ENABLED|DISABLED
GcpFilestoreCsiDriver=ENABLED|DISABLED
GcsFuseCsiDriver=ENABLED|DISABLED
--update-labels=[KEY=VALUE,...]
Labels to apply to the Google Cloud resources in use by the
@ -756,6 +757,8 @@ REQUIRED FLAGS
Selects Cloud DNS as the DNS provider for the cluster.
default
Selects the default DNS provider (kube-dns) for the cluster.
kubedns
Selects Kube DNS as the DNS provider for the cluster.
--cluster-dns-domain=CLUSTER_DNS_DOMAIN
DNS domain for this cluster. The default value is cluster.local.

View file

@ -28,6 +28,8 @@ DESCRIPTION
To register a GKE cluster, use --gke-cluster or --gke-uri flag (no
--kubeconfig flag is required). Connect agent will not be installed by
default for GKE clusters. To install it, specify --install-connect-agent.
The default value for --location is the same as the cluster's region or
zone, can be specified as global.
Anthos clusters on VMware, bare metal, AWS, and Azure are registered with a
fleet when the clusters are created. To register Amazon EKS clusters, see
@ -77,7 +79,7 @@ EXAMPLES
--service-account-key-file=/tmp/keyfile.json
Register a non-GKE cluster and output a manifest that can be used to
install the Connect agent:
install the Connect agent by kubectl:
$ gcloud container fleet memberships register my-cluster \
--context=my-cluster-context \
@ -96,6 +98,14 @@ EXAMPLES
--gke-uri=my-cluster-gke-uri --install-connect-agent \
--service-account-key-file=/tmp/keyfile.json
Register a GKE cluster and output a manifest that can be used to install
the Connect agent by kubectl:
$ gcloud container fleet memberships register my-cluster \
--gke-uri=my-cluster-gke-uri --enable-workload-identity \
--install-connect-agent \
--manifest-output-file=/tmp/manifest.yaml
Register a GKE cluster first, and install the Connect agent later.
$ gcloud container fleet memberships register my-cluster \

View file

@ -27,6 +27,8 @@ DESCRIPTION
To register a GKE cluster, use --gke-cluster or --gke-uri flag (no
--kubeconfig flag is required). Connect agent will not be installed by
default for GKE clusters. To install it, specify --install-connect-agent.
The default value for --location is the same as the cluster's region or
zone, can be specified as global.
Anthos clusters on VMware, bare metal, AWS, and Azure are registered with a
fleet when the clusters are created. To register Amazon EKS clusters, see
@ -76,7 +78,7 @@ EXAMPLES
--service-account-key-file=/tmp/keyfile.json
Register a non-GKE cluster and output a manifest that can be used to
install the Connect agent:
install the Connect agent by kubectl:
$ gcloud container hub memberships register my-cluster \
--context=my-cluster-context \
@ -95,6 +97,14 @@ EXAMPLES
--gke-uri=my-cluster-gke-uri --install-connect-agent \
--service-account-key-file=/tmp/keyfile.json
Register a GKE cluster and output a manifest that can be used to install
the Connect agent by kubectl:
$ gcloud container hub memberships register my-cluster \
--gke-uri=my-cluster-gke-uri --enable-workload-identity \
--install-connect-agent \
--manifest-output-file=/tmp/manifest.yaml
Register a GKE cluster first, and install the Connect agent later.
$ gcloud container hub memberships register my-cluster \