Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories:
- compute
---

Scaleway Instances provide you with resources to develop, test code and deploy your applications in no time. Instances are designed for modern workflows. They are with you from prototyping to large-scale deployment. You can [create](/instances/how-to/create-an-instance/) and manage your Instances from the [console](https://console.scaleway.com/login), via the [API](https://www.scaleway.com/en/developers/api/instance/) or the [Scaleway Command Line Interface](https://github.com/scaleway/scaleway-cli).
Scaleway Instances provide you with resources to develop, test code and deploy your applications in no time. Instances are designed for modern workflows. They are with you from prototyping to large-scale deployment. You can [create](/instances/how-to/create-an-instance/) and manage your Instances from the [console](https://account.scaleway.com/login), via the [API](https://www.scaleway.com/en/developers/api/instance/) or the [Scaleway Command Line Interface](https://github.com/scaleway/scaleway-cli).

## Scaleway Command Line Interface (CLI) overview

Expand Down
10 changes: 5 additions & 5 deletions pages/object-storage/api-cli/managing-lifecycle-cliv2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ categories:
- object-storage
---

[Scaleway Object Storage](/object-storage/concepts/#object-storage) is a service based on the Amazon S3 protocol. It allows you to store different types of objects (documents, images, videos, etc.) and distribute them instantly, anywhere in the world. You can create and manage your Object Storage resources from the [console](https://console.scaleway.com/login), or via the [Scaleway Command Line Interface](/scaleway-cli/quickstart/) that uses external tools such as [S3cmd](https://github.com/s3tools/s3cmd), [Rclone](https://rclone.org/downloads/) or [MinIO Client (mc)](https://github.com/minio/mc).
[Scaleway Object Storage](/object-storage/concepts/#object-storage) is a service based on the Amazon S3 protocol. It allows you to store different types of objects (documents, images, videos, etc.) and distribute them instantly, anywhere in the world. You can create and manage your Object Storage resources from the [console](https://account.scaleway.com/login), or via the [Scaleway Command Line Interface](/scaleway-cli/quickstart/) that uses external tools such as [S3cmd](https://github.com/s3tools/s3cmd), [Rclone](https://rclone.org/downloads/) or [MinIO Client (mc)](https://github.com/minio/mc).

## Scaleway Command Line Interface Overview

[The Scaleway Command Line Interface (CLI)](/scaleway-cli/quickstart/) allows you to pilot your Scaleway infrastructure directly from your terminal, providing a faster way to administer and monitor your resources. Scaleway CLI is easy to set up and is an essential tool for operating efficiently in your cloud environment.
[The Scaleway Command Line Interface (CLI)](/scaleway-cli/quickstart/) allows you to pilot your Scaleway infrastructure directly from your terminal, providing a faster way to administer and monitor your resources. Scaleway CLI is easy to set up and is an essential tool for operating efficiently in your cloud environment.

<Macro id="requirements" />

Expand Down Expand Up @@ -100,7 +100,7 @@ Run the following command in a terminal to preview the configuration file for Mi

## Installing a configuration file for Amazon S3-compatible tools (s3cmd, rclone, and mc)

The `scw object config install` allows you to create a configuration file for the selected third party tool based on your [Scaleway CLI configuration](/scaleway-cli/quickstart/).
The `scw object config install` allows you to create a configuration file for the selected third party tool based on your [Scaleway CLI configuration](/scaleway-cli/quickstart/).

<Message type="important">
Creating a new configuration file using `scw object config install` will overwrite the existing one for the specified third party tool. To update an existing configuration, [generate a preview](#previewing-an-object-storage-configuration-file-for-the-scaleway-cli) and manually edit the configuration file.
Expand All @@ -109,7 +109,7 @@ The `scw object config install` allows you to create a configuration file for th
<Tabs>
<TabsTab label="Rclone">
Run the following command in a terminal to install a configuration file for Rclone:

```
scw object config install type=rclone
```
Expand Down Expand Up @@ -165,7 +165,7 @@ Run the following command in a terminal to install a configuration file for MinI

An output similar to the following displays:
```
rclone lsd scaleway:
rclone lsd scaleway:
-1 2022-06-04 14:38:03 -1 my-bucket
-1 2023-12-23 12:10:57 -1 my-new-bucket
```
Expand Down
4 changes: 2 additions & 2 deletions tutorials/large-messages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dates:

In this tutorial, we will build a simple architecture to store and automatically convert images to PDF. The focus is on transferring large messages using a messaging service, specifically the [Scaleway NATS](/messaging/quickstart/) server. Our setup involves using the [Object Storage](/object-storage/quickstart/) service for image storage and the [Serverless Functions](/serverless-functions/quickstart/) service for conversion.

We show how to provision all the required Scaleway resources via Terraform/OpenTofu, but you can also use the [console](https://console.scaleway.com/login), the [API](https://www.scaleway.com/en/developers/api/) or one of our other supported [developer tools](https://www.scaleway.com/en/developers/).
We show how to provision all the required Scaleway resources via Terraform/OpenTofu, but you can also use the [console](https://account.scaleway.com/login), the [API](https://www.scaleway.com/en/developers/api/) or one of our other supported [developer tools](https://www.scaleway.com/en/developers/).

You can retrieve the full source code in [this repository](https://github.com/rouche-q/serverless-examples/tree/main/projects/large-messages/README.md), so you can choose to either jump straight into the code or else follow along with the step-by-step explanation below to create the architecture yourself.

Expand Down Expand Up @@ -364,6 +364,6 @@ terraform apply
## Conclusion, going further

In this introductory tutorial, we have demonstrated the usage of the Scaleway NATS server, along with other services from the Scaleway ecosystem, to facilitate the transfer of large messages surpassing the typical size constraints. There are possibilities to expand upon this tutorial for various use cases, such as:

- Extending the conversion capabilities to handle different document types like `docx`.
- Sending URLs directly to NATS and converting HTML content to PDF.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ kubectl get crd --all-namespaces -o yaml > crds.yaml

### 2.1 Create a Scaleway account

If you do not already have one, [sign up for a Scaleway account](https://console.scaleway.com/register/).
If you do not already have one, [sign up for a Scaleway account](https://account.scaleway.com/register/).

### 2.2 Install Scaleway CLI (Optional)

Expand Down