Skip to content

Commit 23168b0

Browse files
grammar
1 parent 8d4b3b2 commit 23168b0

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

jobs/registry-empty-ressource-cleaner/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Scaleway Container Registry Cleaner
22

3-
This project helps you clean up your Container Registry by deleting namespaces without images inside.
3+
This project helps you clean up your Container Registry by deleting namespaces that do not contain any images.
44

55
## Requirements
66

@@ -9,22 +9,22 @@ This project helps you clean up your Container Registry by deleting namespaces w
99
- Container registry namespace created, for this example we assume that your namespace name is `registry-cleaner`: [doc here](https://www.scaleway.com/en/docs/containers/container-registry/how-to/create-namespace/)
1010
- API keys generated, Access Key and Secret Key [doc here](https://www.scaleway.com/en/docs/iam/how-to/create-api-keys/)
1111

12-
## Step 1 : Build and push to Container registry
12+
## Step 1: Build and Push to Container Registry
1313

1414
Serverless Jobs, like Serverless Containers (which are suited for HTTP applications), works
1515
with containers. So first, use your terminal reach this folder and run the following commands:
1616

1717
```shell
18-
# First command is to login to container registry, you can find it in Scaleway console
18+
# The first command logs in to the container registry; you can find it in the Scaleway console
1919
docker login rg.fr-par.scw.cloud/registry-cleaner -u nologin --password-stdin <<< "$SCW_SECRET_KEY"
2020

21-
# Here we build the image to push
21+
# The next command builds the image to push
2222
docker build -t rg.fr-par.scw.cloud/registry-cleaner/empty-namespaces:v1 .
2323

24-
## TIP: for Apple Silicon or other ARM processors, please use the following command as Serverless Jobs supports amd64 architecture
24+
## TIP: For Apple Silicon or other ARM processors, please use the following command as Serverless Jobs supports amd64 architecture
2525
# docker buildx build --platform linux/amd64 -t rg.fr-par.scw.cloud/registry-cleaner/empty-namespaces:v1 .
2626

27-
# Push the image online to be used on Serverless Jobs
27+
# This command pushes the image online to be used on Serverless Jobs
2828
docker push rg.fr-par.scw.cloud/registry-cleaner/empty-namespaces:v1
2929
```
3030

jobs/registry-version-based-retention/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Scaleway Container Registry Tag Cleaner
22

3-
This project aims to clean up Scaleway Container Registry tags to keep only the N latest tags for each image. It is useful for managing disk space and keeping the registry organized.
3+
This project aims to clean up Scaleway Container Registry tags to keep only the N latest tags for each image, which is useful for managing disk space and organizing the registry.
44

55
## Requirements
66

@@ -9,22 +9,22 @@ This project aims to clean up Scaleway Container Registry tags to keep only the
99
- Container registry namespace created, for this example we assume that your namespace name is `registry-cleaner`: [doc here](https://www.scaleway.com/en/docs/containers/container-registry/how-to/create-namespace/)
1010
- API keys generated, Access Key and Secret Key [doc here](https://www.scaleway.com/en/docs/iam/how-to/create-api-keys/)
1111

12-
## Step 1 : Build and push to Container registry
12+
## Step 1: Build and Push to Container Registry
1313

1414
Serverless Jobs, like Serverless Containers (which are suited for HTTP applications), works
1515
with containers. So first, use your terminal reach this folder and run the following commands:
1616

1717
```shell
18-
# First command is to login to container registry, you can find it in Scaleway console
18+
# First, log in to the container registry. You can find your login details in the Scaleway console.
1919
docker login rg.fr-par.scw.cloud/registry-cleaner -u nologin --password-stdin <<< "$SCW_SECRET_KEY"
2020

21-
# Here we build the image to push
21+
# Build the image to push.
2222
docker build -t rg.fr-par.scw.cloud/registry-cleaner/versions-retention:v1 .
2323

24-
## TIP: for Apple Silicon or other ARM processors, please use the following command as Serverless Jobs supports amd64 architecture
24+
## TIP: For Apple Silicon or other ARM processors, use the following command as Serverless Jobs supports the amd64 architecture.
2525
# docker buildx build --platform linux/amd64 -t rg.fr-par.scw.cloud/registry-cleaner/versions-retention:v1 .
2626

27-
# Push the image online to be used on Serverless Jobs
27+
# Push the image online to be used on Serverless Jobs.
2828
docker push rg.fr-par.scw.cloud/registry-cleaner/versions-retention:v1
2929
```
3030

0 commit comments

Comments
 (0)