carbynestack / castor

Carbyne Stack tuple store for secure multiparty computation
https://carbynestack.io
Apache License 2.0
7 stars 4 forks source link

Fix Castor HelmChart - Quote Environment Variable INITIAL_FRAGMENT_SIZE #35

Closed kindlich closed 2 years ago

kindlich commented 2 years ago

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

https://github.com/carbynestack/castor/blob/0eaaa5fc2f34972ecdea14e8b379b5cdced8ac4a/castor-service/charts/castor/templates/deployment.yaml#L41-L42

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