Skip to content

Commit

Permalink
deployment: Adapt 'workerThreads' to be a string
Browse files Browse the repository at this point in the history
There is a check in the main.go module which expects it to be a string so it can convert
it into an integer. Without this, we cannot actually provide the configuration without
hitting a conversion error. This should fix it.
  • Loading branch information
ardumont committed Sep 29, 2023
1 parent 4d42c70 commit 6fa0b52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ spec:
- {{ .Values.configmap.name }}
{{- if .Values.workerThreads }}
- --worker-threads
- {{ .Values.workerThreads }}
- {{ .Values.workerThreads | toString }}
{{- end }}
{{- if .Values.provisioningRetryCount }}
- --provisioning-retry-count
Expand Down

0 comments on commit 6fa0b52

Please sign in to comment.