Skip to content

Commit 300ccb3

Browse files
committed
fix(ins): update wording
1 parent 1487b21 commit 300ccb3

9 files changed

+61
-112
lines changed

faq/instances.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ You can change the storage type and flexible IP after the Instance creation, whi
172172

173173
| Product | All regions* | PAR3 |
174174
|-------------------|------------------------|-------------------|
175-
| Local Storage | €0.000044 GB/hour | Not available |
175+
| Local NVMe storage | €0.000044 GB/hour | Not available |
176176
| Local snapshot | €0.000044 GB/hour | Not available |
177177
| Block Storage | €0.000118 GB/hour | €0.000177 GB/hour |
178178
| Block snapshot | €0.000044 GB/hour | €0.000066 GB/hour |
@@ -203,10 +203,10 @@ Dedicated Resources give you a more stable experience for compute-demanding work
203203
### Which options are available to power off my Instance?
204204

205205
You can choose between four options when powering off your Instance:
206-
* **Hard reboot**: Your Instance performs an electrical reboot and its data is kept on the Local Storage. We recommend always rebooting your Instance from the OS to avoid data corruption.
206+
* **Hard reboot**: Your Instance performs an electrical reboot and its data is kept on the Local NVMe storage. We recommend always rebooting your Instance from the OS to avoid data corruption.
207207
* **Power off**: All local volume data is transferred to a volume store, and your physical node is released back to the pool of available machines. The process duration depends on the amount of data archived.
208208
* **Terminate**: Your Instance and its volumes are permanently deleted, but the attached flexible IP is preserved.
209-
* **Standby**: Your Instance is stopped, but its data remains in the Local Storage. The Instance is still allocated to your account and can be restarted anytime.
209+
* **Standby**: Your Instance is stopped, but its data remains in the Local NVMe storage. The Instance is still allocated to your account and can be restarted anytime.
210210

211211
<Message type="important">
212212
The **standby mode** is charged as a running Instance. To avoid being billed for an unused Instance, power it off and ensure no IPs or allocated storage are left in use.

faq/kubernetes.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ For more information, refer to the Kubernetes Kapsule product documentation on [
8383
To ensure sufficient space for storing default system files and configurations, we recommend a system volume disk capacity of at least 20 GB. While this amount is generally sufficient for small workloads, it is advisable to have a capacity of 100 GB to comfortably store images and system logs in many cases.
8484
If you run out of space on your immutable system volume disk, you can create another pool and use the **Advanced Options** button to set your desired system volume type and size.
8585
Depending on the type of node selected for your pool, one or two types of volume are available:
86-
* **Local Storage**: Your system is stored locally on the hypervisor of your node.
86+
* **Local NVMe storage**: Your system is stored locally on the hypervisor of your node.
8787
* **Block Storage**: A remote storage option where your system is stored on a centralized and resilient cluster.
8888

8989
### What is the service 'kapsule-agent' running on my nodes?

pages/block-storage/reference-content/differences-between-5kiops-volumes.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ categories:
1313
- storage
1414
---
1515

16-
When creating volumes from the Scaleway console, you are prompted to choose between [Block Storage Low Latency](/block-storage/) volumes, [block volumes (Block Storage)](/instances/concepts/#block-volumes), and [local volumes (Local Storage)](/instances/concepts/#volumes).
16+
When creating volumes from the Scaleway console, you are prompted to choose between [Block Storage Low Latency](/block-storage/) volumes, [block volumes (Block Storage)](/instances/concepts/#block-volumes), and [local volumes (Local NVMe storage)](/instances/concepts/#volumes).
1717

1818
This page provides information about the differences between Block Storage and Block Storage Low Latency 5K [IOPS](/block-storage/concepts/#iops) volumes.
1919

20-
Refer to the [dedicated documentation](/instances/concepts/#volumes) to learn about the differences between Block Storage and Local Storage volumes.
20+
Refer to the [dedicated documentation](/instances/concepts/#volumes) to learn about the differences between Block Storage and Local NVMe storage volumes.
2121

2222
## Underlying hardware
2323

pages/gpu/how-to/create-manage-gpu-instance.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ When you have completed your calculations using the GPU Instance, [deletion can
3535
- **Availability Zone**: Choose the geographical region, represented by the Availability Zone, where your Instance will be deployed.
3636
- **Instance Type (GPU)**: Select the desired GPU Instance type, considering factors such as processing power, memory, storage options, and bandwidth. Refer to our guide on [choosing the right GPU Instance type](/gpu/reference-content/choosing-gpu-instance-type/) for more information.
3737
- **Image**: Pick an operating system image suitable for your GPU Instance. For example, select **Ubuntu Jammy GPU OS 12**, which comes with preinstalled NVIDIA drivers and an NVIDIA Docker environment. You have the flexibility to customize your working environment using Docker with our provided Docker images or your own containers.
38-
- **Volumes**: Optionally, add storage volumes for your Instance. You can adjust settings such as Block and Local Storage volumes according to your requirements.
38+
- **Volumes**: Optionally, add storage volumes for your Instance. You can adjust settings such as Block and Local NVMe storage volumes according to your requirements.
3939
<Message type="note">
4040
* The recommended minimum volume size for GPU OS images is 125 GB.
4141
* If your GPU Instance supports scratch storage, the scratch volume displays but can not be edited. [Learn more about scratch storage.](/gpu/how-to/use-scratch-storage-h100-instances/)

pages/gpu/how-to/use-gpu-with-docker.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ We recommend that you map volumes from your GPU Instance to your Docker containe
4747

4848
### How to map local volumes
4949

50-
You can map directories from your GPU Instance's Local Storage to your Docker container, using the `-v <local_storage>:<container_mountpoint>` flag. See the example command below:
50+
You can map directories from your GPU Instance's Local NVMe storage to your Docker container, using the `-v <local_storage>:<container_mountpoint>` flag. See the example command below:
5151

5252
```bash
5353
docker run -it --rm -v /root/mydata/:/workspace nvidia/cuda:11.2.1-runtime-ubuntu20.04
@@ -101,7 +101,7 @@ Below is a list of the most common commands you use when dealing with Docker con
101101
| **docker push** | `docker push <registry_user/docker_image>` | This command is used to push a local image to a remote repository. |
102102
| **docker images** | `docker images` | This command is used to list all available Docker images on the local system. |
103103
| **docker rm** | `docker rm <container_id>` | This command is used to remove a stopped container from the local system. |
104-
| **docker rmi** | `docker rmi <image_id>` | This command is used to delete an image from the Local Storage. |
104+
| **docker rmi** | `docker rmi <image_id>` | This command is used to delete an image from the Local NVMe storage. |
105105
| docker version| `docker --version` | This command is used to display information about the currently installed version of Docker. |
106106

107107
For more information regarding the `docker run` command, refer to the [official documentation](https://docs.docker.com/engine/reference/run/).

pages/gpu/quickstart.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ In addition to this, GPU Instances have all the features of our regular Instance
2727
- **Availability Zone**: Choose the geographical region, represented by the Availability Zone, where your Instance will be deployed.
2828
- **Instance Type (GPU)**: Select the desired GPU Instance type, considering factors such as processing power, memory, storage options, and bandwidth. Refer to our guide on [choosing the right GPU Instance type](/gpu/reference-content/choosing-gpu-instance-type/) for more information.
2929
- **Image**: Pick an operating system image suitable for your GPU Instance. For example, select **Ubuntu Jammy GPU OS 12**, which comes with preinstalled Nvidia drivers and an Nvidia Docker environment. You can customize your working environment using Docker with our provided Docker images or your own containers.
30-
- **Volumes**: Optionally, add storage volumes for your Instance. You can adjust settings such as Block and Local Storage volumes according to your requirements.
30+
- **Volumes**: Optionally, add storage volumes for your Instance. You can adjust settings such as Block and Local NVMe storage volumes according to your requirements.
3131
<Message type="note">
3232
* The recommended minimum volume size for GPU OS images is 125 GB.
3333
* If your GPU Instance supports scratch storage, the scratch volume displays but can not be edited. [Learn more about scratch storage.](/gpu/how-to/use-scratch-storage-h100-instances/)

0 commit comments

Comments
 (0)