image: repository: tccr.io/truecharts/anonaddy tag: v0.14.1@sha256:5ec8379d750553a662ea009b1c1e61e5cae670ef0ac7161f09f0c1cfa3a204fe pullPolicy: IfNotPresent strategy: type: Recreate securityContext: container: runAsNonRoot: false readOnlyRootFilesystem: false runAsUser: 0 runAsGroup: 0 service: main: ports: main: port: 10110 targetPort: 8000 smtp: enabled: true ports: smtp: enabled: true port: 25 targetPort: 25 workload: main: podSpec: containers: main: probes: liveness: type: tcp readiness: type: tcp startup: type: tcp env: ANONADDY_DOMAIN: "chart-example.local" APP_URL: "http://localhost:10110" # The from name to be used for outgoing email notifications from AnonAddy MAIL_FROM_NAME: Example # The from address to be used for outgoing email notifications from AnonAddy MAIL_FROM_ADDRESS: mailer@example.com # just smtp is configurable MAIL_DRIVER: smtp MAIL_HOST: mail.example.com MAIL_PORT: 25 MAIL_ENCRYPTION: tls MAIL_EHLO_DOMAIN: mail.example.com MAIL_VERIFY_PEER: false DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}" DB_USERNAME: "{{ .Values.mariadb.mariadbUsername }}" DB_HOST: secretKeyRef: expandObjectName: false name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}' key: plainhost DB_PASSWORD: secretKeyRef: expandObjectName: false name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}' key: mariadb-password REDIS_HOST: secretKeyRef: expandObjectName: false name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}' key: plainhost REDIS_PASSWORD: secretKeyRef: expandObjectName: false name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}' key: redis-password APP_KEY: secretKeyRef: name: anonaddy-secrets key: APP_KEY ANONADDY_SECRET: secretKeyRef: name: anonaddy-secrets key: ANONADDY_SECRET persistence: config: enabled: true mountPath: /config redis: enabled: true mariadb: enabled: true mariadbUsername: anonaddy mariadbDatabase: anonaddy portal: open: enabled: true