0d55169e7f
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/vshadbolt/strapi | minor | `eab33ee` → `a6cbefe` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: (UTC) - 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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9zdHJhcGkiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/vshadbolt/strapi
|
|
tag: 5.50.0-alpine@sha256:a6cbefe4857bc883730eca366293e3555379dc25aff3ef9db482b55ff6c8e389
|
|
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"]'
|