Skip to content

Commit b505f03

Browse files
committed
chore(gen): update
1 parent 5a150c6 commit b505f03

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

pages/serverless-containers/how-to/create-manage-delete-containers-namespace.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Create, manage, and delete namespaces in Scaleway Serverless Containers.
88
tags: container namespace manage create delete environment variable secret
99
dates:
10-
validation: 2024-11-14
10+
validation: 2025-05-27
1111
posted: 2021-05-26
1212
categories:
1313
- serverless
@@ -28,7 +28,7 @@ This page shows you how to create and manage a Serverless Containers namespace.
2828
3. Complete the following steps in the wizard:
2929
- Enter a **name**, and optionally a **description** for your namespace. The name must only contain alphanumeric characters and dashes.
3030
- Choose a **region**, which is the geographical location in which your namespace will be deployed.
31-
- Enter any **environment variables** required for your namespace. Environment variables configured in a namespace will be available in all containers/apps within the same namespace. For each environment variable, click **+Add new variable** and enter the key / value pair.
31+
- Enter any **environment variables** required for your namespace. Environment variables configured in a namespace will be available in all containers/apps within the same namespace. For each environment variable, click **+ Add new variable** and enter the key / value pair.
3232
- Set secret environment variables (optional). **Secrets** are environment variables that are injected into your container and stored securely, but not displayed in the console after initial validation. Add a **key** and a **value**.
3333
- Verify the **estimated cost**.
3434
4. Click **Create namespace only** to finish, or click **Create namespace and add container** if you want to [deploy a container](/serverless-containers/how-to/deploy-container/) next.

pages/serverless-containers/reference-content/dns-query-rate-limit.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Information on how the DNS query rate limiting works with Scaleway Serverless Containers.
88
tags: serverless containers dns query rate limiting limit response
99
dates:
10-
validation: 2024-11-12
10+
validation: 2025-05-27
1111
posted: 2024-11-12
1212
categories:
1313
- serverless

pages/serverless-functions/concepts.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Learn the core concepts and principles behind Scaleway's Serverless Functions.
88
tags: functions cold-start environment-variables gbs jwt handler serverless concept definition
99
dates:
10-
validation: 2024-11-14
10+
validation: 2025-05-27
1111
categories:
1212
- serverless
1313
---
@@ -33,19 +33,19 @@ Once the Function is built into an image, it will be pushed to [Container Regist
3333
Cold Start is the time a function takes to handle a request when it is called for the first time.
3434

3535
The startup process steps are:
36-
* Downloading the container image (which contains the built Function) to our infrastructure
36+
* Downloading the container image (which contains the built function) to our infrastructure
3737
* Starting the container and the runtime
3838
* Waiting for the container to be ready.
3939

40-
[How to reduce cold starts](/serverless-functions/faq/#how-to-reduce-cold-start-of-serverless-functions)
40+
Refer to the dedicated FAQ on [how to reduce cold starts](/serverless-functions/faq/#how-to-reduce-cold-start-of-serverless-functions) for more information.
4141

4242
## Concurrency
4343

4444
Concurrency defines the capacity of a resource to process several requests at the same time. A single instance of a function has a concurrency of `1` as it handles requests sequentially, one by one, but a Serverless Function can have several instances running at the same time, depending on its [autoscaling](#autoscaling) configuration.
4545

4646
## Container Registry
4747

48-
Container Registry is the place where the images of your Serverless Functions are stored before being deployed.
48+
[Container Registry](/container-registry/) is the place where the images of your Serverless Functions are stored before being deployed.
4949

5050
## CRON trigger
5151

@@ -85,15 +85,15 @@ The Serverless infrastructure manages incoming request traffic. In scenarios lik
8585

8686
## Logging
8787

88-
Serverless offers a built-in logging system based on Scaleway Cockpit to track the activity of your resources: see [monitoring Serverless Functions](/serverless-functions/how-to/monitor-function/).
88+
Serverless offers a built-in logging system based on Scaleway Cockpit to track the activity of your resources. Refer to [monitoring Serverless Functions](/serverless-functions/how-to/monitor-function/) for more information.
8989

9090
## Max scale
9191

92-
This parameter sets the maximum number of function instances. You should adjust it based on your function's traffic spikes, keeping in mind that you may wish to limit the max scale to manage costs effectively.
92+
This parameter sets the maximum number of function instances. You should adjust it based on your function's traffic spikes, keeping in mind that you may wish to limit the maximum scale to manage costs effectively.
9393

9494
## Metrics
9595

96-
Performance metrics for your Serverless resources are natively available: see [monitoring Serverless Functions](/serverless-functions/how-to/monitor-function/)).
96+
Performance metrics for your Serverless resources are natively available. Refer to [monitoring Serverless Functions](/serverless-functions/how-to/monitor-function/) for more information.
9797

9898
## Min scale
9999

@@ -124,7 +124,7 @@ Refer to the [dedicated FAQ](/serverless-functions/faq/#how-can-i-configure-acce
124124

125125
A queue trigger is a mechanism that connects a function to a queue created with [Scaleway Queues](/queues/concepts/#scaleway-queues), and invokes the function automatically whenever a message is added to the queue.
126126

127-
For each message that is sent to a queue, the trigger reads the message and invokes the associated function with the message as the input parameter.
127+
For each message that is sent to a queue, the trigger reads the message, and invokes the associated function with the message as the input parameter.
128128
The function can then process the message and perform any required actions, such as updating a database or sending a notification.
129129

130130
## Request timeout
@@ -141,7 +141,7 @@ When deploying a new version of a Serverless Function, a rolling update is appli
141141
Here is how it works:
142142

143143
* When a new version of your function is deployed, the platform automatically starts routing traffic to the new version incrementally, while still serving requests from the old version until the new one is fully deployed.
144-
* Once the new version is successfully running, we gradually shift all traffic to it, ensuring zero downtime.
144+
* Once the new version is successfully running, the platform gradually shifts all traffic to it, ensuring zero downtime.
145145
* The old version is decommissioned once the new version is fully serving traffic.
146146

147147
This process ensures a seamless update experience, minimizing user disruption during deployments. If needed, you can also manage traffic splitting between versions during the update process, allowing you to test new versions with a subset of traffic before fully migrating to them.
@@ -160,7 +160,7 @@ Refer to the [dedicated documentation](/serverless-functions/reference-content/f
160160

161161
## Scale to zero
162162

163-
One of the advantages of Serverless Functions is that when your function is not triggered, it does not consume any resources, which allows for significant savings.
163+
When provisioned with a [minimum scale](#min-scale) of `0`, Serverless Functions scale down to zero active instances as long as they are not triggered. While idling, they do not consume any resources, which allows to reduce the cost of your infrastructure.
164164

165165
## Secrets
166166

0 commit comments

Comments
 (0)