Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/camunda-platform-8.8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1491,6 +1491,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `global.orchestration.Affinity` | can be used to define pod affinity or anti-affinity https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity | |
| `orchestration.priorityClassName` | can be used to define the broker pods priority https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass | `""` |
| `orchestration.index.prefix` | if specified, defines web apps index prefix in Elasticsearch/OpenSearch. Note, for Zeebe index prefix, use "global.elasticsearch.prefix". | `""` |
| `orchestration.index.replicas` | can be used to specify the number of replicas for indices in Elasticsearch/Opensearch | `1` |
| `orchestration.retention` | configuration for Camunda exporter index. | |
| `orchestration.retention.enabled` | if true, the ILM Policy is created and applied to the index templates. | `false` |
| `orchestration.retention.minimumAge` | defines how old the data must be, before the data is deleted as a duration. | `30d` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ data:
minimumAge: {{ .Values.orchestration.history.retention.minimumAge | quote }}
policyName: {{ .Values.orchestration.history.retention.policyName | quote }}
{{- end }}
index:
numberOfReplicas: {{ .Values.orchestration.index.replicas }}
awsEnabled: {{ .Values.global.opensearch.aws.enabled | default false }}
{{- end }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ data:
clusterName: elasticsearch
# Database full url
url: "http://camunda-platform-test-elasticsearch:9200"
index:
numberOfReplicas: 1
awsEnabled: false

#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ data:
clusterName: elasticsearch
# Database full url
url: "http://camunda-platform-test-elasticsearch:9200"
index:
numberOfReplicas: 1
awsEnabled: false

#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ data:
clusterName: elasticsearch
# Database full url
url: "http://camunda-platform-test-elasticsearch:9200"
index:
numberOfReplicas: 1
awsEnabled: false

#
Expand Down
5 changes: 5 additions & 0 deletions charts/camunda-platform-8.8/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6078,6 +6078,11 @@
"type": "string",
"description": "if specified, defines web apps index prefix in Elasticsearch/OpenSearch. Note, for Zeebe index prefix, use \"global.elasticsearch.prefix\".",
"default": ""
},
"replicas": {
"type": "number",
"description": "can be used to specify the number of replicas for indices in Elasticsearch/Opensearch",
"default": 1
}
}
},
Expand Down
2 changes: 2 additions & 0 deletions charts/camunda-platform-8.8/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2853,6 +2853,8 @@ orchestration:
index:
## @param orchestration.index.prefix if specified, defines web apps index prefix in Elasticsearch/OpenSearch. Note, for Zeebe index prefix, use "global.elasticsearch.prefix".
prefix: ""
## @param orchestration.index.replicas can be used to specify the number of replicas for indices in Elasticsearch/Opensearch
replicas: 1

## @extra orchestration.retention configuration for Camunda exporter index.
retention:
Expand Down
Loading