* chore(apps): remove persistence size from values * remove type from persistence from values.yaml * remove accessMode from persistence from values * devices dont user persistence * remove empty lines * restore accessMode in common, whoops * quote all mountPaths * convert `'` to `"` * fix empty lines * add missing mountPath on values * add missing persistence on values * fix var name on quetsions * remove disabled persistence from values which are not even defined in questions * remove more type, accessMode and size * mountpath -> mountPath * mounthPath -> mountPath * booksonic-air persistence cleanup * remove empty lines * fix mountPath * remove unused persistence * teamspeak3 fix var name in persistence * remove persistence that will probably be user defined storage * remove persistence that will probably be user defined storage * add missing persistence from values * fix openldap volclaim * remove persistence that will probably be user defined storage * add missing persistence from values * fix path ff3 * fix mountPath * add missing persistence from values * remove persistence that will probably be user defined storage * revert changes in volClaimTemplate * remove varrun from questions * fix and cleanup questions postgres * calm down CI * ci only value
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
image:
|
|
repository: ghcr.io/nicholaswilde/shiori
|
|
pullPolicy: IfNotPresent
|
|
tag: version-v1.5.0@sha256:e0645abe677786f79bde80ac81f8d79c915e05cba2991c4cecd335f54335431c
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
allowPrivilegeEscalation: true
|
|
runAsNonRoot: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
# See more environment variables in the shiori documentation
|
|
# https://github.com/go-shiori/shiori/wiki/Configuration#database
|
|
env:
|
|
# TZ:
|
|
PUID: 568
|
|
|
|
envTpl:
|
|
SHIORI_PG_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
|
SHIORI_PG_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
|
|
envValueFrom:
|
|
SHIORI_PG_PASS:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
SHIORI_PG_HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: plainhost
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8080
|
|
targetPort: 8080
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/data"
|
|
varrun:
|
|
enabled: true
|
|
|
|
# Enabled postgres
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
postgresqlUsername: shiori
|
|
postgresqlDatabase: shiori
|