Skip to content

Commit 6526e9a

Browse files
bene2k1Laure-di
authored andcommitted
fix(gen): fix broken stuff (scaleway#4283)
* fix(gen): fix broken stuff * fix(gen): fixed more stuff * fix(gen): fixed even more stuff * fix(gen): fix external link
1 parent a5dbe4f commit 6526e9a

File tree

10 files changed

+372
-48
lines changed

10 files changed

+372
-48
lines changed

faq/serverless-containers.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Yes. Many traditional applications can be containerized and deployed to Serverle
126126

127127
Insufficient vCPU, RAM or ephemeral storage can lead to containers going to error status. Make sure to provision enough resources for your container.
128128

129-
We recommend you set high values, [use metrics to monitor](/serverless/containers/how-to/monitor-container/) the resource usage of your container, then adjust the values accordingly.
129+
We recommend you set high values, [use metrics to monitor](/serverless-containers/how-to/monitor-container/) the resource usage of your container, then adjust the values accordingly.
130130

131131
### How can I reduce the cold-starts of Serverless Containers ?
132132

@@ -141,7 +141,7 @@ Ensure that your code avoids heavy computations or long-running initialization a
141141

142142
### What are the limitations of Serverless Containers?
143143

144-
Refer to our dedicated page about [Serverless Containers limitations and configuration restrictions](/serverless/containers/reference-content/containers-limitations/) for more information.
144+
Refer to our dedicated page about [Serverless Containers limitations and configuration restrictions](/serverless-containers/reference-content/containers-limitations/) for more information.
145145

146146
### Why does my container have an instance running after deployment, even with min-scale 0?
147147

@@ -152,19 +152,19 @@ scale is set to 0. This behavior is not configurable at this time.
152152

153153
### How can I deploy my containers?
154154

155-
There are several ways to deploy containers. Refer to the [dedicated documentation](/serverless/containers/reference-content/deploy-container/) to determine the best method for your use case.
155+
There are several ways to deploy containers. Refer to the [dedicated documentation](/serverless-containers/reference-content/deploy-container/) to determine the best method for your use case.
156156

157157
### How do I integrate my serverless solutions with other Scaleway services?
158158

159-
Integration is straightforward. Serverless Functions and Containers can be triggered by events from [Queues](/serverless/messaging/concepts/#queues) and [Topics and Events](/serverless/messaging/concepts/#topics-and-events), and can easily communicate with services like [Managed Databases](/managed-databases/) or [Serverless databases](/serverless/sql-databases/). [Serverless Jobs](/serverless/jobs/) can pull data from [Object Storage](/storage/object), or output processed results into a database. With managed connectors, APIs, and built-in integrations, linking to the broader Scaleway ecosystem is seamless.
159+
Integration is straightforward. Serverless Functions and Containers can be triggered by events from [Queues](/messaging/concepts/#queues) and [Topics and Events](/messaging/concepts/#topics-and-events), and can easily communicate with services like [Managed Databases](/managed-databases-for-postgresql-and-mysql/) or [Serverless databases](/serverless-sql-databases/). [Serverless Jobs](/serverless-jobs/) can pull data from [Object Storage](/object-storage/), or output processed results into a database. With managed connectors, APIs, and built-in integrations, linking to the broader Scaleway ecosystem is seamless.
160160

161161
### Where should I host my container images for deployment ?
162162

163163
<Macro id="container-registry-note" />
164164

165165
### How can I copy an image from an external registry to Scaleway Container Registry?
166166

167-
You can copy an image from an external registry using the Docker CLI, or open source third-party tools such as [Skopeo](https://github.com/containers/skopeo). Refer to the [dedicated documentation](/serverless/containers/api-cli/migrate-external-image-to-scaleway-registry/) for more information.
167+
You can copy an image from an external registry using the Docker CLI, or open source third-party tools such as [Skopeo](https://github.com/containers/skopeo). Refer to the [dedicated documentation](/serverless-containers/api-cli/migrate-external-image-to-scaleway-registry/) for more information.
168168

169169
### How do Serverless Containers health checks work ?
170170

@@ -201,26 +201,26 @@ solutions like Scaleway Object Storage.
201201

202202
### How can I store data in my Serverless resource?
203203

204-
Serverless resources are by default [stateless](/serverless/containers/concepts/#stateless), local storage is ephemeral.
204+
Serverless resources are by default [stateless](/serverless-containers/concepts/#stateless), local storage is ephemeral.
205205

206206
For certain use cases, such as saving analysis results or exporting data, it can be important to have permanent storage to save data. Serverless resources can be connected to other resources from the Scaleway ecosystem for this purpose:
207207

208208
#### Databases
209209

210-
* [Serverless Databases](/serverless/sql-databases/): Go full serverless and take the complexity out of PostgreSQL database operations.
211-
* [Managed MySQL / PostgreSQL](/managed-databases/postgresql-and-mysql/): Ensure scalability of your infrastructure and storage with our new generation of Managed Databases designed to scale on-demand according to your needs.
212-
* [Managed Database for Redis®](/managed-databases/redis/): Fully managed Redis®* in seconds.
213-
* [Managed MongoDB®](/managed-databases/mongodb/): Get the best of MongoDB® and Scaleway in one database.
210+
* [Serverless Databases](/serverless-sql-databases/): Go full serverless and take the complexity out of PostgreSQL database operations.
211+
* [Managed MySQL / PostgreSQL](/managed-databases-for-postgresql-and-mysql/): Ensure scalability of your infrastructure and storage with our new generation of Managed Databases designed to scale on-demand according to your needs.
212+
* [Managed Database for Redis®](/managed-databases-for-redis/): Fully managed Redis®* in seconds.
213+
* [Managed MongoDB®](/managed-mongodb-databases/): Get the best of MongoDB® and Scaleway in one database.
214214

215215
#### Storage
216216

217-
* [Object Storage](/storage/object/): Multi-AZ resilient object storage service ensuring high availability for your data.
218-
* [Scaleway Glacier](/storage/object/): Our outstanding Cold Storage class to secure long-term object storage. Ideal for deep archived data.
217+
* [Object Storage](/object-storage/): Multi-AZ resilient object storage service ensuring high availability for your data.
218+
* [Scaleway Glacier](/object-storage/): Our outstanding Cold Storage class to secure long-term object storage. Ideal for deep archived data.
219219

220220
<Message type="tip">
221221
Explore all Scaleway products in the console and select the right product for your use case.
222222

223-
Further integrations are also possible even if not listed above, for example, [Secret Manager](/identity-and-access-management/secret-manager/) can help you to store information that requires versioning.
223+
Further integrations are also possible even if not listed above, for example, [Secret Manager](/secret-manager/) can help you to store information that requires versioning.
224224
</Message>
225225

226226
### Can I use Serverless Containers with Edge Services?

faq/serverless-functions.mdx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ The scheme below illustrates our billing model:
133133

134134
Insufficient vCPU and RAM resources can lead to functions going to error status. Make sure to provision enough resources for your function.
135135

136-
We recommend you set high values, [use metrics to monitor](/serverless/functions/how-to/monitor-function/) the resource usage of your function, then adjust the value accordingly.
136+
We recommend you set high values, [use metrics to monitor](/serverless-functions/how-to/monitor-function/) the resource usage of your function, then adjust the value accordingly.
137137

138138
### How does scaling work in these serverless services?
139139

@@ -167,13 +167,13 @@ Ensure that your code avoids heavy computations or long-running initialization a
167167

168168
### What are the limitations of Serverless Functions?
169169

170-
Refer to our dedicated page about [Serverless Functions limitations and configuration restrictions](/serverless/functions/reference-content/functions-limitations/) for more information.
170+
Refer to our dedicated page about [Serverless Functions limitations and configuration restrictions](/serverless-functions/reference-content/functions-limitations/) for more information.
171171

172172
### What runtimes are available on Serverless Functions?
173173

174174
Serverless Functions enables you to deploy functions using popular languages: `Go`, `Node`, `Python`, `PHP`, and `Rust`.
175175

176-
Refer to our dedicated page about [Serverless Functions Runtimes Lifecycle](/serverless/functions/reference-content/functions-lifecycle/)
176+
Refer to our dedicated page about [Serverless Functions Runtimes Lifecycle](/serverless-functions/reference-content/functions-lifecycle/)
177177

178178
### Why does my function have an instance running after deployment, even with min-scale 0?
179179

@@ -184,11 +184,11 @@ scale is set to `0`. This behavior is not configurable at this time.
184184

185185
### How can I deploy my functions?
186186

187-
There are [several ways to deploy Serverless Functions](/serverless/functions/reference-content/deploy-function/), to accommodate a broad range of use cases.
187+
There are [several ways to deploy Serverless Functions](/serverless-functions/reference-content/deploy-function/), to accommodate a broad range of use cases.
188188

189189
### How do I integrate my serverless solutions with other Scaleway services?
190190

191-
Integration is straightforward. Serverless Functions and Containers can be triggered by events from [Queues](/serverless/messaging/concepts/#queues) and [Topics and Events](/serverless/messaging/concepts/#topics-and-events), and can easily communicate with services like [Managed Databases](/managed-databases/) or [Serverless databases](/serverless/sql-databases/). [Serverless Jobs](/serverless/jobs/) can pull data from [Object Storage](/storage/object), or output processed results into a database. With managed connectors, APIs, and built-in integrations, linking to the broader Scaleway ecosystem is seamless.
191+
Integration is straightforward. Serverless Functions and Containers can be triggered by events from [Queues](/messaging/concepts/#queues) and [Topics and Events](/messaging/concepts/#topics-and-events), and can easily communicate with services like [Managed Databases](/managed-databases-for-postgresql-and-mysql/) or [Serverless databases](/serverless-sql-databases/). [Serverless Jobs](/serverless-jobs/) can pull data from [Object Storage](/object-storage/), or output processed results into a database. With managed connectors, APIs, and built-in integrations, linking to the broader Scaleway ecosystem is seamless.
192192

193193
### How can I check build errors?
194194

@@ -201,7 +201,7 @@ In the `Serverless Functions Logs` dashboard, you will then be able to read info
201201

202202
### How can I test my functions locally?
203203

204-
Scaleway provides libraries to run your functions locally, for debugging, profiling, and testing purposes. Refer to the [dedicated documentation](/serverless/functions/reference-content/local-testing/) for more information.
204+
Scaleway provides libraries to run your functions locally, for debugging, profiling, and testing purposes. Refer to the [dedicated documentation](/serverless-functions/reference-content/local-testing/) for more information.
205205

206206
### Where can I find some advanced code examples for functions?
207207

@@ -210,7 +210,7 @@ Check out our [serverless-examples repository](https://github.com/scaleway/serve
210210
### How to migrate runtimes?
211211

212212
There are no constraints when changing a function runtime, you simply need to choose the runtime version you want.
213-
Upgrading a runtime is highly recommended in case of deprecation, and for runtimes that have reached end-of-support or end-of-life. See the [functions runtimes lifecycle documentation](/serverless/functions/reference-content/functions-lifecycle/) for more information.
213+
Upgrading a runtime is highly recommended in case of deprecation, and for runtimes that have reached end-of-support or end-of-life. See the [functions runtimes lifecycle documentation](/serverless-functions/reference-content/functions-lifecycle/) for more information.
214214

215215
## Network and storage
216216

@@ -240,21 +240,21 @@ solutions like Scaleway Object Storage.
240240

241241
### How can I store data in my Serverless resource?
242242

243-
Serverless resources are by default [stateless](/serverless/functions/concepts/#stateless), local storage is ephemeral.
243+
Serverless resources are by default [stateless](/serverless-functions/concepts/#stateless), local storage is ephemeral.
244244

245245
For some use cases, such as saving analysis results, exporting data etc., it can be important to save data. Serverless resources can be connected to other resources from the Scaleway ecosystem for this purpose:
246246

247247
#### Databases
248248

249-
* [Serverless Databases](/serverless/sql-databases/): Go full serverless and take the complexity out of PostgreSQL database operations.
250-
* [Managed MySQL / PostgreSQL](/managed-databases/postgresql-and-mysql/): Ensure scalability of your infrastructure and storage with our new generation of Managed Databases designed to scale on-demand according to your needs.
251-
* [Managed Database for Redis®](/managed-databases/redis/): Fully managed Redis®* in seconds.
252-
* [Managed MongoDB®](/managed-databases/mongodb/): Get the best of MongoDB® and Scaleway in one database.
249+
* [Serverless Databases](/serverless-sql-databases/): Go full serverless and take the complexity out of PostgreSQL database operations.
250+
* [Managed MySQL / PostgreSQL](/managed-databases-for-postgresql-and-mysql/): Ensure scalability of your infrastructure and storage with our new generation of Managed Databases designed to scale on-demand according to your needs.
251+
* [Managed Database for Redis®](/managed-databases-for-redis/): Fully managed Redis®* in seconds.
252+
* [Managed MongoDB®](/managed-mongodb-databases/): Get the best of MongoDB® and Scaleway in one database.
253253

254254
#### Storage
255255

256-
* [Object Storage](/storage/object/): Multi-AZ resilient object storage service ensuring high availability for your data.
257-
* [Scaleway Glacier](/storage/object/): Our outstanding Cold Storage class to secure long-term object storage. Ideal for deep archived data.
256+
* [Object Storage](/object-storage/): Multi-AZ resilient object storage service ensuring high availability for your data.
257+
* [Scaleway Glacier](/object-storage/): Our outstanding Cold Storage class to secure long-term object storage. Ideal for deep archived data.
258258

259259
<Message type="tip">
260260
Explore all Scaleway products in the console and select the right product for your use case.

0 commit comments

Comments
 (0)