Skip to content

Commit 578abaa

Browse files
authored
docs(compute): content review 2025-07-15 (#5269)
* docs(compute): content review 2025-07-15 * Update pages/billing/how-to/use-the-cost-manager.mdx
1 parent 350fd85 commit 578abaa

File tree

68 files changed

+168
-153
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+168
-153
lines changed

pages/container-registry/how-to/connect-docker-cli.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to connect your namespace to the Docker CLI
33
description: Instructions for connecting Docker CLI to Scaleway's Container Registry.
44
tags: namespace docker-cli container-registry
55
dates:
6-
validation: 2025-01-06
6+
validation: 2025-07-15
77
posted: 2019-02-25
88
categories:
99
- container-registry

pages/container-registry/how-to/pull-images.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to pull images from your namespace
33
description: Learn how to pull container images from Scaleway's Container Registry.
44
tags: container-registry namespace
55
dates:
6-
validation: 2025-01-06
6+
validation: 2025-07-15
77
posted: 2019-02-25
88
categories:
99
- container-registry

pages/dedibox-scaleway/reference-content/dedibox-datasheet.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ title: Dedibox datasheet
33
description: This page shows the technical characteristics of the different Dedibox offers.
44
tags: dedibox server
55
dates:
6-
validation: 2025-01-06
7-
posted: 2023-12-18
6+
validation: 2025-07-15
87
categories:
98
- compute
109
---

pages/dedibox/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ To connect to your Instance from Windows, you will need to use a small applicati
139139
3. Enter your Instance's IP address in the **Hostname** field.
140140
<Message type="tip">
141141
To find the IP address of your Instance, log into the Scaleway console and
142-
click **Instances** in the Compute section of the side menu. A list of your
142+
click **CPU & GPU Instances** in the Compute section of the side menu. A list of your
143143
Instances and their associated IP addresses will display.
144144

145145
</Message>

pages/elastic-metal/api-cli/elastic-metal-with-api.mdx

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Deploying an Elastic Metal server with one API call
33
description: Learn how to deploy a Scaleway Elastic Metal server on your favorite OS with a single API command.
44
tags: baremetal elastic metal cloud server dedicated elastic-metal api-call
55
dates:
6-
validation: 2025-01-02
6+
validation: 2025-07-15
77
posted: 2021-05-26
88
categories:
99
- bare-metal
@@ -34,13 +34,13 @@ Besides creating your Elastic Metal servers from the graphical [Scaleway console
3434
</Message>
3535

3636
1. Open a terminal on your computer and set your secret API key, your SSH key ID, and your Project ID as variables.
37-
```
37+
```sh
3838
export SCW_SECRET_KEY="<Your secret key>"
3939
export SCW_SSH_KEY="<Your SSH key ID>"
4040
export SCW_PROJECT_ID="<Your Project ID>"
4141
```
4242
2. Retrieve a list of all operating systems available in the desired Availability Zone.
43-
```
43+
```sh
4444
curl https://api.scaleway.com/baremetal/v1/zones/fr-par-2/offers -H "X-Auth-Token: $SCW_SECRET_KEY" | jq . | grep "EM-"
4545
```
4646

@@ -67,7 +67,7 @@ Besides creating your Elastic Metal servers from the graphical [Scaleway console
6767

6868
You will receive a JSON-formatted list of all operating systems available, and their associated ID. Take note of the ID of the image you want to install:
6969

70-
```
70+
```json
7171
{
7272
"total_count": 8,
7373
"os": [
@@ -88,7 +88,7 @@ Besides creating your Elastic Metal servers from the graphical [Scaleway console
8888
4. Create the Elastic Metal server from the API using cURL and the `POST` command on the endpoint `/baremetal/v1/zones/fr-par-2/servers`:
8989

9090
The syntax to [create the server](https://www.scaleway.com/en/developers/api/elastic-metal/#path-servers-create-an-elastic-metal-server) is as follows:
91-
```
91+
```json
9292
{
9393
"offer_id": "<OFFER_ID>",
9494
"project_id": "$SCW_SECRET_KEY",
@@ -109,14 +109,28 @@ Besides creating your Elastic Metal servers from the graphical [Scaleway console
109109

110110
In the following example, we create a server running on Ubuntu 20.04 LTS:
111111

112-
```
113-
curl -X POST -H "X-Auth-Token: $SCW_KEY" -H "Content-Type: application/json" -d "{ \"offer_id\": \"7fde3890-9787-488c-ac89-c4e00a4e5f83\", \"project_id\": \"$SCW_PROJECT\", \"name\": \"my-bmaas\", \"description\": \"my server running on ubuntu\", \"tags\": [
114-
\"bmaas, tutorial\" ], \"install\": { \"os_id\": \"03b7f4ba-a6a1-4305-984e-b54fafbf1681\", \"hostname\": \"my-bmaas-api\", \"ssh_key_ids\": [ \"$SSH_KEY_ID\" ] }}" https://api.scaleway.com/baremetal/v1/zones/fr-par-2/servers | jq .
112+
```json
113+
curl -X POST \
114+
-H "X-Auth-Token: $SCW_KEY" \
115+
-H "Content-Type: application/json" \
116+
-d '{
117+
"offer_id": "7fde3890-9787-488c-ac89-c4e00a4e5f83",
118+
"project_id": "$SCW_PROJECT",
119+
"name": "my-bmaas",
120+
"description": "my server running on ubuntu",
121+
"tags": ["bmaas", "tutorial"],
122+
"install": {
123+
"os_id": "03b7f4ba-a6a1-4305-984e-b54fafbf1681",
124+
"hostname": "my-bmaas-api",
125+
"ssh_key_ids": ["$SSH_KEY_ID"]
126+
}
127+
}' \
128+
https://api.scaleway.com/baremetal/v1/zones/fr-par-2/servers | jq .
115129
```
116130

117131
Again, the API returns a JSON output informing you about the server creation:
118132

119-
```
133+
```json
120134
{
121135
"id": "<SERVER_ID>",
122136
"organization_id": "<ORGANIZATION_ID>",
@@ -146,7 +160,7 @@ Besides creating your Elastic Metal servers from the graphical [Scaleway console
146160
}
147161
```
148162
5. The server is being delivered to your account and is automatically being installed on the operating system chosen. You can retrieve the status of the installation using the following API call:
149-
```
163+
```sh
150164
curl https://api.scaleway.com/baremetal/v1/zones/fr-par-2/servers/{server_id} -H "X-Auth-Token: $SCW_SECRET_KEY" | jq .
151165
```
152166

pages/elastic-metal/api-cli/elastic-metal-with-cli.mdx

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create and manage Elastic Metal servers with the Scaleway CLI
33
description: Learn to create and manage Elastic Metal servers using the Scaleway CLI in this comprehensive guide.
44
tags: elastic-metal command-line-interface cli scw
55
dates:
6-
validation: 2025-01-02
6+
validation: 2025-07-15
77
posted: 2021-05-26
88
categories:
99
- bare-metal
@@ -35,7 +35,7 @@ The [Scaleway Command Line Interface (CLI)](https://github.com/scaleway/scaleway
3535

3636

3737
1. Type the following command in your terminal to create your Elastic Metal server:
38-
```
38+
```sh
3939
scw baremetal server create name=name-of-your-server type=EM-A210R-SATA zone=fr-par-2
4040
```
4141

@@ -77,7 +77,9 @@ The [Scaleway Command Line Interface (CLI)](https://github.com/scaleway/scaleway
7777

7878
1. Type the following command in your terminal to see a list of available OSes:
7979

80-
`scw baremetal os list zone=fr-par-2`
80+
```sh
81+
scw baremetal os list zone=fr-par-2
82+
```
8183

8284
An output with available OSes and their associated IDs displays:
8385

@@ -94,7 +96,7 @@ The [Scaleway Command Line Interface (CLI)](https://github.com/scaleway/scaleway
9496
```
9597
2. Write down the ID of the OS you want to install.
9698
3. Type the following command to display the list of your SSH key's ID:
97-
```
99+
```sh
98100
scw iam ssh-key list
99101
```
100102

@@ -106,7 +108,7 @@ The [Scaleway Command Line Interface (CLI)](https://github.com/scaleway/scaleway
106108
```
107109
4. Write down your SSH key ID, as you will need it in the next steps.
108110
5. Type the following command to install an OS on your Elastic Metal server:
109-
```
111+
```sh
110112
scw baremetal server install ID-of-your-elastic-metal-server os-id=ID-of-OS-you-want-to-install hostname=hostname-for-your-server ssh-key-ids.0=your-ssh-key-ID zone=fr-par-2
111113
```
112114

@@ -164,7 +166,7 @@ There are many other functionalities you can access for your Elastic Metal serve
164166

165167
Type the following command in your terminal:
166168

167-
```
169+
```sh
168170
scw baremetal server start your-elastic-metal-server-ID zone=fr-par-2
169171
```
170172
The following output displays, and you will see "starting" next to the `Status` field:
@@ -216,7 +218,7 @@ PingStatus up
216218

217219
Type the following command in your terminal:
218220

219-
```
221+
```sh
220222
scw baremetal server stop your-elastic-metal-server-ID zone=fr-par-2
221223
```
222224

@@ -264,7 +266,7 @@ PingStatus up
264266

265267
Type the following command:
266268

267-
```
269+
```sh
268270
scw baremetal server reboot your-elastic-metal-server-ID zone=fr-par-2
269271
```
270272

@@ -316,7 +318,7 @@ PingStatus down
316318

317319
Type the following command in your terminal:
318320

319-
```
321+
```sh
320322
scw baremetal server delete your-elastic-metal-server-ID zone=fr-par-2
321323
```
322324

@@ -352,7 +354,7 @@ PingStatus down
352354

353355
Enter the following command to make sure that your server has been deleted:
354356

355-
```
357+
```sh
356358
scw baremetal server list zone=fr-par-2
357359
```
358360

pages/elastic-metal/how-to/activate-remote-access.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to activate remote access on an Elastic Metal server
33
description: Learn how to activate remote access on a Scaleway Elastic Metal server with this step-by-step guide.
44
tags: remote-access elastic-metal
55
dates:
6-
validation: 2025-01-02
6+
validation: 2025-07-16
77
posted: 2022-03-30
88
categories:
99
- bare-metal

pages/elastic-metal/how-to/adjust-available-bandwidth.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to adjust the available bandwidth for an Elastic Metal server
33
description: Discover step-by-step instructions for adjusting (upgrading or downgrading) the available bandwidth for your Elastic Metal server.
44
tags: elastic-metal bandwidth putty
55
dates:
6-
validation: 2025-01-06
6+
validation: 2025-07-16
77
posted: 2024-06-11
88
---
99
import Requirements from '@macros/iam/requirements.mdx'

pages/elastic-metal/how-to/get-use-loyalty-reward.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to get and use a loyalty reward
33
description: This page explains how to use the loyalty reward for Scaleway Elastic Metal servers
44
tags: elastic-metal payback commitment fee
55
dates:
6-
validation: 2025-01-02
6+
validation: 2025-07-16
77
posted: 2022-12-01
88
categories:
99
- bare-metal

pages/elastic-metal/how-to/shutdown-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to shut down an Elastic Metal server
33
description: This page explains how to shut down a Scaleway Elastic Metal server
44
tags: shut-down elastic-metal
55
dates:
6-
validation: 2025-01-02
6+
validation: 2025-07-16
77
posted: 2021-05-26
88
categories:
99
- bare-metal

0 commit comments

Comments
 (0)