gcloud-*: update pages
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
parent
3de0d4d353
commit
f4bd1493ff
|
|
@ -1,13 +1,14 @@
|
|||
# gcloud config
|
||||
|
||||
> Personalize your `gcloud` CLI configuration with properties.
|
||||
> Personalize your `gcloud` configuration with properties.
|
||||
> See also: `gcloud`.
|
||||
> More information: <https://cloud.google.com/sdk/gcloud/reference/config>.
|
||||
|
||||
- Define a property (like compute/zone) for the current configuration:
|
||||
|
||||
`gcloud config set {{property}} {{value}}`
|
||||
|
||||
- Fetch the value of a gcloud CLI property:
|
||||
- Fetch the value of a `gcloud` property:
|
||||
|
||||
`gcloud config get {{property}}`
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,25 @@
|
|||
# gcloud container
|
||||
|
||||
> Manage containerized applications on Kubernetes and clusters.
|
||||
> See also: `gcloud`.
|
||||
> More information: <https://cloud.google.com/sdk/gcloud/reference/container>.
|
||||
|
||||
- Register `gcloud` as a Docker credential helper:
|
||||
|
||||
`gcloud auth configure-docker`
|
||||
|
||||
- Create a cluster to run GKE containers:
|
||||
|
||||
`gcloud container clusters create {{cluster_name}}`
|
||||
|
||||
- List clusters for running GKE containers:
|
||||
|
||||
`gcloud container clusters list`
|
||||
|
||||
- Update kubeconfig to get `kubectl` to use a GKE cluster:
|
||||
|
||||
`gcloud container clusters get-credentials {{cluster_name}}`
|
||||
|
||||
- List tag and digest metadata for a container image:
|
||||
|
||||
`gcloud container images list-tags {{image}}`
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
# gcloud cli docker and google kubernetes engine
|
||||
|
||||
> Manage containerized applications on Kubernetes.
|
||||
> More information: <https://cloud.google.com/sdk/docs/cheatsheet#docker>.
|
||||
|
||||
- Register the gcloud CLI as a Docker credential helper:
|
||||
|
||||
`gcloud auth configure-docker`
|
||||
|
||||
- Create a cluster to run GKE containers:
|
||||
|
||||
`gcloud container clusters create`
|
||||
|
||||
- List clusters for running GKE containers:
|
||||
|
||||
`gcloud container clusters list`
|
||||
|
||||
- Update kubeconfig to get kubectl to use a GKE cluster:
|
||||
|
||||
`gcloud container clusters get-credentials`
|
||||
|
||||
- List tag and digest metadata for a container image:
|
||||
|
||||
`gcloud container images list-tags`
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# gcloud help
|
||||
|
||||
> Provide feedback to the Google Cloud team.
|
||||
> See also: `gcloud`.
|
||||
> More information: <https://cloud.google.com/sdk/gcloud/reference/feedback>.
|
||||
|
||||
- Provide feedback to the `gcloud` team:
|
||||
|
||||
`gcloud feedback`
|
||||
|
||||
- Provide feedback to the `gcloud` team, including a log file:
|
||||
|
||||
`gcloud feedback --log-file {{log_file}}`
|
||||
|
|
@ -1,16 +1,12 @@
|
|||
# gcloud cli help
|
||||
# gcloud help
|
||||
|
||||
> Display help information and support for `gcloud`.
|
||||
> More information: <https://cloud.google.com/sdk/docs/cheatsheet#help>.
|
||||
> Display help and reference information for `gcloud`.
|
||||
> More information: <https://cloud.google.com/sdk/gcloud/reference/help>.
|
||||
|
||||
- Search the gcloud CLI reference documents for specific terms:
|
||||
- Search the `gcloud` CLI reference documents for specific terms:
|
||||
|
||||
`gcloud help`
|
||||
|
||||
- Provide feedback to the gcloud CLI team:
|
||||
|
||||
`gcloud feedback`
|
||||
|
||||
- Supplementary help material for non-command topics like accessibility, filtering, and formatting:
|
||||
- View supplementary help material for non-command topics like accessibility, filtering, and formatting:
|
||||
|
||||
`gcloud topic`
|
||||
|
|
|
|||
Loading…
Reference in New Issue