Kubernetes supports OpenAPI

Editor’s note: this post is part of a series of in-depth articles on what’s new in Kubernetes 1.5 OpenAPI allows API providers to define their operations and models, and enables developers to automate their tools and generate their favorite language’s client to talk to that API server. Kubernetes has supported swagger 1.2 (older version of OpenAPI spec) for a while, but the spec was incomplete and invalid, making it hard to generate tools/clients based on it. In Kubernetes 1.4, we introduced alpha support for the OpenAPI spec (formerly known as swagger 2.0 before it was donated to the Open API Initiative) by upgrading the current models and operations. Beginning in Kubernetes 1.5, the support for the OpenAPI spec has been completed by auto-generating the spec directly from Kubernetes source, which will keep the spec–and documentation–completely in sync with future changes in operations/models.The new spec enables us to have better API documentation and we have even introduced a supported python client.The spec is modular, divided by GroupVersion: this is future-proof, since we intend to allow separate GroupVersions to be served out of separate API servers.The structure of spec is explained in detail in OpenAPI spec definition. We used operation’s tags to separate each GroupVersion and filled as much information as we can about paths/operations and models. For a specific operation, all parameters, method of call, and responses are documented. For example, OpenAPI spec for reading a pod information is:{…  “paths”: {“/api/v1/namespaces/{namespace}/pods/{name}”: {    “get”: {     “description”: “read the specified Pod”,     “consumes”: [      “*/*”     ],     “produces”: [      “application/json”,      “application/yaml”,      “application/vnd.kubernetes.protobuf”     ],     “schemes”: [      “https”     ],     “tags”: [      “core_v1″     ],     “operationId”: “readCoreV1NamespacedPod”,     “parameters”: [      {       “uniqueItems”: true,       “type”: “boolean”,       “description”: “Should the export be exact.  Exact export maintains cluster-specific fields like ‘Namespace’.”,       “name”: “exact”,       “in”: “query”      },      {       “uniqueItems”: true,       “type”: “boolean”,       “description”: “Should this value be exported.  Export strips fields that a user can not specify.”,       “name”: “export”,       “in”: “query”      }     ],     “responses”: {      “200”: {       “description”: “OK”,       “schema”: {        “$ref”: “#/definitions/v1.Pod”       }      },      “401”: {       “description”: “Unauthorized”      }     }    },…}…Using this information and the URL of `kube-apiserver`, one should be able to make the call to the given url (/api/v1/namespaces/{namespace}/pods/{name}) with parameters such as `name`, `exact`, `export`, etc. to get pod’s information. Client libraries generators would also use this information to create an API function call for reading pod’s information. For example, python client makes it easy to call this operation like this:from kubernetes import clientret = client.CoreV1Api().read_namespaced_pod(name=”pods_name”, namespace=”default”)A simplified version of generated read_namespaced_pod, can be found here.Swagger-codegen document generator would also be able to create documentation using the same information:GET /api/v1/namespaces/{namespace}/pods/{name}(readCoreV1NamespacedPod)read the specified PodPath parametersname (required)Path Parameter — name of the Podnamespace (required)Path Parameter — object name and auth scope, such as for teams and projectsConsumesThis API call consumes the following media types via the Content-Type request header:*/*Query parameterspretty (optional)Query Parameter — If ‘true’, then the output is pretty printed.exact (optional)Query Parameter — Should the export be exact. Exact export maintains cluster-specific fields like ‘Namespace’.export (optional)Query Parameter — Should this value be exported. Export strips fields that a user can not specify.Return typev1.PodProducesThis API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.application/jsonapplication/yamlapplication/vnd.kubernetes.protobufResponses200OK v1.Pod401UnauthorizedThere are two ways to access OpenAPI spec:From `kuber-apiserver`/swagger.json. This file will have all enabled GroupVersions routes and models and would be most up-to-date file with an specific `kube-apiserver`.From Kubernetes GitHub repository with all core GroupVersions enabled. You can access it on master or an specific release (for example 1.5 release).There are numerous tools that works with this spec. For example, you can use the swagger editor to open the spec file and render documentation, as well as generate clients; or you can directly use swagger codegen to generate documentation and clients. The clients this generates will mostly work out of the box–but you will need some support for authorization and some Kubernetes specific utilities. Use python client as a template to create your own client. If you want to get involved in development of OpenAPI support, client libraries, or report a bug, you can get in touch with developers at SIG-API-Machinery.–Mehdy Bohlool, Software Engineer, GoogleDownload KubernetesGet involved with the Kubernetes project on GitHub Post questions (or answer questions) on Stack Overflow Connect with the community on SlackFollow us on Twitter @Kubernetesio for latest updates
Quelle: kubernetes

Published by