File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed
camunda-platform-8.8/templates/orchestration/files
camunda-platform-8.9/templates/orchestration/files Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,17 @@ zeebe:
280280 minimumAge : {{ .Values.orchestration.retention.minimumAge | quote }}
281281 policyName : {{ .Values.orchestration.retention.policyName | quote }}
282282 {{- end }}
283- {{- else if or (and .Values.global.opensearch.enabled .Values.orchestration.exporters.zeebe.enabled) (and .Values.global.opensearch.enabled .Values.optimize.enabled) (and .Values.global.opensearch.enabled .Values.orchestration.migration.data.enabled) }}
283+ {{- else if and
284+ (or
285+ (and .Values.global.opensearch.enabled .Values.orchestration.exporters.zeebe.enabled)
286+ (and .Values.global.opensearch.enabled .Values.optimize.enabled)
287+ (and .Values.global.opensearch.enabled .Values.orchestration.migration.data.enabled)
288+ )
289+ (or
290+ .Values.orchestration.exporters.zeebe.enabled
291+ (lt (int (default 0 .Values.global.multiregion.regions)) 2)
292+ )
293+ }}
284294 opensearch :
285295 className : " io.camunda.zeebe.exporter.opensearch.OpensearchExporter"
286296 args :
Original file line number Diff line number Diff line change @@ -278,7 +278,16 @@ zeebe:
278278 minimumAge : {{ .Values.orchestration.retention.minimumAge | quote }}
279279 policyName : {{ .Values.orchestration.retention.policyName | quote }}
280280 {{- end }}
281- {{- else if or (and .Values.global.opensearch.enabled .Values.orchestration.exporters.zeebe.enabled) (and .Values.global.opensearch.enabled .Values.optimize.enabled) }}
281+ {{- else if and
282+ (or
283+ (and .Values.global.opensearch.enabled .Values.orchestration.exporters.zeebe.enabled)
284+ (and .Values.global.opensearch.enabled .Values.optimize.enabled)
285+ )
286+ (or
287+ .Values.orchestration.exporters.zeebe.enabled
288+ (lt (int (default 0 .Values.global.multiregion.regions)) 2)
289+ )
290+ }}
282291 opensearch :
283292 className : " io.camunda.zeebe.exporter.opensearch.OpensearchExporter"
284293 args :
You can’t perform that action at this time.
0 commit comments