Files
truecharts/charts/stable/strapi/values.yaml
T
TrueCharts Bot b450037e85 feat(strapi): update image docker.io/vshadbolt/strapi 5.34.0 → 5.35.0 (#44567)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/vshadbolt/strapi | minor | `7cb038a` -> `432938c` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvc3RyYXBpIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9taW5vciJdfQ==-->
2026-02-05 06:11:31 +01:00

55 lines
1.4 KiB
YAML

image:
repository: docker.io/vshadbolt/strapi
tag: 5.35.0-alpine@sha256:432938c7e73754be16ed9f02eb4c425d14a08a0e6cc80920532459a9689de812
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"]'