Add Pelican panel — EndpointSlice, HTTPRoute, certificate, gateway listener

This commit is contained in:
2026-06-02 19:23:31 +02:00
parent 97516059df
commit d2f697b3df
6 changed files with 129 additions and 0 deletions

View File

@@ -46,6 +46,9 @@ resources:
- ollama/certificate.yaml
- openwebui/certificate.yaml
- searxng/certificate.yaml
- docuseal/certificate.yaml
- affine/certificate.yaml
- pelican/certificate.yaml
patches:
# Internal gateway patches
@@ -289,6 +292,24 @@ patches:
kind: Gateway
name: gateway-internal
path: searxng/gateway-patch.yaml
- target:
group: gateway.networking.k8s.io
version: v1
kind: Gateway
name: gateway-internal
path: docuseal/gateway-patch.yaml
- target:
group: gateway.networking.k8s.io
version: v1
kind: Gateway
name: gateway-internal
path: affine/gateway-patch.yaml
- target:
group: gateway.networking.k8s.io
version: v1
kind: Gateway
name: gateway-internal
path: pelican/gateway-patch.yaml
# Public gateway patches
- target:

View File

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

View File

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