Dstack

Latest version: v0.19.1

Safety actively analyzes 723625 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 8 of 15

0.18.11rc1

AMD

With the latest update, you can now specify an AMD GPU under `resources`. Below is an example.

yaml
type: service
name: amd-service-tgi

image: ghcr.io/huggingface/text-generation-inference:sha-a379d55-rocm
env:
- HUGGING_FACE_HUB_TOKEN
- MODEL_ID=meta-llama/Meta-Llama-3.1-70B-Instruct
- TRUST_REMOTE_CODE=true
- ROCM_USE_FLASH_ATTN_V2_TRITON=true
commands:
- text-generation-launcher --port 8000
port: 8000

resources:
gpu: MI300X
disk: 150GB

spot_policy: auto

model:
type: chat
name: meta-llama/Meta-Llama-3.1-70B-Instruct
format: openai


> [!NOTE]
> AMD accelerators are currently supported only with the `runpod` backend. Support for on-prem fleets and more backends
> is coming soon.

Other

* [Docs] Document projects 1547 by peterschmidt85 in https://github.com/dstackai/dstack/pull/1548
* [UI] Ensure users can create projects 191 by olgenn in https://github.com/dstackai/dstack/pull/1554
* [UI] Use a toggle button switching themes 190 by olgenn in https://github.com/dstackai/dstack/pull/1556
* [Bugfix] Force `root` in Kubernetes runs by jvstme in https://github.com/dstackai/dstack/pull/1555
* [Bugfix] Avoid TGI error `logit_bias: invalid type` by jvstme in https://github.com/dstackai/dstack/pull/1557
* Support the `vendor` property under `gpu` un-def in https://github.com/dstackai/dstack/pull/1558
* [Internal] Improve gateway auth issues troubleshooting by jvstme in https://github.com/dstackai/dstack/pull/1569
* [Feature] Implement "encryption at rest" by r4victor in https://github.com/dstackai/dstack/pull/1561
* [Feature] Implement project `manager` role by r4victor in https://github.com/dstackai/dstack/pull/1572
* [Feature] Implement user activation/deactivation by r4victor in https://github.com/dstackai/dstack/pull/1575
* [Bugfix] Support users without projects olgenn in https://github.com/dstackai/dstack/pull/1578
* [UI] Fix the Logs component appearance for the dark theme by olgenn in https://github.com/dstackai/dstack/pull/1579
* [UI] Minor restyle of the side navigation by olgenn in https://github.com/dstackai/dstack/pull/1580
* [Internal] Replace `pkg_resources` with `importlib.resources` by r4victor in https://github.com/dstackai/dstack/pull/1582
* [UI] Support `manager` project role olgenn in https://github.com/dstackai/dstack/pull/1566
* [Bugfix] Provision AWS instances in all eligible availability zones by r4victor in https://github.com/dstackai/dstack/pull/1585
* [Feature] Implement configurable default permissions by r4victor in https://github.com/dstackai/dstack/pull/1591
* [Internal] Reintroduce `tpu-` prefix; add `tpu` vendor alias by un-def in https://github.com/dstackai/dstack/pull/1587
* [Docs] Mention AMD GPUs, describe `gpu.vendor` property by un-def in https://github.com/dstackai/dstack/pull/1570
* [Bugfix] Fix global admin restricted by manager role by r4victor in https://github.com/dstackai/dstack/pull/1592
* [Bugfix] Fixed defect with incorrect setting project role in the UI by olgenn in https://github.com/dstackai/dstack/pull/1593
* [Internal] Order project members by r4victor in https://github.com/dstackai/dstack/pull/1594
* [Feature] Introduce default permissions 1559 by olgenn in https://github.com/dstackai/dstack/pull/1567
* [Bugfix] Abort provisioning fleet when parsing ssh key fails(1442) by swsvc in https://github.com/dstackai/dstack/pull/1589
* [Feature] Add LogStorage interface, CloudWatch Logs impl by un-def in https://github.com/dstackai/dstack/pull/1597
* [Docs] Document AMD support on RunPod by peterschmidt85 in https://github.com/dstackai/dstack/pull/1598

New contributors
* swsvc made their first contribution in https://github.com/dstackai/dstack/pull/1589

**Full changelog**: https://github.com/dstackai/dstack/compare/0.18.10...0.18.11rc1

0.18.10

Control plane UI

As a user, you most likely access `dstack` using its CLI. At the same time, the `dstack` server hosts a control plane that offers a wide range of functionality. It orchestrates cloud infrastructure, manages the state of resources, checks access, and much more.

Previously, managing projects and users was only possible via the API. The latest `dstack` update introduces a full-fledged web-based user interface, which you can now access on the same port where the server is hosted.

<img width="750" src="https://github.com/user-attachments/assets/b19fc3ce-321b-483a-94c6-2e5a65c7f62f">

The user interface allows you to configure projects, users, their permissions, manage resources and workloads, and much more.
To learn more about how to manage projects, users, and their permissions, check out the [Projects](https://dstack.ai/docs/concepts/projects/) page.

Environment variables interpolation

Previously, it wasn't possible to use environment variables to configure credentials for a private Docker registry. With this update, you can now use the following interpolation syntax to avoid hardcoding credentials in the configuration.

yaml
type: dev-environment
name: train

env:
- DOCKER_USER
- DOCKER_USERPASSWORD

image: dstackai/base:py3.10-0.4-cuda-12.1
registry_auth:
username: ${{ env.DOCKER_USER }}
password: ${{ env.DOCKER_USERPASSWORD }}


Network interfaces for port forwarding

When you run a dev environment or a task with `dstack apply`, it automatically forwards the remote ports to localhost. However, these ports are, by default, bound to `127.0.0.1`. If you'd like to make a port available on an arbitrary host, you can now specify the host using the `--host` option.

For example, this command will make the port available on all network interfaces:


dstack apply --host 0.0.0.0 -f my-task.dstack.yml


Full changelog

* [Feature] Add `--host HOST` arg to `dstack apply` command by un-def in https://github.com/dstackai/dstack/pull/1531
* [Feature] Interpolate env in registry_auth by r4victor in https://github.com/dstackai/dstack/pull/1540
* [Bugfix] Ensure `dstack` CLI exits with non-zero exit code on errors by r4victor in https://github.com/dstackai/dstack/pull/1529
* [Bugfix] Fix `http` services running on 443 in the logs by r4victor in https://github.com/dstackai/dstack/pull/1522
* [Bugfix] Forece the use of the `root` user in custom Docker images by jvstme in https://github.com/dstackai/dstack/pull/1538
* [Bugfix] Update Docker to 27.1.1 in `dstack` VM images by jvstme in https://github.com/dstackai/dstack/pull/1536
* [Feature] Add control plane UI by olgenn in https://github.com/dstackai/dstack/pull/1524
* [Docs] Document the `nvcc` property by peterschmidt85 in https://github.com/dstackai/dstack/pull/1526
* [Docs] Document `env` for on-prem fleets 1527 by peterschmidt85 in https://github.com/dstackai/dstack/pull/1530
* [Interna] Fix unlocking on transaction rollback by r4victor in https://github.com/dstackai/dstack/pull/1537
* [Internal] Bump base `dstack` image version to `0.5` by jvstme in https://github.com/dstackai/dstack/pull/1541

**All changes**: https://github.com/dstackai/dstack/compare/0.18.9...0.18.10

0.18.9

Base Docker image with `nvcc`

If you don't specify a custom Docker image, `dstack` uses its own base image with essential CUDA drivers, `python`, `pip`, and `conda` (Miniforge). Previously, this image didn't include `nvcc`, needed for compiling custom CUDA kernels (e.g., Flash Attention).

With version 0.18.9, you can now include `nvcc`.

yaml
type: task

0.18.8

GCP volumes

1477 added support for `gcp` volumes:


type: volume
name: my-gcp-volume
backend: gcp
region: europe-west1
size: 100GB


Previously, volumes were only supported for `aws` and `runpod`.

Major bugfixes

1486 fixed a major bug introduced in 0.18.7 that could lead to instances not being terminated in the cloud.

Other
* Update Alignment Handbook example by peterschmidt85 in https://github.com/dstackai/dstack/pull/1475
* Add automatic generation of examples documentation by peterschmidt85 in https://github.com/dstackai/dstack/pull/1485
* Start dstack-shim service after network-online by un-def in https://github.com/dstackai/dstack/pull/1480
* Remove host_info.json on instance deploy if exists by un-def in https://github.com/dstackai/dstack/pull/1479
* Fix broken user token rotation API by r4victor in https://github.com/dstackai/dstack/pull/1487

New Contributors
* un-def made their first contribution in https://github.com/dstackai/dstack/pull/1480

**Full Changelog**: https://github.com/dstackai/dstack/compare/0.18.7...0.18.8

0.18.7

Fleets

With fleets, you can now describe clusters declaratively and create them in both cloud and on-prem with a single command. Once a fleet is created, it can be used with dev environments, tasks, and services.

Cloud fleets

To provision a fleet in the cloud, specify the required resources, number of nodes, and other optional parameters.

yaml
type: fleet
name: my-fleet
placement: cluster
nodes: 2
resources:
gpu: 24GB


On-prem fleets

To create a fleet from on-prem servers, specify their hosts along with the user, port, and SSH key for connection via SSH.

yaml
type: fleet
name: my-fleet
placement: cluster
ssh_config:
user: ubuntu
identity_file: ~/.ssh/id_rsa
hosts:
- 3.255.177.51
- 3.255.177.52


To create or update the fleet, simply call the [dstack apply](https://dstack.ai/docs/reference/cli/#dstack-apply) command:

shell
dstack apply -f examples/fleets/my-fleet.dstack.yml


Learn more about fleets in the [documentation](https://dstack.ai/docs/fleets/).

Deprecating `dstack run`

Now that we support dstack apply for gateways, volumes, and fleets, we have extended this support to dev environments, tasks, and services. Instead of using `dstack run WORKING_DIR -f CONFIG_FILE`, you can now use `dstack apply -f CONFIG_FILE`.

Also, it's now possible to specify a `name` for dev environments, tasks, and services, just like for gateways, volumes, and fleets.


type: dev-environment
name: my-ide

0.18.7rc2

This is a preview build of the upcoming `0.18.7` update, bringing a few major new features and many bug fixes.

Fleets

> [!IMPORTANT]
> With fleets, you can now describe clusters declaratively and create them in both cloud and on-prem with a single command. Once a fleet is created, it can be used with dev environments, tasks, and services.

Cloud fleets

To provision a fleet in the cloud, specify the required resources, number of nodes, and other optional parameters.

yaml
type: fleet
name: my-fleet
placement: cluster
nodes: 2
resources:
gpu: 24GB


On-prem fleets

To create a fleet from on-prem servers, specify their hosts along with the user, port, and SSH key for connection via SSH.

yaml
type: fleet
name: my-fleet
placement: cluster
ssh_config:
user: ubuntu
identity_file: ~/.ssh/id_rsa
hosts:
- 3.255.177.51
- 3.255.177.52


To create or update the fleet, simply call the [dstack apply](https://dstack.ai/docs/reference/cli/#dstack-apply) command:

shell
dstack apply -f examples/fleets/my-fleet.dstack.yml


Learn more about fleets in the [documentation](https://dstack.ai/docs/fleets/).

Deprecating `dstack run`

> [!IMPORTANT]
> Now that we support dstack apply for gateways, volumes, and fleets, we have extended this support to dev environments, tasks, and services. Instead of using `dstack run WORKING_DIR -f CONFIG_FILE`, you can now use `dstack apply -f CONFIG_FILE`.

Also, it's now possible to specify a `name` for dev environments, tasks, and services, just like for gateways, volumes, and fleets.


type: dev-environment
name: my-ide

Page 8 of 15

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.