Skip to content

Commit cfeb1fe

Browse files
SamyOubouazizldecarvalho-docnerda-codesRoRoJ
authored andcommitted
docs(srv): restructure jobs and containers creation pages MTA-5185 (scaleway#3946)
* docs(srv): restructure jobs and containers creation pages MTA-5185 * Apply suggestions from code review Co-authored-by: ldecarvalho-doc <[email protected]> Co-authored-by: nerda-codes <[email protected]> Co-authored-by: Rowena Jones <[email protected]> * docs(srv): update review dates --------- Co-authored-by: ldecarvalho-doc <[email protected]> Co-authored-by: nerda-codes <[email protected]> Co-authored-by: Rowena Jones <[email protected]>
1 parent 0d1955c commit cfeb1fe

28 files changed

+216
-266
lines changed

menu/navigation.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3800,12 +3800,8 @@
38003800
"slug": "manage-a-containers-namespace"
38013801
},
38023802
{
3803-
"label": "Deploy a container from Scaleway Container Registry",
3804-
"slug": "deploy-a-container-from-scaleway-container-registry"
3805-
},
3806-
{
3807-
"label": "Deploy a container from an external container registry",
3808-
"slug": "deploy-a-container-from-external-container-registry"
3803+
"label": "Deploy a container",
3804+
"slug": "deploy-container"
38093805
},
38103806
{
38113807
"label": "Manage a container",
@@ -3938,12 +3934,8 @@
39383934
{
39393935
"items": [
39403936
{
3941-
"label": "Create a job from the Scaleway Registry",
3942-
"slug": "create-job-from-scaleway-registry"
3943-
},
3944-
{
3945-
"label": "Create a job from an external registry",
3946-
"slug": "create-job-from-external-registry"
3937+
"label": "Create a job",
3938+
"slug": "create-job"
39473939
},
39483940
{
39493941
"label": "Run a job",

serverless/containers/how-to/add-a-custom-domain-to-a-container.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Each container comes with an automatically generated domain, on which it is avai
2020

2121
- A Scaleway account logged into the [console](https://console.scaleway.com)
2222
- [Owner](/identity-and-access-management/iam/concepts/#owner) status or [IAM permissions](/identity-and-access-management/iam/concepts/#permission) allowing you to perform actions in the intended Organization
23-
- A running [Serverless Container](/serverless/containers/how-to/deploy-a-container-from-scaleway-container-registry/)
23+
- A running [Serverless Container](/serverless/containers/how-to/deploy-container/)
2424
- Registered a domain name with the provider of your choice and have access to the domain name's DNS zone file
2525

2626
1. On your domain provider's platform (for example, [Scaleway's domains](/network/domains-and-dns/how-to/manage-dns-records/)), add a CNAME record pointing to your container default URL in the domain's DNS zone file.

serverless/containers/how-to/add-trigger-to-a-container.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A trigger can be an HTTP request, a message from a queue or stream, a CRON sched
2525
- A Scaleway account logged into the [console](https://console.scaleway.com)
2626
- [Owner](/identity-and-access-management/iam/concepts/#owner) status or [IAM permissions](/identity-and-access-management/iam/concepts/#permission) allowing you to perform actions in the intended Organization
2727
- Created a [containers namespace](/serverless/containers/how-to/create-a-containers-namespace/)
28-
- Deployed a container from [Scaleway Container Registry](/serverless/containers/how-to/deploy-a-container-from-scaleway-container-registry/) or an [external registry](/serverless/containers/how-to/deploy-a-container-from-external-container-registry/)
28+
- Deployed a container from [Scaleway Container Registry](/serverless/containers/how-to/deploy-container/) or an [external registry](/serverless/containers/how-to/deploy-container/)
2929
- [Activated SQS](/serverless/messaging/how-to/get-started/#how-to-activate-sqs-or-sns)
3030
- [Created credentials](/serverless/messaging/how-to/create-credentials/) for SQS
3131
- [Created an SQS queue](/serverless/messaging/how-to/create-manage-queues/)

serverless/containers/how-to/create-a-containers-namespace.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ This page shows you how to create a Serverless Containers namespace. [Namespaces
2727
- Enter a **name**, and optionally a **description** for your namespace. The name must only contain alphanumeric characters and dashes.
2828
- Choose a **region**, which is the geographical location in which your namespace will be deployed.
2929
- 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.
30-
- Set secret environment variables (optional). **Secrets** are environment variables which are injected into your container and stored securely, but not displayed in the console after initial validation. Add a **key** and a **value**.
30+
- 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**.
3131
- Verify the **estimated cost**.
32-
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-a-container-from-scaleway-container-registry/) next.
32+
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.
3333

3434

serverless/containers/how-to/create-auth-token-from-console.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This page shows you how to create and manage an authentication token from the Sc
2121
- A Scaleway account logged into the [console](https://console.scaleway.com)
2222
- [Owner](/identity-and-access-management/iam/concepts/#owner) status or [IAM permissions](/identity-and-access-management/iam/concepts/#permission) allowing you to perform actions in the intended Organization
2323
- [Created a containers namespace](/serverless/containers/how-to/create-a-containers-namespace/)
24-
- [Deployed a container](/serverless/containers/how-to/deploy-a-container-from-scaleway-container-registry/)
24+
- [Deployed a container](/serverless/containers/how-to/deploy-container/)
2525

2626
## Creating authentication tokens from the Scaleway console
2727

serverless/containers/how-to/delete-a-container.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This page shows you how to delete a Scaleway container.
2424

2525
- A Scaleway account logged into the [console](https://console.scaleway.com)
2626
- [Owner](/identity-and-access-management/iam/concepts/#owner) status or [IAM permissions](/identity-and-access-management/iam/concepts/#permission) allowing you to perform actions in the intended Organization
27-
- [Created a container](/serverless/containers/how-to/deploy-a-container-from-scaleway-container-registry/)
27+
- [Created a container](/serverless/containers/how-to/deploy-container/)
2828

2929
1. Click **Containers** in the **Serverless** section of the side menu. The list of your containers displays.
3030
2. Click the relevant Containers namespace.

serverless/containers/how-to/deploy-a-container-from-external-container-registry.mdx

Lines changed: 0 additions & 57 deletions
This file was deleted.

serverless/containers/how-to/deploy-a-container-from-scaleway-container-registry.mdx

Lines changed: 0 additions & 53 deletions
This file was deleted.

0 commit comments

Comments
 (0)