Add Wings HTTPS proxy via Envoy Gateway

This commit is contained in:
2026-06-02 22:28:39 +02:00
parent 0d567d9cca
commit 55da4fcbfa
6 changed files with 94 additions and 0 deletions

View File

@@ -47,6 +47,7 @@ resources:
- searxng/certificate.yaml
- affine/certificate.yaml
- pelican/certificate.yaml
- pelican/wings-certificate.yaml
patches:
# Internal gateway patches
@@ -296,6 +297,12 @@ patches:
kind: Gateway
name: gateway-internal
path: pelican/gateway-patch.yaml
- target:
group: gateway.networking.k8s.io
version: v1
kind: Gateway
name: gateway-internal
path: pelican/wings-gateway-patch.yaml
# Public gateway patches
- target:

View File

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

View File

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