21 lines
456 B
YAML
21 lines
456 B
YAML
apiVersion: gateway.networking.k8s.io/v1
|
|
kind: HTTPRoute
|
|
metadata:
|
|
name: argocd-server
|
|
namespace: {{ .Release.Namespace }}
|
|
spec:
|
|
parentRefs:
|
|
- name: traefik-gateway
|
|
namespace: traefik
|
|
sectionName: web
|
|
hostnames:
|
|
- {{ index .Values "argo-cd" "global" "domain" | quote }}
|
|
rules:
|
|
- matches:
|
|
- path:
|
|
type: PathPrefix
|
|
value: /
|
|
backendRefs:
|
|
- name: argocd-server
|
|
port: 80
|