Fix override values for my-recipes app

This commit is contained in:
dvirlabs 2025-12-03 03:05:23 +02:00
parent 89afadac9b
commit 9e67e8411a
2 changed files with 28 additions and 14 deletions

View File

@ -1,7 +1,7 @@
# Backend image # Backend image
backend: backend:
image: image:
repository: registry.dvirlabs.com/my-recipes/backend repository: harbor.dvirlabs.com/my-recipes/my-recipes-backend
tag: v1.0.0 tag: v1.0.0
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
replicas: 1 replicas: 1

View File

@ -1,14 +1,28 @@
image: postgres:16 # Backend image
backend:
image:
repository: harbor.dvirlabs.com/my-recipes/my-recipes-backend
tag: master-35e1584
pullPolicy: IfNotPresent
replicas: 1
# Frontend image
frontend:
image:
repository: registry.dvirlabs.com/my-recipes/my-recipes-frontend
tag: v1.0.0
pullPolicy: IfNotPresent
replicas: 1
# Postgres DB
postgres: postgres:
image: postgres:16
user: recipes_user user: recipes_user
password: recipes_password # simple for POC password: recipes_password # POC only later use Secret/ExternalSecret
database: recipes_db database: recipes_db
service:
port: 5432 port: 5432
persistence: persistence:
enabled: true enabled: true
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
storageClass: "nfs-client" # or your default SC storageClass: "nfs-client"
size: 8Gi size: 8Gi
backend:
tag: master-35e1584