Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: How to configure alerts for a container
description: Learn how to add monitoring alerts to Serverless Containers with Scaleway.
tags: containers alerts grafana threshold monitoring cockpit
dates:
validation: 2025-02-10
validation: 2025-08-20
posted: 2025-02-10
---
import Requirements from '@macros/iam/requirements.mdx'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Cron schedules reference
description: Guide to setting up cron schedules in Scaleway Serverless Containers.
tags: serverless containers cron crontab schedule cronjob
dates:
validation: 2025-02-10
validation: 2025-08-20
posted: 2023-12-12
---
import CronSchedules from '@macros/serverless/cron-schedules.mdx'
Expand Down
17 changes: 12 additions & 5 deletions pages/serverless-functions/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Functions - Quickstart
description: Quickstart guide to deploying and managing Serverless Functions on Scaleway.
tags: functions namespace
dates:
validation: 2025-02-10
validation: 2025-08-20
posted: 2021-05-26
---
import Requirements from '@macros/iam/requirements.mdx'
Expand All @@ -29,9 +29,8 @@ Follow this guided tour to discover how to deploy a function using the console.

- 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
- Installed [cURL](https://everything.curl.dev/install/)

## How to create a function
## How to create a Serverless Function

If you have no existing Serverless Functions resources in your current Project, the creation process will guide you through the creation of a namespace, and then a function.

Expand Down Expand Up @@ -62,7 +61,7 @@ If you have no existing Serverless Functions resources in your current Project,
</Message>
6. Click **Create function**. The deployment takes several minutes to complete. Check the **Overview** tab to see the function's status.

## How to test a function
## How to test a Serverless Function

1. Click the **Test** tab of your function.

Expand All @@ -72,7 +71,15 @@ If you have no existing Serverless Functions resources in your current Project,

The **Output** section displays the response from your function and the status code.

## How to delete a function
<Message type="note">
- Alternatively, you can test your function by running the command below in a terminal:
```sh
curl <your_function_endpoint>
```
- Make sure that your function's privacy policy is set to **Public**. Testing a private function this way will result in an error. Refer to the [dedicated troubleshooting page](/serverless-functions/troubleshooting/tests-fail-on-function/) for more information.
</Message>

## How to delete a Serverless Function

1. Click **Functions** in the **Serverless** section of the side menu. The functions page displays.

Expand Down
Loading