Fix override values for my-recipes app
This commit is contained in:
parent
89afadac9b
commit
9e67e8411a
@ -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
|
||||||
|
|||||||
@ -1,14 +1,28 @@
|
|||||||
image: postgres:16
|
# Backend image
|
||||||
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:
|
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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user