This PR contains the following updates: | Package | Update | Change | |---|---|---| | tombursch/kitchenowl-web | digest | `2ff6187` -> `8144301` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone Europe/Amsterdam, 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://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjYuMiIsInVwZGF0ZWRJblZlciI6IjM3LjEyNi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
129 lines
3.4 KiB
YAML
129 lines
3.4 KiB
YAML
image:
|
|
repository: tombursch/kitchenowl-web
|
|
pullPolicy: IfNotPresent
|
|
tag: latest@sha256:81443018f3dfd17dbb66739b7afe456a4488f552537ba6ed8bf7f501ebfb24d2
|
|
backendImage:
|
|
repository: tombursch/kitchenowl
|
|
pullPolicy: IfNotPresent
|
|
tag: latest@sha256:0a4ae56f82b25a9e6362689af500b3f7f6248e898db7e4c5fcbd1b42bfa9b119
|
|
service:
|
|
main:
|
|
enabled: true
|
|
targetSelector: main
|
|
ports:
|
|
main:
|
|
enabled: true
|
|
targetSelector: main
|
|
protocol: http
|
|
targetPort: 80
|
|
port: 10246
|
|
backend:
|
|
enabled: true
|
|
targetSelector: backend
|
|
ports:
|
|
backend:
|
|
enabled: true
|
|
targetSelector: backend
|
|
protocol: http
|
|
targetPort: 5000
|
|
port: 10247
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
targetSelector:
|
|
backend:
|
|
backend:
|
|
mountPath: /data
|
|
portal:
|
|
open:
|
|
enabled: true
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
type: Deployment
|
|
strategy: RollingUpdate
|
|
replicas: 1
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
enabled: true
|
|
primary: true
|
|
envFrom:
|
|
- configMapRef:
|
|
name: kitchenowl-config
|
|
env:
|
|
FRONT_URL: "{{ .Values.workload.main.podSpec.containers.main.env.FRONT_URL }}"
|
|
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: http
|
|
path: /
|
|
port: "{{ .Values.service.main.ports.main.targetPort }}"
|
|
backend:
|
|
enabled: true
|
|
type: Deployment
|
|
podSpec:
|
|
containers:
|
|
backend:
|
|
enabled: true
|
|
primary: true
|
|
imageSelector: backendImage
|
|
env:
|
|
FRONT_URL: "{{ .Values.workload.main.podSpec.containers.main.env.FRONT_URL }}"
|
|
OIDC_ISSUER: ""
|
|
OIDC_CLIENT_ID: ""
|
|
OIDC_CLIENT_SECRET: ""
|
|
APPLE_CLIENT_ID: ""
|
|
APPLE_CLIENT_SECRET: ""
|
|
GOOGLE_CLIENT_ID: ""
|
|
GOOGLE_CLIENT_SECRET: ""
|
|
# Changed port to 10248 to avoid conflict with frontend
|
|
HTTP_PORT: "10248"
|
|
JWT_SECRET_KEY:
|
|
secretKeyRef:
|
|
name: kitchenowl-secrets
|
|
key: JWT_SECRET_KEY
|
|
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: tcp
|
|
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
|
|
readiness:
|
|
enabled: true
|
|
type: tcp
|
|
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
|
|
startup:
|
|
enabled: true
|
|
type: tcp
|
|
port: "{{ .Values.service.backend.ports.backend.targetPort }}"
|
|
# Enabled postgres
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: kitchenowl
|
|
database: kitchenowl
|
|
updated: true
|