33 lines
955 B
YAML
33 lines
955 B
YAML
# ------------------------------------------------------------------------------
|
|
# HTTPRoute — Harbor (Primary) via Cilium Gateway
|
|
# Primary DNS: the-seas.local.mk-labs.cloud (EPCOT theme)
|
|
# ------------------------------------------------------------------------------
|
|
apiVersion: gateway.networking.k8s.io/v1
|
|
kind: HTTPRoute
|
|
metadata:
|
|
name: harbor-the-seas
|
|
namespace: harbor
|
|
annotations:
|
|
external-dns.alpha.kubernetes.io/hostname: the-seas.local.mk-labs.cloud
|
|
external-dns.alpha.kubernetes.io/target: "10.1.71.90"
|
|
spec:
|
|
parentRefs:
|
|
- group: gateway.networking.k8s.io
|
|
kind: Gateway
|
|
name: fastpass-gateway
|
|
namespace: gateway
|
|
sectionName: https
|
|
hostnames:
|
|
- the-seas.local.mk-labs.cloud
|
|
rules:
|
|
- matches:
|
|
- path:
|
|
type: PathPrefix
|
|
value: /
|
|
backendRefs:
|
|
- group: ""
|
|
kind: Service
|
|
name: the-seas
|
|
port: 80
|
|
weight: 1
|