You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nothing work, in the "final deployment YAML file" the args always become:
args:
- '--rest --webapps'
I started looking into camunda.sh and start.sh file and I figureout the reason for the camunda not start.
The '--rest --webapps' is interpreted as one arg and not as 2 args.
After a long days trying to find the reason for that args are not being interpreted as 2 args I found an issue on the deployment.yaml file
Here is my conclusion, in the args part in the deployment.yaml file instead of
{{- if .Values.image.args }}
args:
{{ .Values.image.args }}
{{- end }}
should be:
{{- if .Values.image.args }}
args:
{{- toYaml .Values.image.args | nindent 12 }}
{{- end }}
Do you think it is possible to do this change?
Or it will have impact in other use case ?
The text was updated successfully, but these errors were encountered:
Hi guys
I was trying to use the helm to deploy camunda with rest and webapps only but it wasn't working.
I was not able to set camunda running.
In image section I try things like
OR
Or Even
Nothing work, in the "final deployment YAML file" the args always become:
I started looking into camunda.sh and start.sh file and I figureout the reason for the camunda not start.
The '--rest --webapps' is interpreted as one arg and not as 2 args.
After a long days trying to find the reason for that args are not being interpreted as 2 args I found an issue on the deployment.yaml file
Here is my conclusion, in the args part in the deployment.yaml file instead of
should be:
Do you think it is possible to do this change?
Or it will have impact in other use case ?
The text was updated successfully, but these errors were encountered: