Python 的 API 客户端库是否支持在 google 容器引擎上创建和删除 pod 和作业?
问问题
427 次
2 回答
5
鉴于 Kubernetes 带有 Swagger 规范(1.2,不是最新版本),您可以使用 swagger-codegen 为其生成 Python API 客户端。
这是使用https://generator.swagger.io生成 Python API 客户端的示例:
curl -X POST -H "content-type:application/json" -d '{"swaggerUrl":"https://raw.githubusercontent.com/kubernetes/kubernetes/master/api/swagger-spec/v1.json"}' https://generator.swagger.io/api/gen/clients/python
它返回一个带有 URL 的 JSON,以下载压缩的 Python API 客户端。
参考:https ://github.com/swagger-api/swagger-codegen#online-generators
如果您需要 swagger codegen 或 Python API 客户端方面的帮助,请通过https://github.com/swagger-api/swagger-codegen/issues开票
于 2016-01-04T08:13:06.733 回答