Files
truecharts/charts/stable/strapi/values.yaml
T
TrueCharts Bot 3f6375c307 feat(strapi): update image docker.io/vshadbolt/strapi 5.48.1 → 5.49.0 (#49477)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/vshadbolt/strapi | minor | `1cdc37d` → `eab33ee` |

---

> [!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-->
2026-06-25 11:42:21 +02:00

56 lines
1.4 KiB
YAML

# yaml-language-server: $schema=./values.schema.json
image:
repository: docker.io/vshadbolt/strapi
tag: 5.49.0-alpine@sha256:eab33ee400dd08f81dfda8e3e33da7010848d6c62d9710e2b296439f0ab0580a
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"]'