Files
truecharts/charts/incubator/strapi/values.yaml
T
Stavros KoisandGitHub b09907c7ba feat(strapi): Add strapi (#1800)
* feat(strapi): Add strapi

* does it work?

* back off some perms

* Needs root..

* update image
2022-01-27 23:50:49 +01:00

50 lines
965 B
YAML

image:
repository: tccr.io/truecharts/strapi
tag: v3.6.8@sha256:25d345a1787c5be5ef1771b069e0eeaeba5b244a62870cc2b9d5acba0eaedd89
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
env:
TZ: UTC
DATABASE_CLIENT: "postgres"
DATABASE_PORT: 5432
DATABASE_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
DATABASE_USERNAME: "{{ .Values.postgresql.postgresqlUsername }}"
EXTRA_ARGS: ""
envValueFrom:
DATABASE_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
DATABASE_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
service:
main:
ports:
main:
port: 1337
targetPort: 1337
persistence:
data:
enabled: true
mountPath: "/srv/app"
# Enabled postgres
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: strapi
postgresqlDatabase: strapi