fix(helm): renamed helm directory to charts

This commit is contained in:
Vegard Hagen
2023-04-10 21:19:03 +02:00
parent ad7ecb83fd
commit 01625b39d5
22 changed files with 34 additions and 34 deletions
@@ -0,0 +1,17 @@
{{- if include "auth.create" . }}
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
name: traefik-forward-auth
namespace: {{ .Values.namespace }}
labels:
{{- include "common.labels" . | nindent 4 }}
annotations:
{{- include "common.annotations" . | nindent 4 }}
spec:
forwardAuth:
address: "http://traefik-forward-auth.{{ .Values.namespace }}.svc.cluster.local:{{ .Values.auth.port }}"
authResponseHeaders:
- X-Forwarded-User
trustForwardHeader: true
{{- end }}