fix(mycloud-authentik): serviceaccount workaround till solved in helm-chart

see https://github.com/goauthentik/helm/pull/253
This commit is contained in:
WrenIX 2024-04-06 12:33:25 +02:00
parent b53d151620
commit 70da071390
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
2 changed files with 10 additions and 5 deletions

View file

@ -7,9 +7,11 @@ spec:
chart: chart:
spec: spec:
sourceRef: sourceRef:
kind: HelmRepository # kind: HelmRepository
kind: GitRepository
name: "authentik" name: "authentik"
chart: "authentik" # chart: "authentik"
chart: "./charts/authentik"
install: install:
{{- toYaml .Values.commons.helm.release.install | nindent 4 }} {{- toYaml .Values.commons.helm.release.install | nindent 4 }}
test: test:
@ -138,7 +140,6 @@ spec:
labels: labels:
{{- toYaml .Values.commons.prometheus.monitor.labels | nindent 12 }} {{- toYaml .Values.commons.prometheus.monitor.labels | nindent 12 }}
serviceAccount: {{ .Release.Name }} serviceAccount: {{ .Release.Name }}
extraContainers: extraContainers:
- name: sidecar-blueprints - name: sidecar-blueprints

View file

@ -1,8 +1,12 @@
--- ---
apiVersion: source.toolkit.fluxcd.io/v1beta2 apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository # kind: HelmRepository
kind: GitRepository
metadata: metadata:
name: authentik name: authentik
spec: spec:
url: https://charts.goauthentik.io # url: https://charts.goauthentik.io
url: https://github.com/wrenix/goauthentik-helm.git
ref:
branch: "feat/serviceAccount"
interval: 10m interval: 10m