Bez popisu

authentik.yaml 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. apiVersion: argoproj.io/v1alpha1
  2. kind: Application
  3. metadata:
  4. name: authentik
  5. namespace: authentik
  6. finalizers:
  7. - resources-finalizer.argocd.argoproj.io
  8. spec:
  9. destination:
  10. namespace: authentik
  11. name: {{ .Values.spec.destination.name }}
  12. project: {{ .Values.spec.project }}
  13. source:
  14. chart: goauthentik/authentik
  15. repoURL: https://charts.goauthentik.io
  16. targetRevision: 5.2.1
  17. values: |
  18. authentik:
  19. secret_key: "qlfgmSJ8GT/EoE3JsphrM81KzyYqoDYif7u59m/sVL4EQ6MO"
  20. # This sends anonymous usage-data, stack traces on errors and
  21. # performance data to sentry.beryju.org, and is fully opt-in
  22. error_reporting:
  23. enabled: true
  24. postgresql:
  25. password: "ThisIsNotASecurePasswordEither"
  26. email:
  27. # -- SMTP Server emails are sent from, fully optional
  28. host: "mail.your-server.de"
  29. port: 587
  30. # -- SMTP credentials, when left empty, not authentication will be done
  31. username: "authentik@kaisers.info"
  32. # -- SMTP credentials, when left empty, not authentication will be done
  33. password: "6qL3XdwQUw2UJ75U"
  34. # -- Enable either use_tls or use_ssl, they can't be enabled at the same time.
  35. use_tls: true
  36. # -- Enable either use_tls or use_ssl, they can't be enabled at the same time.
  37. use_ssl: false
  38. # -- Connection timeout
  39. timeout: 30
  40. # -- Email from address, can either be in the format "foo@bar.baz" or "authentik <foo@bar.baz>"
  41. from: "authentik <authentik@kaisers.info>"
  42. ingress:
  43. enabled: true
  44. hosts:
  45. - host: authentik.kaisers.info
  46. paths:
  47. - path: "/"
  48. pathType: Prefix
  49. postgresql:
  50. enabled: true
  51. postgresqlPassword: "ThisIsNotASecurePasswordEither"
  52. redis:
  53. enabled: true