Files
truecharts/charts/stable/kitchenowl/values.yaml
T
TrueCharts Bot b397eb9a7d chore(deps): update kitchenowl by renovate (#21288)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| tombursch/kitchenowl | digest | `c09893c` -> `fc1a89d` |
| tombursch/kitchenowl-web | digest | `39eb079` -> `6e4f2db` |

---

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

---

### 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.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-04-24 20:23:50 +02:00

143 lines
3.8 KiB
YAML

image:
repository: tombursch/kitchenowl-web
pullPolicy: IfNotPresent
tag: latest@sha256:6e4f2db356d6f0b09f7cf3cf15de1489d2f64534502e434894bb76c90ae0faaa
backendImage:
repository: tombursch/kitchenowl
pullPolicy: IfNotPresent
tag: latest@sha256:fc1a89d02a6aca698f5e8fdaf6b18fb5fd10a49d68f29b87536e0e976da85aa2
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
portal:
open:
enabled: true
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