Hello Guys,
So I’m still trying to use a Helm Chart to deploy camunda to my openshift cluster.
My objetive is to remove the default Invoice App, and Niall already told me that i should use the following options to achieve this: “–webapps --rest --swaggerui”.
The issue is that inside my values.yaml, if i send just one paramater like “–webapps” or any other, it works.
But if i send 2 or more parameteres, it just crashes while creating container.
image:
name: camunda/camunda-bpm-platform
tag: run-latest
command: ["./camunda.sh"]
args: ["--webapps --swaggerui"]
Do you guys have any suggestion about this?
Thank you.