From 5b91a799e127056a240bc1dcf75f80552a6ca21d Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 18 May 2018 19:22:50 +0200 Subject: [PATCH] Hugo: Fix table layouts (#8487) The tables are broken, fix them. Closes: #8484 --- content/en/docs/concepts/overview/kubernetes-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/concepts/overview/kubernetes-api.md b/content/en/docs/concepts/overview/kubernetes-api.md index 589133e9da..dda6661ab3 100644 --- a/content/en/docs/concepts/overview/kubernetes-api.md +++ b/content/en/docs/concepts/overview/kubernetes-api.md @@ -31,14 +31,14 @@ Starting with Kubernetes 1.10, OpenAPI spec is served in a single `/openapi/v2` Requested format is specified by setting HTTP headers: Header | Possible Values --- | -- +------ | -------------- Accept | `application/json`, `application/com.github.proto-openapi.spec.v2@v1.0+protobuf` (the default content-type is `application/json` for `*/*` or not passing this header) Accept-Encoding | `gzip` (not passing this header is acceptable) **Examples of getting OpenAPI spec**: Before 1.10 | Starting with Kubernetes 1.10 --- | -- +----------- | ----------------------------- GET /swagger.json | GET /openapi/v2 **Accept**: application/json GET /swagger-2.0.0.pb-v1 | GET /openapi/v2 **Accept**: application/com.github.proto-openapi.spec.v2@v1.0+protobuf GET /swagger-2.0.0.pb-v1.gz | GET /openapi/v2 **Accept**: application/com.github.proto-openapi.spec.v2@v1.0+protobuf **Accept-Encoding**: gzip