Skip to content

Commit c02f497

Browse files
fix(gen): minor fixes (#5183)
1 parent 091a3eb commit c02f497

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

pages/iam/troubleshooting/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ categories:
2828
<DefaultCard
2929
title="Understanding Scaleway IAM"
3030
description="A detailed overview of IAM features."
31-
url="/iam/how-to/add-payment-method/"
31+
url="/iam/reference-content/overview/"
3232
label="See more"
3333
/>
3434
<DefaultCard

tutorials/configure-apache-kafka/index.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Kafka has been implemented by many companies of any size because of its flexibil
2525
- A Scaleway account logged into the [console](https://console.scaleway.com)
2626
- [Owner](/iam/concepts/#owner) status or [IAM permissions](/iam/concepts/#permission) allowing you to perform actions in the intended Organization
2727
- An [SSH key](/organizations-and-projects/how-to/create-ssh-key/)
28+
- A Scaleway [Instance](/instances/how-to/create-an-instance/) running on a Linux based distribution
2829

2930
## What is a messaging system?
3031

tutorials/dagster-serverless-jobs/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dates:
2020

2121
It allows you to declare jobs that you want to run and the data assets that those jobs produce or update. Dagster then helps you run your jobs at the right time and keep your assets up-to-date.
2222

23-
In this tutorial, we will create a [Serverless Job](/serverless-jobs/quickstart/) using Dagster to scrape the content of the [Hacker News webstite](https://news.ycombinator.com/) to retrieve the title, author, and URL of the top articles.
23+
In this tutorial, we will create a [Serverless Job](/serverless-jobs/quickstart/) using Dagster to scrape the content of the [Hacker News website](https://news.ycombinator.com/) to retrieve the title, author, and URL of the top articles.
2424

2525
First, we will initialize the Dagster project locally and add the scraper's source code to it. Then, we will set up the environment, build the image and push it to the Scaleway registry. Finally, we will execute Dagster locally to scrape the Hacker News top stories through the Dagster UI.
2626

@@ -69,7 +69,7 @@ We will install Dagster using the `pip` package installer. Refer to the [Dagster
6969
cat <<EOF > Dockerfile
7070
FROM python:3.11-slim-bookworm
7171
WORKDIR /app
72-
COPY . .
72+
COPY . .
7373
RUN pip install .
7474
EOF
7575
```

tutorials/manage-database-instance-pgadmin4/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ pgAdmin is an open-source management tool for PostgreSQL databases. It allows th
2929

3030
1. [Connect to your Instance](/instances/how-to/connect-to-instance/) via SSH.
3131
2. Update the `apt` sources and the software already installed on the Instance:
32-
```
33-
apt update && apt upgrade -y
34-
```
32+
```
33+
apt update && apt upgrade -y
34+
```
3535
3. Import the PostgreSQL repository signing key:
3636
```
3737
curl -fsS https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo gpg --dearmor -o /usr/share/keyrings/packages-pgadmin-org.gpg

0 commit comments

Comments
 (0)