Changeset View
Changeset View
Standalone View
Standalone View
helm/dagster/values.yaml
Show First 20 Lines • Show All 142 Lines • ▼ Show 20 Lines | pipeline_run: | ||||
# A Kubernetes ConfigMap will be created with these environment variables. | # A Kubernetes ConfigMap will be created with these environment variables. | ||||
env: | env: | ||||
YOUR_ENV_VAR: "" | YOUR_ENV_VAR: "" | ||||
#################################################################################################### | #################################################################################################### | ||||
# Scheduler: Configuration for scheduler | # Scheduler: Configuration for scheduler | ||||
#################################################################################################### | #################################################################################################### | ||||
scheduler: | scheduler: | ||||
# If k8sEnabled is true, then use K8sScheduler; else, use CronScheduler | # Type can be one of [CronScheduler, K8sScheduler] | ||||
k8sEnabled: false | type: CronScheduler | ||||
# (K8sScheduler only) Image for K8s CronJob(s) to launch K8s Job(s). This image does | |||||
# need access to dagster code (to call `dagster api launch_scheduled_execution`) and instance yaml | config: | ||||
# This configuration will only be used if the K8sScheduler is selected | |||||
K8sScheduler: | |||||
# Image for K8s CronJob(s) to launch K8s Job(s). This image needs access to dagster code | |||||
# (to call `dagster api launch_scheduled_execution`) and instance yaml | |||||
# but does not need access to user code. | # but does not need access to user code. | ||||
image: | image: | ||||
repository: "dagster/k8s-dagster" | repository: "dagster/k8s-dagster" | ||||
tag: "latest" | tag: "latest" | ||||
pullPolicy: Always | pullPolicy: Always | ||||
# (K8sScheduler only) K8s Namespace for K8s CronJob(s) and launched K8s Job(s) | |||||
# K8s Namespace for K8s CronJob(s) and launched K8s Job(s) | |||||
schedulerNamespace: "" | schedulerNamespace: "" | ||||
# (K8sScheduler only) Set to true to load kubeconfig from within cluster | |||||
# Set to true to load kubeconfig from within cluster | |||||
loadInclusterConfig: true | loadInclusterConfig: true | ||||
# (K8sScheduler only) File to load kubeconfig from. Only set this if loadInclusterConfig is false. | |||||
# File to load kubeconfig from. Only set this if loadInclusterConfig is false. | |||||
kubeconfigFile: "" | kubeconfigFile: "" | ||||
# (K8sScheduler only) Additional (secret) environment variables can be retrieved and set from | |||||
# Additional (secret) environment variables can be retrieved and set from | |||||
# the Secrets enumerated as a list here | # the Secrets enumerated as a list here | ||||
env_secrets: | envSecrets: [] | ||||
- "" | |||||
#################################################################################################### | #################################################################################################### | ||||
# PostgreSQL: Configuration values for postgresql | # PostgreSQL: Configuration values for postgresql | ||||
# | # | ||||
# https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md | # https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md | ||||
# | # | ||||
# A PostgreSQL database is required to run Dagster on Kubernetes. If postgresql.enabled is marked as | # A PostgreSQL database is required to run Dagster on Kubernetes. If postgresql.enabled is marked as | ||||
# false, the PG credentials specified here will still be used, and should point to an external PG | # false, the PG credentials specified here will still be used, and should point to an external PG | ||||
▲ Show 20 Lines • Show All 268 Lines • Show Last 20 Lines |