Optimize - Camunda Self Managed

Hi All,

We have deployed Camunda helm chart and use OpenSearch and not ES.

HelmChart : 10.1.1

My setup is as follows:

opensearch:
    enabled: true
    aws:
      enabled: true
    tls:
      enabled: false
      existingSecret:
    auth:
      username:
      password:
      existingSecret:
      existingSecretKey:
    url:
      protocol: https
      host: aws.opensearch.com
      port: 443

When deploying Optimize we get this error:

Please advise how I can set that property for optimize to use OpenSearch

Have anyone found where to set the above property?

For anyone looking for the answer, please update your openseacrh with the following setting and operate will connect to Opensearch 2.5

PUT _cluster/settings
{
  "persistent": {
    "compatibility": {
      "override_main_response_version": false
    }
  }
}

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.