carbynestack/castor

Fix Castor HelmChart - Quote Environment Variable INITIAL_FRAGMENT_SIZE

Closed this issue · 0 comments

In K8s, Env variables are quoted -> Applying the Helmfile can fail since currently the 1000 fragment size is not quoted.

- name: INITIAL_FRAGMENT_SIZE
value: {{ .Values.castor.initialFragmentSize }}

Change to either "{{ .Values.castor.initialFragmentSize }}" like for the Redis Port,
or {{ .Values.castor.initialFragmentSize | quote }}