Skip to main content

Introduction

This experimental CLI allows you to manage user code deployments for a Dagster instance deployed on Kubernetes. It packages your code branch into a Docker container, uploads it to your container registry, and updates your existing Dagster instance to enable your user code deployment.

Pre-requisites

  • kubectl with a valid config
  • Helm 3
  • Podman
  • Python 3.10+
  • Azure CLI (if you are using Azure container registry and use_az_login)

Installation

  • Install from PyPI:

    pip install dagster-uc
    
  • Create a configuration file named .config_user_code_deployments.yaml in the root of your repository or in your home directory. You can also create one by running:

    dagster-uc init-config -f '.config_user_code_deployments.yaml'
    

Configuration (nested structure)

The configuration format is now nested and grouped by concerns (e.g. docker, kubernetes, helm). The top-level keys you will commonly use are:

  • defaults — values applied to every environment unless overridden.
  • Per-environment sections (e.g. dev, acc, prd) — environment-specific overrides.
  • docker — Docker/build related settings (dockerfile, registry, image prefix, build env vars, etc).
  • kubernetes — Kubernetes-specific settings (context, namespace, resource requests/limits, env and secret lists).
  • helm — Helm-related settings (for example, skip schema validation).
  • chart — chart-specific values you may want to supply into the user-deployments Helm chart.
  • use_latest_chart_version, use_project_name, and project_name_override — deployment behavior flags.

Order of loading configuration:

  1. defaults
  2. environment-specific keys (e.g. dev)
  3. environment variable overrides

Below is an example config that mirrors the new nested structure:

defaults:
  repository_root: "."
  code_path: example/repo.py
  dagster_version: 1.11.16
  cicd: false
  use_project_name: True
  use_latest_chart_version: True
  # Docker configuration (grouped under `docker`)
  docker:
    docker_root: "."
    docker_env_vars:
      - FOO
      - FOO='string'
    image_prefix: "example"
    use_az_login: True
    container_registry_chart_path: "helm/dagster/dagster-user-deployments"

  # Helm configuration (grouped under `helm`)
  helm:
    skip_schema_validation: True

  # Kubernetes configuration (grouped under `kubernetes`)
  kubernetes:
    namespace: dagster
    node: cpunode
    requests:
      cpu: 150m
      memory: 750Mi
    limits:
      cpu: 4000m
      memory: 2000Mi
    user_code_deployment_env_secrets:
      - name: dagster-storage-secret
    pull_policy: Always

  chart: {}

dev:
  environment: dev
  dagster_gui_url: "http://dagster.dev"

  docker:
    dockerfile: "docker/dev.Dockerfile"
    container_registry: dagster-uc.dev.acr.io

  kubernetes:
    context: "aks-dev"
    user_code_deployment_env:
      - name: ON_K8S
        value: '1'
      - name: ENVIRONMENT
        value: dev
    pull_policy: IfNotPresent
acc:
  environment: acc
  dagster_gui_url: "http://dagster.acc"
  project_name_override: 'example-acc'

  docker:
    dockerfile: "docker/acc.Dockerfile"
    container_registry: dagster-uc.acc.acr.io

  kubernetes:
    context: "aks-acc"
    user_code_deployment_env:
      - name: ON_K8S
        value: '1'
      - name: ENVIRONMENT
        value: acc

Notes on common config keys (now nested):

  • code_path — path to the Python module that starts your Dagster definitions (used to start the user-code gRPC server).
  • docker.dockerfile — path to the Dockerfile to build the image.
  • docker.container_registry — target container registry for the built image (per-environment override).
  • docker.image_prefix — prefix used when naming images.
  • docker.docker_env_vars — list of environment variables to pass into the build process.
  • docker.use_az_login — set to True if you need to log in to Azure before pushing images.
  • kubernetes.context — the kube context to use for deployments in that environment.
  • kubernetes.namespace — the namespace where Dagster and user deployments live.
  • kubernetes.requests / kubernetes.limits — resource requests and limits for the user code deployment pod.
  • kubernetes.user_code_deployment_env — a list of name/value env objects to inject into the user-code deployment container.
  • kubernetes.user_code_deployment_env_secrets — a list of secrets to be mounted/injected as environment variables.
  • kubernetes.pull_policy - Standard Kubernetes Pull Policy for images, can either be 'IfNotPresent' or 'Always'
  • helm.skip_schema_validation — useful for older Helm chart setups or when schema validation causes issues.
  • use_project_name — when True, the project name from pyproject.toml is prefixed to the deployment name.
  • project_name_override - When set, the project name from pyproject.toml is overridden with this value

Overriding Config with Environment Variables

Environment variables can still be used to override configuration at load time but you need to scaffold them in the yaml using cicd: ${CICD}. You can export common flags (for example CICD=TRUE or VERBOSE=TRUE) to affect behavior — top-level boolean or string fields are typically overridden this way. If you need to override nested values in automation, set the environment variables your automation expects before running the CLI.

Usage

  • Deploy the currently checked out Git branch:

    dagster-uc deployment deploy
    
  • See all available commands:

    dagster-uc --help
    

Command Line Interface

Global Options

dagster-uc [GLOBAL_OPTIONS] <command> [SUBCOMMAND] [OPTIONS]

Global options:

  • -e, --environment TEXT — Target environment (default: dev). Available options are derived from your YAML config file
  • -c, --config-file PATH — Path to your YAML config file. (default: '.')
  • -v, --verbose — Enable DEBUG logs.

Show Config

dagster-uc [GLOBAL_OPTIONS] show-config

Pretty print the effective configuration for the selected environment.

Deployment List

dagster-uc [GLOBAL_OPTIONS] deployment list 

List active user code deployments registered in the ConfigMap.

Deploy Deployment

dagster-uc [GLOBAL_OPTIONS] deployment deploy [OPTIONS]

Using the configuration file provided, build a dagster-user-deployment image using podman/buildah, push it to a container registry, then adds/creates (if not present) a code location deployment for Dagster to read.

Options:

  • -f, --force — Always do a full redeploy (reapply manifests; useful for clean updates).
  • -b, --skip-build — Skip building/pushing the container image.
  • -s, --deployment-name-suffix TEXT — Append a suffix to the default name (branch-based).
  • -n, --deployment-name TEXT — Override the name entirely (ignores suffix).
  • -r, --reset-lock — Reset the deployment semaphore if a previous deploy is stuck.
  • -u, --use-sudo — Run the build tool with sudo.
  • --ignore-check — Skip the podman presence check (helpful in opinionated CI).
  • --extra-env TEXT (repeatable) — Inject extra environment variables into the user code pod (must be in format '{key}={value}').

Deployment Check

dagster-uc [GLOBAL_OPTIONS] deployment check [-n name] [-t timeout]

Options:

  • -n, --name TEXT — Deployment name; if omitted, uses the default for the current branch.
  • -t, --timeout INTEGER — Seconds to follow logs (default: 60).

Deployment Revive

dagster-uc [GLOBAL_OPTIONS] deployment revive -t tag -n name
  • -n, --name TEXT — Name of the deployment to revive (UI : will be normalized to --).
  • -t, --tag TEXT — Existing image tag to use.

Deployment Delete

dagster-uc [GLOBAL_OPTIONS] deployment delete [OPTIONS]

Options:

  • -a, --all — Delete all deployment.
  • -n, --name TEXT — Delete a single deployment by name (UI : normalized to --).
  • -b, --branch TEXT — Use a branch name to compute the deployment name (respects project-name rules). Defaults to current git branch.

Branch naming and deployments

  • When cicd: true is set, the deployment name is derived from the environment value.

  • When cicd: false, the deployment name is derived from the Git branch name. The branch name is normalized by replacing non-alphanumeric characters with hyphens and stripping leading/trailing hyphens. Example: feat: my amazing feature -> feat-my-amazing-feature

  • You can deploy the same branch multiple times by supplying --deployment-name-suffix, which appends a suffix to the deployment name.

  • When use_project_name is enabled, the internal deployment name will be prefixed by a project slug derived from your pyproject.toml. Internally the prefix separator is -- so an example name may be my-project--feat-a, which appears in the Dagster UI as project:branch.

Building and container behavior

  • The build process passes a BRANCH_NAME build-arg so your code can behave differently per branch (e.g. selecting secrets, configuration).
  • Images are versioned: the CLI will check the registry for existing tags and increment a version to avoid reusing tags that could break running jobs.
  • Use a registry lifecycle/garbage-collection policy to keep old images from accumulating.

Example Dockerfile pattern:

FROM python:3.11-slim
ARG BRANCH_NAME
ARG DIR="APP"
WORKDIR $DIR
COPY my_project my_project
COPY pyproject.toml uv.lock README.md ./
RUN --mount=type=cache,target=/root/.cache/uv \
    uv sync --no-dev --link-mode=copy
ENV PATH="/$DIR/.venv/bin:$PATH"
ENV BRANCH_NAME=${BRANCH_NAME}

Kubernetes / Helm

  • Make sure kubernetes.context can access the kubernetes.namespace.
  • Configure kubernetes.requests and kubernetes.limits for the user-code deployment pod appropriately.
  • Pass environment variables via kubernetes.user_code_deployment_env and secrets via kubernetes.user_code_deployment_env_secrets.
  • Helm values and chart overrides can be supplied under chart in the config file — these are passed to the user-deployments Helm chart.

Tips

  • Keep a defaults section in your config file to reduce duplication between environments.
  • Use environment-specific overrides for registry, kube context, and secrets.
  • If you use Azure, set docker.use_az_login: True and ensure your environment has access to az and the appropriate credentials.

Troubleshooting

  • If Helm chart upgrades fail due to schema validation, try setting helm.skip_schema_validation: True in your defaults or environment override.
  • Check that kubernetes.context points to the correct cluster and that your kube credentials have permission to modify the target namespace.
  • Ensure the code_path points to an importable Python module that starts your Dagster definitions.

Example test config

A small, real example is checked into the repo under tests/config/.config_user_code_deployments.yaml and demonstrates the new nested structure used by the CLI tests.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dagster_uc-0.6.7.tar.gz (80.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dagster_uc-0.6.7-py3-none-any.whl (36.0 kB view details)

Uploaded Python 3

File details

Details for the file dagster_uc-0.6.7.tar.gz.

File metadata

  • Download URL: dagster_uc-0.6.7.tar.gz
  • Upload date:
  • Size: 80.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dagster_uc-0.6.7.tar.gz
Algorithm Hash digest
SHA256 31be9cb79687924deda69249c55168f11d58f05dd8fa00f17d91d09c5db856eb
MD5 4489b0d9dc5f84abb3cbc53441b64e68
BLAKE2b-256 7d3660701755cc3ede5817cec2af37ff114fd3126b327ab74123e1817e7befac

See more details on using hashes here.

File details

Details for the file dagster_uc-0.6.7-py3-none-any.whl.

File metadata

  • Download URL: dagster_uc-0.6.7-py3-none-any.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dagster_uc-0.6.7-py3-none-any.whl
Algorithm Hash digest
SHA256 1df65872f8fc7f36988010b95226b624bfd8af4eee4c33cb25069eaaece3b87c
MD5 709b582036a23aa1efc1f1a97a963a2d
BLAKE2b-256 db3b1fa9fb5af0bbf1631b13b5c34866979289f2e6138afdd6c9506d190e2034

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.6.7 This release

2 files

0.6.6

2 files

0.6.5

2 files

0.6.4

2 files

0.6.3

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.6

2 files

0.5.5

2 files

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.5

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

1 file

0.3.0

1 file

0.2.4

1 file

0.2.3

1 file

0.2.2

1 file

0.2.1

1 file

0.2.0

1 file

0.1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page