Add Affine gateway listener and certificate

This commit is contained in:
2026-05-31 23:47:53 +02:00
parent bd8e5a45e5
commit 721185b4fd
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: affine-tls
namespace: envoy-gateway
spec:
secretName: affine-tls
privateKey:
rotationPolicy: Always
issuerRef:
name: azure-dns
kind: ClusterIssuer
dnsNames:
- affine.jsme.be

View File

@@ -0,0 +1,19 @@
- op: add
path: /spec/listeners/-
value:
name: affine
protocol: HTTPS
port: 443
hostname: "affine.jsme.be"
allowedRoutes:
namespaces:
from: Selector
selector:
matchLabels:
kubernetes.io/metadata.name: affine
tls:
mode: Terminate
certificateRefs:
- kind: Secret
name: affine-tls
namespace: envoy-gateway