Changeset View
Changeset View
Standalone View
Standalone View
helm/dagster/values.yaml
Show First 20 Lines • Show All 204 Lines • ▼ Show 20 Lines | - name: "k8s-example-user-code-1" | ||||
# Ex: "dagster api grpc -m dagster_test.test_project.test_pipelines.repo -a define_demo_execution_repo" | # Ex: "dagster api grpc -m dagster_test.test_project.test_pipelines.repo -a define_demo_execution_repo" | ||||
# would translate to: | # would translate to: | ||||
# dagsterApiGrpcArgs: | # dagsterApiGrpcArgs: | ||||
# - "-m" | # - "-m" | ||||
# - "dagster_test.test_project.test_pipelines.repo" | # - "dagster_test.test_project.test_pipelines.repo" | ||||
# - "-a" | # - "-a" | ||||
# - "define_demo_execution_repo" | # - "define_demo_execution_repo" | ||||
dagsterApiGrpcArgs: | dagsterApiGrpcArgs: | ||||
- "-f" | - "--python-file" | ||||
- "/example_project/example_repo/repo.py" | - "/example_project/example_repo/repo.py" | ||||
port: 3030 | port: 3030 | ||||
# Additional environment variables to set. | # Additional environment variables to set. | ||||
# A Kubernetes ConfigMap will be created with these environment variables. See: | # A Kubernetes ConfigMap will be created with these environment variables. See: | ||||
# https://kubernetes.io/docs/concepts/configuration/configmap/ | # https://kubernetes.io/docs/concepts/configuration/configmap/ | ||||
# | # | ||||
# Example: | # Example: | ||||
▲ Show 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
#################################################################################################### | #################################################################################################### | ||||
scheduler: | scheduler: | ||||
# Type can be one of [ | # Type can be one of [ | ||||
# DagsterDaemonScheduler, | # DagsterDaemonScheduler, | ||||
# CustomScheduler, | # CustomScheduler, | ||||
# ] | # ] | ||||
type: DagsterDaemonScheduler | type: DagsterDaemonScheduler | ||||
config: | config: {} | ||||
{} | |||||
## Uncomment this configuration will only be used if the CustomScheduler is selected. | ## Uncomment this configuration will only be used if the CustomScheduler is selected. | ||||
## Using this setting requires a custom Dagit image that defines the user specified | ## Using this setting requires a custom Dagit image that defines the user specified | ||||
## scheduler in an installed python module. | ## scheduler in an installed python module. | ||||
# customScheduler: | # customScheduler: | ||||
# module: ~ | # module: ~ | ||||
# class: ~ | # class: ~ | ||||
# config: {} | # config: {} | ||||
#################################################################################################### | #################################################################################################### | ||||
# Run Launcher: Configuration for run launcher | # Run Launcher: Configuration for run launcher | ||||
#################################################################################################### | #################################################################################################### | ||||
runLauncher: | runLauncher: | ||||
# Type can be one of [K8sRunLauncher, CeleryK8sRunLauncher, CustomRunLauncher] | # Type can be one of [K8sRunLauncher, CeleryK8sRunLauncher, CustomRunLauncher] | ||||
type: K8sRunLauncher | type: K8sRunLauncher | ||||
▲ Show 20 Lines • Show All 556 Lines • Show Last 20 Lines |