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:
repository: registry.dvirlabs.com/my-recipes/backend
repository: harbor.dvirlabs.com/my-recipes/my-recipes-backend
tag: v1.0.0
pullPolicy: IfNotPresent
replicas: 1

View File

@ -1,14 +1,28 @@
image: postgres:16
postgres:
user: recipes_user
password: recipes_password # simple for POC
database: recipes_db
service:
port: 5432
persistence:
enabled: true
accessMode: ReadWriteOnce
storageClass: "nfs-client" # or your default SC
size: 8Gi
# Backend image
backend:
tag: master-35e1584
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:
image: postgres:16
user: recipes_user
password: recipes_password # POC only later use Secret/ExternalSecret
database: recipes_db
port: 5432
persistence:
enabled: true
accessMode: ReadWriteOnce
storageClass: "nfs-client"
size: 8Gi