Changeset View
Changeset View
Standalone View
Standalone View
helm/dagster/templates/configmap-instance.yaml
Show First 20 Lines • Show All 73 Lines • ▼ Show 20 Lines | run_coordinator: | ||||
{{- if eq $runCoordinatorType "QueuedRunCoordinator" }} | {{- if eq $runCoordinatorType "QueuedRunCoordinator" }} | ||||
{{- include "dagsterYaml.runCoordinator.queued" . | indent 6 -}} | {{- include "dagsterYaml.runCoordinator.queued" . | indent 6 -}} | ||||
{{- else if eq $runCoordinatorType "CustomRunCoordinator" }} | {{- else if eq $runCoordinatorType "CustomRunCoordinator" }} | ||||
{{- include "dagsterYaml.runCoordinator.custom" . | indent 6 -}} | {{- include "dagsterYaml.runCoordinator.custom" . | indent 6 -}} | ||||
{{- end }} | {{- end }} | ||||
{{- end }} | {{- end }} | ||||
{{- $computeLogManagerType := .Values.computeLogManager.type }} | {{- $computeLogManagerType := .Values.computeLogManager.type }} | ||||
{{- if not (eq $computeLogManagerType "LocalComputeLogManager") }} | |||||
compute_logs: | compute_logs: | ||||
{{- if has $computeLogManagerType (list "NoOpComputeLogManager" "LocalComputeLogManager") -}} | |||||
{{- include "dagsterYaml.computeLogManager.noop" . | indent 6 -}} | |||||
{{- if eq $computeLogManagerType "AzureBlobComputeLogManager" }} | {{- if eq $computeLogManagerType "AzureBlobComputeLogManager" }} | ||||
{{- include "dagsterYaml.computeLogManager.azure" . | indent 6 -}} | {{- include "dagsterYaml.computeLogManager.azure" . | indent 6 -}} | ||||
{{- else if eq $computeLogManagerType "GCSComputeLogManager" }} | {{- else if eq $computeLogManagerType "GCSComputeLogManager" }} | ||||
{{- include "dagsterYaml.computeLogManager.gcs" . | indent 6 -}} | {{- include "dagsterYaml.computeLogManager.gcs" . | indent 6 -}} | ||||
{{- else if eq $computeLogManagerType "S3ComputeLogManager" }} | {{- else if eq $computeLogManagerType "S3ComputeLogManager" }} | ||||
{{- include "dagsterYaml.computeLogManager.s3" . | indent 6 -}} | {{- include "dagsterYaml.computeLogManager.s3" . | indent 6 -}} | ||||
{{- else if eq $computeLogManagerType "CustomComputeLogManager" }} | {{- else if eq $computeLogManagerType "CustomComputeLogManager" }} | ||||
{{- include "dagsterYaml.computeLogManager.custom" . | indent 6 -}} | {{- include "dagsterYaml.computeLogManager.custom" . | indent 6 -}} | ||||
{{- end }} | {{- end }} | ||||
{{- end }} | {{- end }} |