Files
infrastructure/clusters/cl01tl/helm/argocd/templates/http-route.yaml
Alex Lebens 6e6917a00b
All checks were successful
lint-test-helm / helm-lint (push) Successful in 14s
render-manifests / render-manifests (push) Successful in 19s
renovate / renovate (push) Successful in 1m16s
migrate argocd
2025-12-02 22:41:58 -06:00

29 lines
681 B
YAML

apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: http-route-argocd
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-argocd
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io
kind: Gateway
name: traefik-gateway
namespace: traefik
hostnames:
- argocd.alexlebens.net
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- group: ''
kind: Service
name: argocd-server
port: 80
weight: 100