Files
truecharts/charts/stable/kitchenowl/values.yaml
T
TrueCharts BotandGitHub 36b9aae193 chore(helm): update image docker.io/tombursch/kitchenowl-web digest to 97d24a4 (#36813)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/tombursch/kitchenowl-web | digest | `4122e76` -> `97d24a4` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-07-01 08:31:50 +02:00

139 lines
3.8 KiB
YAML

image:
repository: docker.io/tombursch/kitchenowl-web
pullPolicy: IfNotPresent
tag: latest@sha256:97d24a4e771cf87dae50318ee94293305cb2c55ecd37467607abc9556601ba6d
backendImage:
repository: docker.io/tombursch/kitchenowl
pullPolicy: IfNotPresent
tag: latest@sha256:10aad716a5dbf2f4c5f548e5c115ad7768b0cd2c18c045766e1c27cc01c695f1
service:
main:
enabled: true
# Target frontend pod
targetSelector: frontend
ports:
main:
enabled: true
# Target frontend container
targetSelector: frontend
protocol: http
targetPort: 80
port: 10246
backend:
enabled: true
# Target main(backend) pod
targetSelector: main
ports:
backend:
enabled: true
# Target main(backend) container
targetSelector: main
protocol: http
targetPort: 5000
port: 10247
persistence:
data:
enabled: true
targetSelector:
main:
main:
mountPath: /data
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
workload:
main:
enabled: true
primary: true
type: Deployment
podSpec:
containers:
main:
# Backend
enabled: true
primary: true
imageSelector: backendImage
env:
FRONT_URL: ""
OIDC_ISSUER: ""
OIDC_CLIENT_ID: ""
OIDC_CLIENT_SECRET: ""
APPLE_CLIENT_ID: ""
APPLE_CLIENT_SECRET: ""
GOOGLE_CLIENT_ID: ""
GOOGLE_CLIENT_SECRET: ""
JWT_SECRET_KEY:
secretKeyRef:
name: kitchenowl-secrets
key: JWT_SECRET_KEY
STORAGE_PATH: "{{ .Values.persistence.data.targetSelector.main.main.mountPath }}"
DB_DRIVER: "postgresql"
DB_HOST:
secretKeyRef:
name: cnpg-main-urls
key: host
DB_NAME: "{{ .Values.cnpg.main.database }}"
DB_USER: "{{ .Values.cnpg.main.user }}"
DB_PASSWORD:
secretKeyRef:
name: cnpg-main-user
key: password
probes:
liveness:
enabled: true
type: exec
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
command:
- uwsgi_curl
- localhost:5000
- /api/health/8M4F88S8ooi4sMbLBfkkV7ctWwgibW6V
readiness:
enabled: true
type: exec
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
command:
- uwsgi_curl
- localhost:5000
- /api/health/8M4F88S8ooi4sMbLBfkkV7ctWwgibW6V
startup:
enabled: true
type: tcp
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
frontend:
enabled: true
type: Deployment
strategy: RollingUpdate
replicas: 1
podSpec:
containers:
frontend:
enabled: true
primary: true
env:
BACK_URL: '{{ printf "%s-backend:%v" (include "tc.v1.common.lib.chart.names.fullname" $) .Values.service.backend.ports.backend.port }}'
probes:
liveness:
type: http
path: /
port: "{{ .Values.service.main.ports.main.targetPort }}"
readiness:
type: http
path: /
port: "{{ .Values.service.main.ports.main.targetPort }}"
startup:
type: tcp
port: "{{ .Values.service.main.ports.main.targetPort }}"
# Enabled postgres
cnpg:
main:
enabled: true
user: kitchenowl
database: kitchenowl