From 7cc8c4af1f6a10792f537d8407aa775db1297c90 Mon Sep 17 00:00:00 2001
From: bmaignan <bmaignan@takima.fr>
Date: Wed, 14 Aug 2024 15:56:02 +0200
Subject: [PATCH] feat: add staging env

---
 values.staging.yaml | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 values.staging.yaml

diff --git a/values.staging.yaml b/values.staging.yaml
new file mode 100644
index 0000000..29c0b25
--- /dev/null
+++ b/values.staging.yaml
@@ -0,0 +1,33 @@
+# Default values for CDB app.
+# This is a YAML-formatted file.
+# Declare variables to be passed into your templates.
+# We have only done front for now
+name: cdb
+
+pg:
+  enabled: true
+  port: 5432
+  image:
+    repository: registry.takima.io/school/proxy/postgres
+    tag: latest
+  replicaCount: 1
+
+api:
+  enabled: true
+  image:
+    repository: registry.gitlab.com/takima-school/images/cdb/api
+    tag: latest
+  replicaCount: 1
+  ingress:
+    tlsEnabled: true
+    host: api-staging.bmaignan.takima.school
+
+front:
+  enabled: true
+  image:
+    repository: registry.gitlab.com/takima-school/images/cdb/www
+    tag: latest
+  replicaCount: 1
+  ingress:
+    tlsEnabled: true
+    host: www-staging.bmaignan.takima.school
\ No newline at end of file
-- 
GitLab