暫無描述

authentik.yaml 2.1KB

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