Skip to content

Commit 1156455

Browse files
jsudraudRoRoJ
andauthored
fix(docs): cta in tutorials (#4564)
* fix(docs): cta in tutorials * Apply suggestions from code review Co-authored-by: Rowena Jones <[email protected]> * Apply suggestions from code review --------- Co-authored-by: Rowena Jones <[email protected]>
1 parent dfd6dba commit 1156455

File tree

19 files changed

+124
-19
lines changed

19 files changed

+124
-19
lines changed

tutorials/back-up-postgresql-barman/index.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ dates:
1313
validation: 2024-09-16
1414
posted: 2018-08-29
1515
---
16-
16+
<ClickableBanner
17+
productLogo="generic"
18+
title="Ensure database reliability with PostgreSQL backups using Barman on Scaleway."
19+
url="https://account.scaleway.com/register"
20+
label="Create your account"
21+
/>
1722
Barman is an open-source administration tool designed for PostgreSQL server disaster recovery. Developed in Python, Barman offers the capability to efficiently conduct remote backups across multiple servers in diverse business environments.
1823

1924
Setting itself apart with its unique methodology, Barman uses PostgreSQL logs for backup creation, offering a sophisticated alternative to traditional SQL dump processes.

tutorials/backup-postgresql-pgbackrest-s3/index.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,4 +201,10 @@ If you want to back up at certain time intervals, you can add this to the cron:
201201
- To keep only the last differential backup:
202202
```
203203
sudo -u postgres pgbackrest --stanza=db-primary --repo1-retention-diff=1 expire
204-
```
204+
```
205+
<ClickableBanner
206+
productLogo="generic"
207+
title="Protect your databases with automated backups to Scaleway Object Storage."
208+
url="https://account.scaleway.com/register"
209+
label="Create your account"
210+
/>

tutorials/bash-christmas-tree/index.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,11 @@ ssh root@<Instance Public IP>
123123
The script writes an animated tree on the terminal window:
124124
125125
<Lightbox src="scaleway-animated-tree.gif" alt="" />
126-
2. Exit the script by pressing `CTRL` + `c`.
126+
2. Exit the script by pressing `CTRL` + `c`.
127+
128+
<ClickableBanner
129+
productLogo="generic"
130+
title="Start your Cloud journey with Scaleway."
131+
url="https://account.scaleway.com/register"
132+
label="Create your account"
133+
/>

tutorials/configure-failover-proxmox/index.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,10 @@ ISO files are archive files that contain identical copies of the data found on o
112112

113113
<Message type="tip">
114114
Follow the official documentation to learn more about [VM templates and Clones](https://pve.proxmox.com/wiki/VM_Templates_and_Clones) or watch tutorials on the official [Youtube canal](https://www.youtube.com/user/ProxmoxVE).
115-
</Message>
115+
</Message>
116+
<ClickableBanner
117+
productLogo="generic"
118+
title="Ensure high availability with failover setup for Proxmox on Scaleway."
119+
url="https://account.scaleway.com/register"
120+
label="Create your account"
121+
/>

tutorials/get-started-kubernetes-loadbalancer/index.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ dates:
1212
validation: 2024-10-03
1313
posted: 2023-09-19
1414
---
15-
15+
<ClickableBanner
16+
productLogo="generic"
17+
title="Deploy and scale your applications with Kubernetes and Load Balancers on Scaleway."
18+
url="https://account.scaleway.com/register"
19+
label="Create your account"
20+
/>
1621
This tutorial accompanies the third [video demonstration](https://www.youtube.com/watch?v=W3gPUQ_ELEo) in our series to help users get started with Kubernetes. We walk you through Kubernetes fundamentals for beginners. In this installment, we show you how to create a Load Balancer for your [Scaleway Kubernetes Kapsule](https://www.scaleway.com/en/kubernetes-kapsule/).
1722

1823
First, we address the question of why we need a Load Balancer for our cluster, comparing it with the NodePort service we used in the previous tutorial. We then explain how to create a Load Balancer, check it out in the Scaleway console, and finally test that we can access our cluster's deployed application at the Load Balancer's IP address.

tutorials/how-to-implement-rag-generativeapis/index.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,3 +379,9 @@ You can fix this with `Applications/Python 3.X` (where `X` is your version numbe
379379
If this is a private repository, make sure to pass a token having permission to this repo either by logging in with `huggingface-cli login` or by passing ```token=<your_token>```
380380

381381
**Solution**: This is caused by the LangChain OpenAI adapter trying to tokenize content. Ensure you set `check_embedding_ctx_length=False` in OpenAIEmbedding configuration to avoid tokenizing content, as tokenization will be performed server-side in Generative APIs.
382+
<ClickableBanner
383+
productLogo="generic"
384+
title="Enhance your AI applications with Retrieval-Augmented Generation on Scaleway."
385+
url="https://account.scaleway.com/register"
386+
label="Create your account"
387+
/>

tutorials/install-apache-ansible/index.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,4 +189,10 @@ Customize Apache configuration as per your requirements:
189189

190190
Once Ansible is fully set up, you can visit your web browser on port 8081 (rather than port 80). In most web browsers, this can be easily achieved by adding :port onto the end of the URL: http://public_ip_address:8081/.
191191

192-
<Lightbox src="scaleway-apache_defaultpage.webp" alt="" />
192+
<Lightbox src="scaleway-apache_defaultpage.webp" alt="" />
193+
<ClickableBanner
194+
productLogo="generic"
195+
title="Automate your web server deployment using Ansible on Scaleway."
196+
url="https://account.scaleway.com/register"
197+
label="Create your account"
198+
/>

tutorials/install-github-actions-runner-mac/index.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ dates:
1212
validation: 2024-10-24
1313
posted: 2024-01-31
1414
---
15-
15+
<ClickableBanner
16+
productLogo="generic"
17+
title="Automate your CI/CD workflows on macOS with GitHub Actions Runners"
18+
url="https://account.scaleway.com/register"
19+
label="Create your account"
20+
/>
1621
GitHub Actions is a powerful CI/CD platform that allows users to automate their software development workflows, connected to a GitHub organization or repository. While GitHub offers online runners with a pay-as-you-go model, self-hosted runners provide increased control and customization for your CI/CD setup. This tutorial guides you through setting up, configuring, and connecting a self-hosted runner on a Mac mini to execute macOS pipelines.
1722

1823
<Macro id="requirements" />

tutorials/install-pgbouncer/index.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,4 +214,10 @@ You can do an online restart without terminating the connections. PgBouncer laun
214214
systemctl reload pgbouncer.service
215215
```
216216

217-
This setup allows the basic installation of PgBouncer. For more information on commands and configuration, refer to the [official documentation](https://www.pgbouncer.org).
217+
This setup allows the basic installation of PgBouncer. For more information on commands and configuration, refer to the [official documentation](https://www.pgbouncer.org).
218+
<ClickableBanner
219+
productLogo="generic"
220+
title="Deploy PgBouncer on Scaleway and optimize your database connections"
221+
url="https://account.scaleway.com/register"
222+
label="Create your account"
223+
/>

tutorials/install-wireguard/index.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ dates:
1212
validation: 2025-01-02
1313
posted: 2019-03-28
1414
---
15-
15+
<ClickableBanner
16+
productLogo="generic"
17+
title="Enhance security with WireGuard VPN on your Scaleway infrastructure."
18+
url="https://account.scaleway.com/register"
19+
label="Create your account"
20+
/>
1621
WireGuard® is a VPN (Virtual Private Network) software designed for simplicity and efficiency. It is distinguished by its small codebase, which aims to reduce complexity and potential security vulnerabilities, and offers faster performance compared to some other VPN solutions, due to its streamlined design.
1722

1823
In terms of security, WireGuard uses modern cryptographic protocols, including Curve25519, ChaCha20, and Poly1305, focusing on established cryptographic methods.

0 commit comments

Comments
 (0)