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
6 changes: 4 additions & 2 deletions pages/serverless-containers/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ An endpoint is the URL generated to access your resource. It can be customized w

## Environment variables

Environment variables are key/value pairs injected in your container. They are useful to share information such as configurations with your container. Some names are reserved. [See details about reserved names](/serverless-containers/reference-content/containers-limitations/#configuration-restrictions).
Environment variables are key/value pairs injected into your container. They are useful to share information such as configurations with your container. Environment variables defined at the container level override the ones defined at the namespace level if they have the same name.

Some names are reserved. [See details about reserved names](/serverless-containers/reference-content/containers-limitations/#configuration-restrictions).

## Ephemeral storage

Expand Down Expand Up @@ -226,7 +228,7 @@ When provisioned with a [minimum scale](#min-scale) of `0`, Serverless Container

## Secrets

Secrets are an extra-secure type of environment variable. They are environment variables that are injected into your container and stored securely, but not displayed in the console after initial validation.
Secrets are an extra-secure type of environment variable. They are environment variables that are injected into your container and stored securely, but not displayed in the console after initial validation. Secrets defined at the container level override the ones defined at the namespace level if they have the same name.

For more details about Serverless advantages, [read Serverless Overview](/serverless-containers/reference-content/serverless-overview/).

Expand Down
6 changes: 5 additions & 1 deletion pages/serverless-functions/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ An endpoint is the URL generated to access your resource. It can be customized w

## Environment variables

Environment variables are key/value pairs injected in your container. They are useful for sharing information such as configurations with your container. Some names are reserved. [See details on reserved names](/serverless-functions/reference-content/functions-limitations/#configuration-restrictions).
Environment variables are key/value pairs injected into your container. They are useful for sharing information such as configurations with your container. Environment variables defined at the function level override the ones defined at the namespace level if they have the same name.

Some names are reserved. [See details on reserved names](/serverless-functions/reference-content/functions-limitations/#configuration-restrictions).

## GB-s

Expand Down Expand Up @@ -161,6 +163,8 @@ When provisioned with a [minimum scale](#min-scale) of `0`, Serverless Functions

Secrets are an extra-secure type of environment variable. They are environment variables that are injected into your function and stored securely, but not displayed in the console after initial validation.

Secrets defined at the function level override the ones defined at the namespace level if they have the same name.

## Serverless

Serverless allows you to deploy your Functions (FaaS) and Containerized Applications (CaaS) in a managed infrastructure. Scaleway ensures the deployment, availability, and scalability of all your projects.
Expand Down