Skip to content

Commit 34a1370

Browse files
authored
Update RUT helmchart values (#1053)
Make redis user non-required since on some deployments we don't use it Configure replica count with ENV This is done withing preparations to move RUT to internal Kubernetes cluster Related Issue(s): * #1052
1 parent 90e9635 commit 34a1370

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

charts/simcore-charts/resource-usage-tracker/values.yaml.gotmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
44

5-
replicaCount: 1
5+
replicaCount: {{ requiredEnv "RESOURCE_USAGE_TRACKER_KUBERNETES_REPLICAS" }}
66

77
image:
88
repository: '{{ .Values | get "DOCKER_REGISTRY" "itisfoundation" }}/resource-usage-tracker'
@@ -133,7 +133,7 @@ env:
133133
- name: RABBIT_USER
134134
value: {{ requiredEnv "RABBIT_USER" }}
135135
- name: REDIS_USER
136-
value: {{ requiredEnv "REDIS_USER" }}
136+
value: {{ env "REDIS_USER" }}
137137
- name: REDIS_HOST
138138
value: {{ requiredEnv "REDIS_EXTERNAL_HOST" }}
139139
- name: REDIS_PORT

0 commit comments

Comments
 (0)