TLS Gateway listener with cert ref gateway-api

Terminate TLS at the gateway via certificateRefs to a Secret

kubectl apply -f - <<'EOF' apiVersion: gateway.networking.k8s.io/v1 kind: Gateway metadata: {name: gw, namespace: <ns>} spec: gatewayClassName: <name> listeners: - name: https protocol: HTTPS port: 443 tls: mode: Terminate certificateRefs: [{name: tls-cert}] EOF
more gateway-api all 5 commands →