Integrating argo

This commit is contained in:
plm
2025-01-16 13:11:31 +01:00
parent c66de05c57
commit f6fa0e22d2
48 changed files with 6182 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
{{- if index .Values "mongo-express" "enabled" }}
{{- if index .Values "hydra" "enabled" }}
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
@@ -8,11 +8,11 @@ spec:
- web
routes:
- kind: Rule
match: Host(`{{ .Values.host }}`) && PathPrefix(`/auth`)
match: Host(`{{ .Values.host }}`) && PathPrefix(`/hydra`)
priority: 10
services:
- kind: Service
name: {{ .Release.Name }}-mongo-express
name: {{ .Release.Name }}-hydra-public.{{ .Release.Namespace }}
passHostHeader: true
port: 8081
port: 4444
{{- end }}