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