Changeset View
Changeset View
Standalone View
Standalone View
MIGRATION.md
Show First 20 Lines • Show All 117 Lines • ▼ Show 20 Lines | |||||
To migrate to 0.10.0, you'll need to update your `values.yaml` with the following renames: | To migrate to 0.10.0, you'll need to update your `values.yaml` with the following renames: | ||||
`pipeline_run` -> `pipelineRun` | `pipeline_run` -> `pipelineRun` | ||||
`dagster_home` -> `dagsterHome` | `dagster_home` -> `dagsterHome` | ||||
`env_secrets` -> `envSecrets` | `env_secrets` -> `envSecrets` | ||||
`env_config_maps` -> `envConfigMaps` | `env_config_maps` -> `envConfigMaps` | ||||
## Restructured: scheduler in Helm values | |||||
When specifying the Dagster instance scheduler, rather than using a boolean field to switch between the | |||||
current options of `K8sScheduler` and `DagsterDaemonScheduler`, we now require the scheduler type to be | |||||
explicitly defined under `scheduler.type`. If the user specified `scheduler.type` has required config, | |||||
additional fields will need to be specified under `scheduler.config`. | |||||
`scheduler.type` and corresponding `scheduler.config` values are enforced via [JSON Schema](https://helm.sh/docs/topics/charts/#schema-files). | |||||
# Migrating to 0.9.0 | # Migrating to 0.9.0 | ||||
## Removal: `config` argument | ## Removal: `config` argument | ||||
We have removed the `config` argument to the `ConfigMapping`, `@composite_solid`, `@solid`, | We have removed the `config` argument to the `ConfigMapping`, `@composite_solid`, `@solid`, | ||||
`SolidDefinition`, `@executor`, `ExecutorDefinition`, `@logger`, `LoggerDefinition`, `@resource`, | `SolidDefinition`, `@executor`, `ExecutorDefinition`, `@logger`, `LoggerDefinition`, `@resource`, | ||||
and `ResourceDefinition` APIs, which we deprecated in 0.8.0, in favor of `config_schema`, as | and `ResourceDefinition` APIs, which we deprecated in 0.8.0, in favor of `config_schema`, as | ||||
described [here](#renaming-config). | described [here](#renaming-config). | ||||
▲ Show 20 Lines • Show All 627 Lines • Show Last 20 Lines |