This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/vshadbolt/strapi | patch | `cc261a8` -> `1db03ae` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
image:
|
|
repository: docker.io/vshadbolt/strapi
|
|
tag: 5.12.5-alpine@sha256:1db03aeaa32ae6afa35e9cfdf960626ce00002e7d1694016339b53ecf8489d6e
|
|
pullPolicy: Always
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 1337
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: /srv/app
|
|
# Enabled postgres
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: strapi
|
|
database: strapi
|
|
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
DATABASE_CLIENT: postgres
|
|
DATABASE_PORT: 5432
|
|
DATABASE_NAME: "{{ .Values.cnpg.main.database }}"
|
|
DATABASE_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
DATABASE_USERNAME: "{{ .Values.cnpg.main.user }}"
|
|
DATABASE_PASSWORD:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
# STRAPI_LICENSE
|
|
# PUBLIC_URL
|
|
NODE_ENV: development
|
|
STRAPI_DISABLE_UPDATE_NOTIFICATION: true
|
|
FAST_REFRESH: false
|
|
EXTRA_ARGS: ""
|
|
JWT_SECRET: my_jwt_secret
|
|
ADMIN_JWT_SECRET: my_admin_jwt_secret
|
|
APP_KEYS: '["keya", "keyb"]'
|