mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
Change IP of all LB Services to a different subnet Use externalTrafficPolicy on some LB Services Signed-off-by: Vegard Hagen <[email protected]>
38 lines
842 B
YAML
38 lines
842 B
YAML
apiVersion: gateway.networking.k8s.io/v1
|
|
kind: Gateway
|
|
metadata:
|
|
name: external
|
|
namespace: gateway
|
|
spec:
|
|
gatewayClassName: cilium
|
|
infrastructure:
|
|
labels:
|
|
bgp.cilium.io/advertise-service: default
|
|
bgp.cilium.io/ip-pool: default
|
|
addresses:
|
|
- type: IPAddress
|
|
value: 172.20.10.110
|
|
listeners:
|
|
- protocol: HTTPS
|
|
port: 443
|
|
name: https-gateway
|
|
hostname: "*.stonegarden.dev"
|
|
tls:
|
|
certificateRefs:
|
|
- kind: Secret
|
|
name: cert-stonegarden
|
|
allowedRoutes:
|
|
namespaces:
|
|
from: All
|
|
- protocol: HTTPS
|
|
port: 443
|
|
name: https-domain-gateway
|
|
hostname: stonegarden.dev
|
|
tls:
|
|
certificateRefs:
|
|
- kind: Secret
|
|
name: cert-stonegarden
|
|
allowedRoutes:
|
|
namespaces:
|
|
from: All
|