Files
truecharts/charts/stable/strapi/values.yaml
T
Xstar97andGitHub 7aa5cbb282 feat(strapi) change version to v4 (#4330)
* feat(strapi) change version to v4

* add secrets type correctly
2022-11-07 10:53:28 +01:00

59 lines
1.2 KiB
YAML

image:
repository: tccr.io/truecharts/strapi
tag: v4.4.5@sha256:38f3377319ce26bf345fe4d1acf656f2a06a12d24e47f862080f83f08fb8b654
pullPolicy: Always
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
secretEnv:
JWT_SECRET: "my_jwt_secret"
ADMIN_JWT_SECRET: "my_admin_jwt_secret"
APP_KEYS: "my_app_keys"
env:
DATABASE_CLIENT: "postgres"
DATABASE_PORT: 5432
DATABASE_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
DATABASE_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
DATABASE_USERNAME: "{{ .Values.postgresql.postgresqlUsername }}"
DATABASE_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
# STRAPI_LICENSE
NODE_ENV: "production"
STRAPI_DISABLE_UPDATE_NOTIFICATION: true
FAST_REFRESH: false
EXTRA_ARGS: ""
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
portal:
enabled: true