如何在Google Container Engine上运行私有Docker映像

如何运行在Google Container Engine本地构建的docker映像?

回答:

您可以将图片推送到Google Container Registry并从pod清单中引用它们。

回答:

假设您进行了DOCKER_HOST正确的设置,则安装了运行最新版本的Kubernetes和Google Cloud

SDK的GKE集群。

  1. 设置一些环境变量

    gcloud components update kubectl

gcloud config set project <your-project>

gcloud config set compute/zone <your-cluster-zone>

gcloud config set container/cluster <your-cluster-name>

gcloud container clusters get-credentials <your-cluster-name>

  1. 标记您的图片

    docker tag <your-image> gcr.io/<your-project>/<your-image>

  2. 推你的形象

    gcloud docker push gcr.io/<your-project>/<your-image>

  3. 为您的容器创建一个容器清单: my-pod.yaml

        id: my-pod

kind: Pod

apiVersion: v1

desiredState:

manifest:

containers:

- name: <container-name>

image: gcr.io/<your-project>/<your-image>

...

  1. 安排此吊舱

    kubectl create -f my-pod.yaml

  2. 对要运行的每个窗格重复步骤(4)。您可以使用带有---分隔符的行在单个文件中具有多个定义。

以上是 如何在Google Container Engine上运行私有Docker映像 的全部内容, 来源链接: utcz.com/qa/402729.html

回到顶部