Skip to content

Commit 5be2246

Browse files
ponyisiBenGalewsky
authored andcommitted
Fix quotes
1 parent 374415b commit 5be2246

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

helm/servicex/templates/app/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ data:
9292
{{- end }}
9393
TRANSFORMER_AUTOSCALE_ENABLED = {{- ternary "True" "False" .Values.transformer.autoscaler.enabled }}
9494
TRANSFORMER_CPU_LIMIT = {{ .Values.transformer.cpuLimit }}
95-
TRANSFORMER_MEMORY_LIMIT = {{ .Values.transformer.memoryLimit }}
95+
TRANSFORMER_MEMORY_LIMIT = "{{ .Values.transformer.memoryLimit }}"
9696
TRANSFORMER_CPU_SCALE_THRESHOLD = {{ .Values.transformer.autoscaler.cpuScaleThreshold }}
9797
TRANSFORMER_MIN_REPLICAS = {{ .Values.transformer.autoscaler.minReplicas }}
9898
TRANSFORMER_MAX_REPLICAS = {{ .Values.transformer.autoscaler.maxReplicas }}

servicex_app/app.conf.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ TRANSFORMER_MAX_REPLICAS = 20
5959
# Use one core per transformer
6060
TRANSFORMER_CPU_LIMIT = 1
6161
# Use 2GB per transformer
62-
TRANSFORMER_MEMORY_LIMIT = 2Gi
62+
TRANSFORMER_MEMORY_LIMIT = "2Gi"
6363

6464
# CPU threshold for HPA (in percent) to spawn additional transformers
6565
TRANSFORMER_CPU_SCALE_THRESHOLD = 70

0 commit comments

Comments
 (0)