Hi,
I am trying to set up recent camunda 8.8 basic components(Orchestration - Zeebe, Operate, Tasklist) with embedded elasticsearch and connectors without any security ,any ingress and domain in AWS EKS clusters. Just a pure local setup similar to kind cluster setup.
Deploying attached values.yaml bring up the pods and services for camunda-connectors, camunda-elasticsearch, camunda-zeebe and camunda-zeebe-gateway components.
After port forward of camunda-zeebe-gateway to port 8080, opened another terminal and hit the command curl -u demo:demo http://localhost:8080/v2/topology which brought proper results.
{“brokers”:[{“nodeId”:0,“host”:“camunda-zeebe-0.camunda-zeebe”,“port”:26501,“partitions”:[{“partitionId”:1,“role”:“leader”,“health”:“healthy”}],“version”:“8.8.9”}],“clusterSize”:1,“partitionsCount”:1,“replicationFactor”:1,“gatewayVersion”:“8.8.9”,“lastCompletedChangeId”:“-1”}
But when I try to hit Operate/Tasklist, with http://localhost:8080/operate or http://localhost:8080/tasklist, web page does not load.
Zeebe pod logs show below errors multiple times:
[grpc-executor-0] WARN
io.camunda.search.es.clients.ElasticsearchSearchClient - Failed to execute search query
co.elastic.clients.elasticsearch._types.ElasticsearchException: [es/search] failed: [index_not_found_exception] no such index [camunda-user-8.8.0_alias]
[grpc-executor-0] WARN
io.camunda.search.es.clients.ElasticsearchSearchClient - Failed to execute search query
org.elasticsearch.client.ResponseException: method [POST], host [http://camunda-elasticsearch:9200], URI [/camunda-user-8.8.0_alias/search?typed_keys=true], status line [HTTP/1.1 503 Service Unavailable]
{“error”:{“root_cause”:[{“type”:“no_shard_available_action_exception”,“reason”:“[camunda-elasticsearch-master-0][10.229.59.149:9300][indices:data/read/search[phase/query]]”}],“type”:“search_phase_execution_exception”,“reason”:“all shards failed”,“phase”:“query”,“grouped”:true,“failed_shards”:[{“shard”:0,“index”:"camunda-user-8.8.0",“node”:“HyaF9xB0TRCnaNplDGM9Dw”,“reason”:{“type”:“no_shard_available_action_exception”,“reason”:“[camunda-elasticsearch-master-0][10.229.59.149:9300][indices:data/read/search[phase/query]]”}}]},“status”:503}
Tried with multiple trial and errors based on camunda official documentation and GPT response.
But I could not identify where I am going wrong exactly. Could someone please help on this?
values.yaml (1.7 KB)