Ei kuvausta

authentik.yaml 2.3KB

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