Files
truecharts/charts/stable/friendica/values.yaml
T
c4e08f8f25 chore(deps): update docker general non-major (#1924)
* chore(deps): update docker general non-major

* Commit bumped App Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: TrueCharts-Bot <bot@truecharts.org>
2022-02-21 17:53:17 +01:00

62 lines
1.2 KiB
YAML

image:
repository: tccr.io/truecharts/friendica
pullPolicy: IfNotPresent
tag: v2022.02@sha256:36771dbf5e45bc28d2315c63aa5d662c680312aef651e5c72820da22366c19c6
securityContext:
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
# See more environment variables in the friendica documentation
# https://hub.docker.com/_/friendica
env:
MYSQL_USER: friendica
MYSQL_DATABASE: friendica
FRIENDICA_ADMIN_MAIL: "my@domain.com"
FRIENDICA_URL: "https://friendica.local"
service:
main:
ports:
main:
port: 10058
targetPort: 80
persistence:
varrun:
enabled: true
config:
enabled: true
mountPath: "/var/www/html"
envValueFrom:
MYSQL_HOST:
secretKeyRef:
name: mariadbcreds
key: plainhost
MYSQL_PASSWORD:
secretKeyRef:
name: mariadbcreds
key: mariadb-password
REDIS_HOST:
secretKeyRef:
name: rediscreds
key: plainhost
REDIS_PW:
secretKeyRef:
name: rediscreds
key: redis-password
redis:
enabled: true
existingSecret: "rediscreds"
mariadb:
enabled: true
mariadbUsername: friendica
mariadbDatabase: friendica
existingSecret: "mariadbcreds"