From 9e67e8411a49e26c278c9ee05769a9af92622f8a Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Wed, 3 Dec 2025 03:05:23 +0200 Subject: [PATCH] Fix override values for my-recipes app --- charts/my-recipes-chart/values.yaml | 2 +- manifests/my-recipes/values.yaml | 40 +++++++++++++++++++---------- 2 files changed, 28 insertions(+), 14 deletions(-) diff --git a/charts/my-recipes-chart/values.yaml b/charts/my-recipes-chart/values.yaml index acc03cf..4fe5548 100644 --- a/charts/my-recipes-chart/values.yaml +++ b/charts/my-recipes-chart/values.yaml @@ -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 diff --git a/manifests/my-recipes/values.yaml b/manifests/my-recipes/values.yaml index 0f0e4f4..62054da 100644 --- a/manifests/my-recipes/values.yaml +++ b/manifests/my-recipes/values.yaml @@ -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