Ei kuvausta

authentik.yaml 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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: "authentik"
  19. repoURL: "https://charts.goauthentik.io"
  20. targetRevision: "5.2.1"
  21. helm:
  22. releaseName: "authentik"
  23. values: |
  24. authentik:
  25. env: {
  26. AK_ADMIN_PASS: 'SIMON',
  27. AK_ADMIN_TOKEN: 'SIMON'
  28. }
  29. secret_key: "qlfgmSJ8GT/EoE3JsphrM81KzyYqoDYif7u59m/sVL4EQ6MO"
  30. # This sends anonymous usage-data, stack traces on errors and
  31. # performance data to sentry.beryju.org, and is fully opt-in
  32. error_reporting:
  33. enabled: false
  34. postgresql:
  35. password: "ThisIsNotASecurePasswordEither"
  36. email:
  37. # -- SMTP Server emails are sent from, fully optional
  38. host: "mail.your-server.de"
  39. port: 587
  40. # -- SMTP credentials, when left empty, not authentication will be done
  41. username: "authentik@kaisers.info"
  42. # -- SMTP credentials, when left empty, not authentication will be done
  43. password: "6qL3XdwQUw2UJ75U"
  44. # -- Enable either use_tls or use_ssl, they can't be enabled at the same time.
  45. use_tls: true
  46. # -- Connection timeout
  47. timeout: 30
  48. # -- Email from address, can either be in the format "foo@bar.baz" or "authentik <foo@bar.baz>"
  49. from: "authentik <authentik@kaisers.info>"
  50. ingress:
  51. enabled: true
  52. annotations:
  53. cert-manager.io/cluster-issuer: "letsencrypt-prod"
  54. traefik.ingress.kubernetes.io/redirect-entry-point: "https"
  55. hosts:
  56. - host: "authentik.kaisers.info"
  57. paths:
  58. - path: "/"
  59. pathType: "Prefix"
  60. tls:
  61. - secretName: "authentik-kaisers-info-tls"
  62. hosts:
  63. - "authentik.kaisers.info"
  64. postgresql:
  65. enabled: true
  66. postgresqlPassword: "ThisIsNotASecurePasswordEither"
  67. redis:
  68. enabled: true