From fbeb8dfd913a30ec33c8d4ee940b8b09f73a47dc Mon Sep 17 00:00:00 2001 From: marcos-silva-rodrigues Date: Wed, 16 Jul 2025 17:56:43 -0300 Subject: [PATCH] FIX: redis env --- maestro/templates/deployment.yaml | 8 ++++++++ maestro/values.yaml | 5 +++++ 2 files changed, 13 insertions(+) diff --git a/maestro/templates/deployment.yaml b/maestro/templates/deployment.yaml index c648514..bcc7da2 100644 --- a/maestro/templates/deployment.yaml +++ b/maestro/templates/deployment.yaml @@ -100,6 +100,14 @@ spec: value: {{ .Values.maestro.open_customer_id }} - name: OPEN_GROUP_ID value: {{ .Values.maestro.open_group_id }} + - name: DEDICATED_PROXY + value: {{ .Values.maestro.dedicated_proxy }} + - name: REDIS_DATABASE + value: "{{ .Values.maestro.redis_database }}" + - name: REDIS_HOST + value: {{ .Values.maestro.redis_host }} + - name: REDIS_PORT + value: "{{ .Values.maestro.redis_port }}" - name: JWT_PRIVATE_KEY valueFrom: secretKeyRef: diff --git a/maestro/values.yaml b/maestro/values.yaml index 14dd9e4..ee59bc5 100644 --- a/maestro/values.yaml +++ b/maestro/values.yaml @@ -42,6 +42,11 @@ maestro: upload_file_agent_connection: cbc2f881-58c4-4d60-8003-0979b0b5b911 open_customer_id: f239718a-a271-4ef9-ae7e-02a2f0f3aa6e open_group_id: 401573bb-334f-44b2-b30e-88d4cea31ae9 + dedicated_proxy: "" + restricted_ip: "" + redis_host: "product-redis-prd.z4xvqj.0001.use1.cache.amazonaws.com" + redis_port: "6379" + redis_database: "0" autoscaling: enabled: false minReplicas: 1