Skip to content

Commit b531bb0

Browse files
committed
feat: set default replicas for 8.8 camunda to 1 for ES and OS
1 parent 9f172ea commit b531bb0

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

charts/camunda-platform-8.8/templates/orchestration/configmap.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,8 @@ data:
285285
minimumAge: {{ .Values.orchestration.history.retention.minimumAge | quote }}
286286
policyName: {{ .Values.orchestration.history.retention.policyName | quote }}
287287
{{- end }}
288+
index:
289+
numberOfReplicas: {{ .Values.orchestration.index.numberOfReplicas }}
288290
{{- end }}
289291

290292
#

charts/camunda-platform-8.8/values.schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6073,6 +6073,11 @@
60736073
"type": "string",
60746074
"description": "if specified, defines web apps index prefix in Elasticsearch/OpenSearch. Note, for Zeebe index prefix, use \"global.elasticsearch.prefix\".",
60756075
"default": ""
6076+
},
6077+
"numberOfReplicas": {
6078+
"type": "number",
6079+
"description": "specifies the number of replicas for indices in Elasticsearch/Opensearch",
6080+
"default": 1
60766081
}
60776082
}
60786083
},

charts/camunda-platform-8.8/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2851,6 +2851,8 @@ orchestration:
28512851
index:
28522852
## @param orchestration.index.prefix if specified, defines web apps index prefix in Elasticsearch/OpenSearch. Note, for Zeebe index prefix, use "global.elasticsearch.prefix".
28532853
prefix: ""
2854+
## @param orchestration.index.numberOfReplicas specifies the number of replicas for indices in Elasticsearch/Opensearch
2855+
numberOfReplicas: 1
28542856

28552857
## @extra orchestration.retention configuration for Camunda exporter index.
28562858
retention:

0 commit comments

Comments
 (0)