Hi,
I have been trying to implement the Camunda Helm charts for Camunda 8 and I have managed to get the connectors, Operate , Identity and Tasklist running. However with Optimize, Even it being a Java application. I have not been able to change the server.ssl.enabled=true and server.port=8443. The application is not respecting the JVM options or Env variables
Hi @pavan_Kumar - Optimize has an irregular setup compared to the other applications, because it is also shared with Camunda 7. We are continually working to bring all the applications in aligment though!
I believe these are the configuration values you are looking for:
container:
# A host name or IP address, to identify a specific network interface on
# which to listen.
host: ${CONTAINER_HOST:localhost}
# Allows you to specify a custom context path. If set, must start with a leading '/'
contextPath: ${CAMUNDA_OPTIMIZE_CONTEXT_PATH:null}
ports:
# A port number that will be used by Optimize to process HTTP connections.
# If set to null, ~ or left empty, http connections won't be accepted.
http: ${CAMUNDA_OPTIMIZE_CONTAINER_PORTS_HTTP:8090}
# A port number that will be used by Optimize to process
# secure HTTPS connections.
https: ${CAMUNDA_OPTIMIZE_CONTAINER_PORTS_HTTPS:8091}
# A port number that will be used by Optimize's Actuator management server
# always defaults to 8092
actuator: ${MANAGEMENT_SERVER_PORT:8092}
# HTTPS requires an SSL Certificate. When you generate an SSL Certificate,
# you are creating a keystore file and a keystore password for use when the
# browser interface connects
keystore:
location: ${CAMUNDA_OPTIMIZE_CONTAINER_KEYSTORE_LOCATION:keystore.jks}
password: ${CAMUNDA_OPTIMIZE_CONTAINER_KEYSTORE_PASSWORD:optimize}