f259090de2
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [common](https://truecharts.org/charts/library/common) ([source](https://ghcr.io/cloudnative-pg/postgis)) | major | `25.4.10` -> `28.12.1` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL21ham9yIl19--> --------- Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: alfi0812 <admin@alfi0812.de>
84 lines
2.3 KiB
YAML
84 lines
2.3 KiB
YAML
image:
|
|
repository: docker.io/anonaddy/anonaddy
|
|
tag: 1.3.2@sha256:fe65f400e9252ef970fb311a57db529d9421a57f261af0032ee65ef60c1a3b50
|
|
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: "{{ .Values.mariadb.password }}"
|
|
REDIS_HOST:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: plainhost
|
|
REDIS_PASSWORD: "{{ .Values.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
|