From 51225a3476fe174001c5dc8762b5a2bd097d43be Mon Sep 17 00:00:00 2001 From: Andrew Stucki Date: Wed, 23 Feb 2022 11:15:58 -0500 Subject: [PATCH] Add k8s features --- .../docs/api-gateway/kubernetes-features.mdx | 19 +++++++++++++++++++ website/data/docs-nav-data.json | 4 ++++ 2 files changed, 23 insertions(+) create mode 100644 website/content/docs/api-gateway/kubernetes-features.mdx diff --git a/website/content/docs/api-gateway/kubernetes-features.mdx b/website/content/docs/api-gateway/kubernetes-features.mdx new file mode 100644 index 0000000000..5a6ac52383 --- /dev/null +++ b/website/content/docs/api-gateway/kubernetes-features.mdx @@ -0,0 +1,19 @@ +--- +layout: docs +page_title: Consul API Gateway Supported Kubernetes Features +description: >- + Consul API Gateway Supported Kubernetes Features. +--- + +# Consul API Gateway - Gateway Spec Features + +The Consul API Gateway currently supports a subset of the [v1alpha2 Gateway API Spec](https://gateway-api.sigs.k8s.io/v1alpha2/references/spec/). The table below +specifies the supported features of the spec. For a full list of features, including the list of gateway and route statuses and an explanation on how they +are used, see the [in-repo documentation](https://github.com/hashicorp/consul-api-gateway/blob/main/dev/docs/supported-features.md). + +| Kubernetes Object | Features | +| ----- | ----------------------------- | +| `GatewayClass` | | +| `Gateway` | | +| `HTTPRoute` | | +| `TCPRoute` | | \ No newline at end of file diff --git a/website/data/docs-nav-data.json b/website/data/docs-nav-data.json index 51077a327b..a18c3be902 100644 --- a/website/data/docs-nav-data.json +++ b/website/data/docs-nav-data.json @@ -384,6 +384,10 @@ { "title": "Technical Specifications", "path": "api-gateway/tech-specs" + }, + { + "title": "Supported Kubernetes Features", + "path": "api-gateway/kubernetes-features" } ] },