apiVersion: v1
kind: ConfigMap
metadata:
  name: stackspin-invoiceninja-values
  namespace: stackspout
data:
  values.yaml: |
    # https://github.com/invoiceninja/dockerfiles/blob/master/charts/invoiceninja/values.yaml
    image:
      tag: 5.5.31
    ingress:
      enabled: true
      hostname: "ninja.${domain}"
      tls: true
      certManager: true
    persistence:
      public:
        existingClaim: invoiceninja-data
    mariadb:
      # https://github.com/bitnami/charts/blob/master/bitnami/mariadb/values.yaml
      auth:
        password: "${mariadb_password}"
        rootPassword: "${mariadb_root_password}"
      primary:
        persistence:
          existingClaim: invoiceninja-mariadb
    redis:
      # Redis is only cache, so no pvc needed: https://invoiceninja.github.io/docs/env-variables/
      auth:
        password: "${redis_password}"

    appURL: "https://ninja.ftt.gmbh"
    userEmail: "${admin_email}"
    userPassword: "${password}"
    mailer: "smtp" # FIXME use "${outgoing_mail_enabled}"
    # https://github.com/invoiceninja/invoiceninja/blob/v5-stable/config/mail.php#L36
    extraEnvVars:
      - name: MAIL_MAILER
        value: smtp
      - name: MAIL_HOST
        value: "${outgoing_mail_smtp_host}"
      - name: MAIL_PORT
        value: "${outgoing_mail_smtp_port}"
      - name: MAIL_USERNAME
        value: "${outgoing_mail_smtp_user}"
      - name: MAIL_PASSWORD
        value: "${outgoing_mail_smtp_password}"
      - name: MAIL_EHLO_DOMAIN
        value: "${outgoing_mail_domain}"
      - name: MAIL_FROM_ADDRESS
        value: "${outgoing_mail_from_address}"
      - name: MAIL_FROM_NAME
        value: "FTT Forensic Discovery GmbH"

    # Missing: invoiceninja OpenID Connect Single Sign-On Configuration
    #    - name: Stackspin
    #      key: "${client_id}"
    #      secret: "${client_secret}"
    #      autoDiscoverUrl: 'https://sso.${domain}/.well-known/openid-configuration'