58368948d9
## Summary - Replace `Ingress` (nginx) with `Gateway` + `HTTPRoute` using `traefik-internal` GatewayClass - TLS terminated at the Gateway listener; cert-manager provisions the certificate via `vault-issuer` - external-dns annotations moved to the Gateway ## Test plan - [ ] ArgoCD syncs the paperclip app cleanly - [ ] cert-manager issues the `paperclip-tls` certificate - [ ] external-dns creates the DNS record - [ ] `https://paperclip.k8s.syd1.au.unkin.net` is reachable Reviewed-on: #133
21 lines
386 B
YAML
21 lines
386 B
YAML
---
|
|
apiVersion: gateway.networking.k8s.io/v1
|
|
kind: HTTPRoute
|
|
metadata:
|
|
name: paperclip
|
|
namespace: paperclip
|
|
spec:
|
|
hostnames:
|
|
- paperclip.k8s.syd1.au.unkin.net
|
|
parentRefs:
|
|
- name: paperclip
|
|
sectionName: https
|
|
rules:
|
|
- backendRefs:
|
|
- name: paperclip
|
|
port: 3100
|
|
matches:
|
|
- path:
|
|
type: PathPrefix
|
|
value: /
|