Single-claim install of the Kubernetes Gateway API CRDs (gateway.networking.k8s.io) onto a target Kubernetes cluster.
Cloud-neutral, controller-neutral. Provides the prerequisite CRDs for any Gateway API based controller (Istio Ambient, Envoy Gateway, Cilium Gateway, kgateway) and integrations that consume HTTPRoutes (Knative net-gateway-api, ExternalDNS gateway-httproute source, cert-manager Gateway issuance).
Gateway API CRDs are a hard prerequisite that cuts across multiple platform stacks. Bundling them into istio-stack would couple every consumer to that stack's lifecycle; installing them by hand makes upgrades easy to forget. A small dedicated stack keeps the prereq explicit and version-pinned in one place.
apiVersion: hops.ops.com.ai/v1alpha1
kind: GatewayAPIStack
metadata:
name: gateway-api
namespace: default
spec:
clusterName: my-clusterThis composes a single Helm release of wiremind/gateway-api-crds, a community-maintained wrapper around the upstream CRD YAML from kubernetes-sigs/gateway-api.
The chart's appVersion tracks the upstream Gateway API release. Bump chartVersion on the XR to upgrade.
| Field | Type | Default | Description |
|---|---|---|---|
clusterName |
string | required | Target cluster name; default for helmProviderConfigRef.name |
namespace |
string | gateway-api |
Namespace for the Helm release |
releaseName |
string | gateway-api-crds |
Helm release name |
chartVersion |
string | 1.5.1 |
wiremind/gateway-api-crds chart version (tracks upstream Gateway API) |
helmProviderConfigRef.name |
string | clusterName |
Helm ProviderConfig |
helmProviderConfigRef.kind |
enum | ProviderConfig |
ProviderConfig or ClusterProviderConfig |
values |
object | — | Helm values merged with chart defaults |
overrideAllValues |
object | — | Helm values that replace all defaults |
managementPolicies |
string[] | ["*"] |
Crossplane management policies |
labels |
object | — | Custom labels merged with defaults |
| Resource | Kind |
|---|---|
<releaseName> |
helm.m.crossplane.io/Release |
istio-stack—Gatewayresource attached to the istio ambientGatewayClassknative-stack— emitsHTTPRouteresources vianet-gateway-apicloudflare-dns-stack— ExternalDNSgateway-httproutesource
| Kind | Package | Version |
|---|---|---|
| Function | crossplane-contrib/function-auto-ready |
>=v0.6.3 |
| Provider | crossplane-contrib/provider-helm |
>=v1 |
make render # Render all examples
make validate # Validate against Crossplane schemas
make test # Run KCL unit tests
make e2e # Run E2E test on a kind cluster
make build # Build the packageApache-2.0