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
2 changes: 1 addition & 1 deletion pages/iam/troubleshooting/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ categories:
<DefaultCard
title="Understanding Scaleway IAM"
description="A detailed overview of IAM features."
url="/iam/how-to/add-payment-method/"
url="/iam/reference-content/overview/"
label="See more"
/>
<DefaultCard
Expand Down
1 change: 1 addition & 0 deletions tutorials/configure-apache-kafka/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Kafka has been implemented by many companies of any size because of its flexibil
- A Scaleway account logged into the [console](https://console.scaleway.com)
- [Owner](/iam/concepts/#owner) status or [IAM permissions](/iam/concepts/#permission) allowing you to perform actions in the intended Organization
- An [SSH key](/organizations-and-projects/how-to/create-ssh-key/)
- A Scaleway [Instance](/instances/how-to/create-an-instance/) running on a Linux based distribution

## What is a messaging system?

Expand Down
4 changes: 2 additions & 2 deletions tutorials/dagster-serverless-jobs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dates:

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.

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.
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.

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.

Expand Down Expand Up @@ -69,7 +69,7 @@ We will install Dagster using the `pip` package installer. Refer to the [Dagster
cat <<EOF > Dockerfile
FROM python:3.11-slim-bookworm
WORKDIR /app
COPY . .
COPY . .
RUN pip install .
EOF
```
Expand Down
6 changes: 3 additions & 3 deletions tutorials/manage-database-instance-pgadmin4/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ pgAdmin is an open-source management tool for PostgreSQL databases. It allows th

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