Skip to content

Commit 532a2d4

Browse files
[Blog] Nebius joins dstack Sky GPU marketplace, first to support clusters
1 parent 7e728a4 commit 532a2d4

File tree

1 file changed

+121
-0
lines changed

1 file changed

+121
-0
lines changed
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
---
2+
title: Nebius joins dstack Sky GPU marketplace, first to support clusters
3+
date: 2025-09-17
4+
description: "TBA"
5+
slug: nebius-in-dstack-sky
6+
image: https://dstack.ai/static-assets/static-assets/images/dstack-sky-nebius.png
7+
categories:
8+
- Changelog
9+
---
10+
11+
# Nebius joins dstack Sky GPU marketplace, first to support clusters
12+
13+
`dstack` is an open-source control plane for orchestrating GPU workloads. It can provision cloud VMs, run on top of Kubernetes, or manage on-prem clusters.
14+
If you don’t want to self-host, you can use `dstack` Sky, the managed version of `dstack` that also provides access to cloud GPUs via its marketplace.
15+
16+
With our latest release, we’re excited to announce that [Nebius :material-arrow-top-right-thin:{ .external }](https://nebius.com/){:target="_blank"}, leading neocloud, has joined the [dstack Sky :material-arrow-top-right-thin:{ .external }](https://sky.dstack.ai){:target="_blank"} marketplace
17+
to offer on-demand and spot GPUs, including clusters.
18+
19+
<img src="https://dstack.ai/static-assets/static-assets/images/dstack-sky-nebius.png" width="630"/>
20+
21+
<!-- more -->
22+
23+
Last week we published the [state of cloud GPU](state-of-cloud-gpu-2025.md), a study of the GPU market. As noted there, Nebius is one of the few neoclouds offering GPUs at scale, including on-demand, spot, and clusters.
24+
25+
Since early this year, the open-source version of `dstack` has supported Nebius, making it easy to manage clusters and orchestrate compute cost-effectively. Thanks to the partnership, the integration has since matured, enabling Nebius customers to simplify operations and reduce GPU costs for both training and inference.
26+
27+
## About dstack Sky
28+
29+
With this release, Nebius officially joins `dstack` Sky. Nebius can now be used not only with your own account, but also directly via the GPU marketplace.
30+
31+
The marketplace lets you access Nebius GPUs without having a Nebius account. You can pay through `dstack Sky`, and switch to your own Nebius account anytime with just a few clicks.
32+
33+
<img src="https://dstack.ai/static-assets/static-assets/images/dstack-sky-nebius-offers.png" width="750"/>
34+
35+
Moreover, while the open-source version of `dstack` has supported Nebius clusters from day one,
36+
Nebius is the first provider to offer on-demand and spot clusters on `dstack` Sky.
37+
38+
## Getting started
39+
40+
After you [sign up :material-arrow-top-right-thin:{ .external }](https://sky.dstack.ai){:target="_blank"} with `dstack` Sky,
41+
you’ll be prompted to create a project and choose between the GPU marketplace or your own cloud account:
42+
43+
<img src="https://dstack.ai/static-assets/static-assets/images/dstack-sky-project-wizard.png" width="750"/>
44+
45+
Once the project is created, install the `dstack` CLI:
46+
47+
=== "uv"
48+
49+
<div class="termy">
50+
51+
```shell
52+
$ uv tool install dstack -U
53+
```
54+
55+
</div>
56+
57+
=== "pip"
58+
59+
<div class="termy">
60+
61+
```shell
62+
$ pip install dstack -U
63+
```
64+
65+
</div>
66+
67+
Now you can define [dev environments](../../docs/concepts/dev-environments.md),
68+
[tasks](../../docs/concepts/tasks.md), [services](../../docs/concepts/services.md),
69+
and [fleets](../../docs/concepts/fleets.md), then apply them with `dstack apply`.
70+
71+
`dstack` provisions cloud VMs, sets up environments, orchestrates runs, and handles everything required for development, training, or deployment.
72+
73+
To create a Nebius cluster, for example for distributed training, define the following fleet configuration:
74+
75+
<div editor-title="my-cluster.dstack.yml">
76+
77+
```yaml
78+
type: fleet
79+
name: my-cluster
80+
81+
placement: cluster
82+
nodes: 2
83+
84+
backends: [nebius]
85+
86+
resources:
87+
gpu: H100:8
88+
```
89+
90+
</div>
91+
92+
Then, create it via `dstack apply`:
93+
94+
<div class="termy">
95+
96+
```shell
97+
$ dstack apply -f my-cluster.dstack.yml
98+
```
99+
100+
</div>
101+
102+
Once the fleet is ready, you can run [distributed tasks](../../docs/concepts/tasks.md#distributed-tasks).
103+
`dstack` automatically configures drivers, networking, and fast GPU-to-GPU interconnect.
104+
105+
To learn more, see the [clusters](../../docs/guides/clusters.md) guide.
106+
107+
> `dstack` can run either on top of Kubernetes or directly on cloud VMs.
108+
In both cases, you don’t need to manage Kubernetes yourself—`dstack` handles all orchestration automatically, letting your team stay focused on research and development.
109+
110+
With Nebius joining `dstack` Sky, users can now run on-demand and spot GPUs and clusters directly through the marketplace—without needing a separate Nebius account. If you prefer to go self-hosted, you can always switch to the open-source version of `dstack`, bringing the same functionality.
111+
112+
Our goal is to give teams maximum flexibility while removing the complexity of managing infrastructure. More updates are coming soon.
113+
114+
!!! info "What's next"
115+
1. Sign up with [dstack Sky :material-arrow-top-right-thin:{ .external }](https://sky.dstack.ai){:target="_blank"}
116+
2. Check [Quickstart](../../docs/quickstart.md)
117+
3. Learn more about [Nebius :material-arrow-top-right-thin:{ .external }](https://nebius.com/){:target="_blank"}
118+
4. Explore [dev environments](../../docs/concepts/dev-environments.md),
119+
[tasks](../../docs/concepts/tasks.md), [services](../../docs/concepts/services.md),
120+
and [fleets](../../docs/concepts/fleets.md)
121+
5. Reaad the the [clusters](../../docs/guides/clusters.md) guide

0 commit comments

Comments
 (0)