ef7a8b051e
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/anonaddy/anonaddy](https://redirect.github.com/anonaddy/docker) | digest | `09c289b` → `7d68543` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9hbm9uYWRkeSIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
85 lines
2.4 KiB
YAML
85 lines
2.4 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/anonaddy/anonaddy
|
|
tag: 1.6.4@sha256:7d68543d4d50fd4f0133f039a861d793923716750a31248bc23f9cb540683fe3
|
|
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
|