30 lines
795 B
YAML
30 lines
795 B
YAML
{{- if eq .Values.cilium.cluster "hel1" }}
|
|
apiVersion: gateway.networking.k8s.io/v1
|
|
kind: Gateway
|
|
metadata:
|
|
name: shared-gateway
|
|
spec:
|
|
infrastructure:
|
|
annotations:
|
|
load-balancer.hetzner.cloud/location: hel1
|
|
load-balancer.hetzner.cloud/type: lb11
|
|
load-balancer.hetzner.cloud/name: load-balancer-2
|
|
load-balancer.hetzner.cloud/use-private-ip: "true"
|
|
load-balancer.hetzner.cloud/uses-proxyprotocol: "true"
|
|
load-balancer.hetzner.cloud/http-redirect-https: "false"
|
|
---
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: wildcard-oceanbox-io
|
|
spec:
|
|
secretName: wildcard-oceanbox-io
|
|
commonName: oceanbox.io
|
|
dnsNames:
|
|
- oceanbox.io
|
|
- "*.oceanbox.io"
|
|
issuerRef:
|
|
name: letsencrypt-production
|
|
kind: ClusterIssuer
|
|
{{- end }}
|