Kubernetes/Container 引擎 HTTP API 用于创建 pods
Kubernetes/Container engine HTTP API for creating pods
我需要使用 HTTP 创建 pods。
我使用以下方法创建了集群:
gcloud preview container clusters create
我可以使用以下方法创建 pod:
gcloud preview container pods create
但这不是我想要的。我想通过 http API 使用我的应用程序实例创建 pods。
API 我可以在其中创建集群。但是我需要这样的东西来创建 pods。可能吗?
这与 (昨天问的)基本相同,答案也相同:
在 Google 容器引擎上启动容器集群后,您将在 GCP 项目的虚拟机上拥有一个主 运行 kubernetes API。您可以通过 kubectl command line client 与其交互,或者您可以使用 gcloud 提取集群的凭据,并使用 master 公开的 REST API 进行 HTTPS(但不是 HTTP)调用。
我需要使用 HTTP 创建 pods。
我使用以下方法创建了集群:
gcloud preview container clusters create
我可以使用以下方法创建 pod:
gcloud preview container pods create
但这不是我想要的。我想通过 http API 使用我的应用程序实例创建 pods。
API 我可以在其中创建集群。但是我需要这样的东西来创建 pods。可能吗?
这与
在 Google 容器引擎上启动容器集群后,您将在 GCP 项目的虚拟机上拥有一个主 运行 kubernetes API。您可以通过 kubectl command line client 与其交互,或者您可以使用 gcloud 提取集群的凭据,并使用 master 公开的 REST API 进行 HTTPS(但不是 HTTP)调用。