Без опису

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. helm:
  18. releaseName: authentik
  19. values: |
  20. authentik:
  21. secret_key: "qlfgmSJ8GT/EoE3JsphrM81KzyYqoDYif7u59m/sVL4EQ6MO"
  22. # This sends anonymous usage-data, stack traces on errors and
  23. # performance data to sentry.beryju.org, and is fully opt-in
  24. error_reporting:
  25. enabled: true
  26. postgresql:
  27. password: "ThisIsNotASecurePasswordEither"
  28. email:
  29. # -- SMTP Server emails are sent from, fully optional
  30. host: "mail.your-server.de"
  31. port: 587
  32. # -- SMTP credentials, when left empty, not authentication will be done
  33. username: "authentik@kaisers.info"
  34. # -- SMTP credentials, when left empty, not authentication will be done
  35. password: "6qL3XdwQUw2UJ75U"
  36. # -- Enable either use_tls or use_ssl, they can't be enabled at the same time.
  37. use_tls: true
  38. # -- Enable either use_tls or use_ssl, they can't be enabled at the same time.
  39. use_ssl: false
  40. # -- Connection timeout
  41. timeout: 30
  42. # -- Email from address, can either be in the format "foo@bar.baz" or "authentik <foo@bar.baz>"
  43. from: "authentik <authentik@kaisers.info>"
  44. ingress:
  45. enabled: true
  46. hosts:
  47. - host: authentik.kaisers.info
  48. paths:
  49. - path: "/"
  50. pathType: Prefix
  51. postgresql:
  52. enabled: true
  53. postgresqlPassword: "ThisIsNotASecurePasswordEither"
  54. redis:
  55. enabled: true