Changeset View
Changeset View
Standalone View
Standalone View
helm/dagster/values.yaml
Show First 20 Lines • Show All 86 Lines • ▼ Show 20 Lines | startupProbe: | ||||
successThreshold: 1 | successThreshold: 1 | ||||
failureThreshold: 12 | failureThreshold: 12 | ||||
#################################################################################################### | #################################################################################################### | ||||
# Compute Log Manager: Configuration for the compute log manager | # Compute Log Manager: Configuration for the compute log manager | ||||
#################################################################################################### | #################################################################################################### | ||||
computeLogManager: | computeLogManager: | ||||
# Type can be one of [ | # Type can be one of [ | ||||
# LocalComputeLogManager, | |||||
# AzureBlobComputeLogManager, | # AzureBlobComputeLogManager, | ||||
# GCSComputeLogManager, | # GCSComputeLogManager, | ||||
# S3ComputeLogManager, | # S3ComputeLogManager, | ||||
# CustomComputeLogManager, | # CustomComputeLogManager, | ||||
# ] | # ] | ||||
type: ~ | type: LocalComputeLogManager | ||||
config: | |||||
# This configuration will only be used if the AzureBlobComputeLogManager is selected | |||||
azureBlobComputeLogManager: | |||||
storageAccount: ~ | |||||
container: ~ | |||||
secretKey: ~ | |||||
localDir: ~ | |||||
prefix: ~ | |||||
# This configuration will only be used if the GCSComputeLogManager is selected | |||||
gcsComputeLogManager: | |||||
bucket: ~ | |||||
localDir: ~ | |||||
prefix: ~ | |||||
# This configuration will only be used if the S3ComputeLogManager is selected | |||||
s3ComputeLogManager: | |||||
bucket: ~ | |||||
localDir: ~ | |||||
prefix: ~ | |||||
useSsl: ~ | |||||
verify: ~ | |||||
verifyCertPath: ~ | |||||
endpointUrl: ~ | |||||
# This configuration will only be used if the CustomComputeLogManager is selected. | |||||
# Using this setting requires a custom Dagit image that defines the user specified | |||||
# compute log manager in an installed python module. | |||||
customComputeLogManager: | |||||
module: ~ | |||||
class: ~ | |||||
config: {} | config: {} | ||||
## Uncomment this configuration if the AzureBlobComputeLogManager is selected | |||||
# azureBlobComputeLogManager: | |||||
# storageAccount: ~ | |||||
# container: ~ | |||||
# secretKey: ~ | |||||
# localDir: ~ | |||||
# prefix: ~ | |||||
## Uncomment this configuration if the GCSComputeLogManager is selected | |||||
# gcsComputeLogManager: | |||||
# bucket: ~ | |||||
# localDir: ~ | |||||
# prefix: ~ | |||||
## Uncomment this configuration if the S3ComputeLogManager is selected | |||||
# s3ComputeLogManager: | |||||
# bucket: ~ | |||||
# localDir: ~ | |||||
# prefix: ~ | |||||
# useSsl: ~ | |||||
# verify: ~ | |||||
# verifyCertPath: ~ | |||||
# endpointUrl: ~ | |||||
## Uncomment this configuration if the CustomComputeLogManager is selected. | |||||
## Using this setting requires a custom Dagit image that defines the user specified | |||||
## compute log manager in an installed python module. | |||||
# customComputeLogManager: | |||||
# module: ~ | |||||
# class: ~ | |||||
# config: {} | |||||
#################################################################################################### | #################################################################################################### | ||||
# User Code Deployments: Configuration for user code containers to be loaded via GRPC server. For | # User Code Deployments: Configuration for user code containers to be loaded via GRPC server. For | ||||
# each item in the "deployments" list, a K8s Deployment and K8s Service will be created to run the | # each item in the "deployments" list, a K8s Deployment and K8s Service will be created to run the | ||||
# GRPC server that Dagit/Dagster communicates with to get repository information and the current | # GRPC server that Dagit/Dagster communicates with to get repository information and the current | ||||
# image information. These deployments can be updated independently of Dagit, and Dagit/Dagster | # image information. These deployments can be updated independently of Dagit, and Dagit/Dagster | ||||
# will pull the current image for all execution. When using a distributed executor (such as | # will pull the current image for all execution. When using a distributed executor (such as | ||||
# Celery-K8s) for pipeline run, the current image will be queried once and used for all | # Celery-K8s) for pipeline run, the current image will be queried once and used for all | ||||
▲ Show 20 Lines • Show All 484 Lines • Show Last 20 Lines |