29 lines
753 B
Markdown
29 lines
753 B
Markdown
# gcloud 容器
|
|
|
|
> 管理 Kubernetes 和集群上的容器化应用程序。
|
|
> 另见:`gcloud`。
|
|
> 更多信息:<https://cloud.google.com/sdk/gcloud/reference/container>。
|
|
|
|
- 将 `gcloud` 注册为 Docker 凭证助手:
|
|
|
|
`gcloud auth configure-docker`
|
|
|
|
- 创建一个集群以运行 GKE 容器:
|
|
|
|
`gcloud container clusters create {{cluster_name}}`
|
|
|
|
- 列出运行 GKE 容器的集群:
|
|
|
|
`gcloud container clusters list`
|
|
|
|
- 更新 kubeconfig 以使 `kubectl` 使用 GKE 集群:
|
|
|
|
`gcloud container clusters get-credentials {{cluster_name}}`
|
|
|
|
- 列出容器镜像的标签和摘要元数据:
|
|
|
|
`gcloud container images list-tags {{image}}`
|
|
|
|
- 描述一个现有的运行容器的集群:
|
|
|
|
`gcloud container clusters describe {{cluster_name}}` |