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..dbffc048e5
--- /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 - Kubernetes Gateway Spec Features
+
+The Consul API Gateway currently supports a subset of the Kubernetes [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 [documentation in our GitHub repo](https://github.com/hashicorp/consul-api-gateway/blob/main/dev/docs/supported-features.md).
+
+| Kubernetes Object | Features |
+| ----- | ----------------------------- |
+| [`GatewayClass`](https://gateway-api.sigs.k8s.io/v1alpha2/references/spec/#gateway.networking.k8s.io/v1alpha2.GatewayClass) |
- Parameter specification via `GatewayClassConfig` CRD
- Controller matching on `"hashicorp.com/consul-api-gateway-controller"`
|
+| [`Gateway`](https://gateway-api.sigs.k8s.io/v1alpha2/references/spec/#gateway.networking.k8s.io/v1alpha2.Gateway) | - Supported protocols: `HTTP`, `HTTPS`, `TCP`
- Header-based hostname matching (no SNI support)
- Supported filters: header addition, removal, and setting
- TLS modes supported: `terminate`
- Certificate types supported: `core/v1/Secret`
- Extended options: TLS version and cipher constraints
|
+| [`HTTPRoute`](https://gateway-api.sigs.k8s.io/v1alpha2/references/spec/#gateway.networking.k8s.io/v1alpha2.HTTPRoute) | - Weight-based load balancing
- Supported rules: path, header, query, and method-based matching
- Supported filters: header addition, removal, and setting
- Supported backend types:
- `core/v1/Service` (must map to a registered Consul service)
- `api-gateway.consul.hashicorp.com/v1alpha1/MeshService`
|
+| [`TCPRoute`](https://gateway-api.sigs.k8s.io/v1alpha2/references/spec/#gateway.networking.k8s.io/v1alpha2.TCPRoute) | - Supported backend types:
- `core/v1/Service` (must map to a registered Consul service)
- `api-gateway.consul.hashicorp.com/v1alpha1/MeshService`
|
\ 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"
}
]
},