mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
I'm experiencing issues reaching services directly exposed to the internet At first only some carriers didn't load the pages, but it appears to be getting worse somehow Signed-off-by: Vegard Hagen <[email protected]>
41 lines
927 B
YAML
41 lines
927 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
|
|
l2.cilium.io/ip-pool: default
|
|
addresses:
|
|
- type: IPAddress
|
|
value: 172.20.10.110
|
|
- type: IPAddress
|
|
value: 192.168.1.222
|
|
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
|