Skip to content

Commit 382792d

Browse files
authored
docs(gen): review tutorials 2025-04-22 (#4872)
1 parent 8c6af7c commit 382792d

File tree

16 files changed

+29
-29
lines changed

16 files changed

+29
-29
lines changed

tutorials/create-wordpress-instances-cli/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ categories:
99
- instances
1010
tags: InstantApp WordPress
1111
dates:
12-
validation: 2024-10-15
12+
validation: 2025-04-22
1313
posted: 2021-10-11
1414
---
1515

tutorials/foreman-puppet/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags: Foreman puppet Ubuntu Jammy Jellyfish
99
categories:
1010
- instances
1111
dates:
12-
validation: 2024-10-15
12+
validation: 2025-04-22
1313
posted: 2018-08-06
1414
---
1515

@@ -83,15 +83,15 @@ The fastest way to install Foreman is by using the installer, which installs and
8383
1. Install Puppet 6.x from the Puppetlabs repository as follows:
8484
```
8585
apt-get -y install ca-certificates
86-
wget https://apt.puppetlabs.com/puppet7-release-focal.deb
87-
sudo dpkg -i puppet7-release-focal.deb
86+
wget https://apt.puppetlabs.com/puppet8-release-focal.deb
87+
sudo dpkg -i puppet8-release-focal.deb
8888
apt-get update
8989
apt-get -y install puppet-agent
9090
```
9191
2. Add the Foreman repository to the [APT package manager sources list](https://en.wikipedia.org/wiki/APT_(Debian)):
9292
```
93-
echo "deb http://deb.theforeman.org/ focal 3.7" | sudo tee /etc/apt/sources.list.d/foreman.list
94-
echo "deb http://deb.theforeman.org/ plugins 3.7" | sudo tee -a /etc/apt/sources.list.d/foreman.list
93+
echo "deb http://deb.theforeman.org/ focal 3.12" | sudo tee /etc/apt/sources.list.d/foreman.list
94+
echo "deb http://deb.theforeman.org/ plugins 3.12" | sudo tee -a /etc/apt/sources.list.d/foreman.list
9595
wget -q https://deb.theforeman.org/pubkey.gpg -O- | sudo apt-key add -
9696
```
9797
3. Download the installer via APT:

tutorials/get-started-containers-docker/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags: Kubernetes Docker
99
categories:
1010
- kubernetes
1111
dates:
12-
validation: 2024-10-08
12+
validation: 2025-04-22
1313
posted: 2022-04-07
1414
---
1515

tutorials/hadoop/index.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags: Hadoop big-data Ubuntu
99
categories:
1010
- compute
1111
dates:
12-
validation: 2024-10-08
12+
validation: 2025-04-22
1313
posted: 2018-08-29
1414
---
1515

@@ -64,41 +64,41 @@ For more information, refer to the [official Apache Hadoop documentation.](http:
6464

6565
## Installing Hadoop in standalone mode
6666

67-
1. Visit the [Apache Hadoop Releases page](http://hadoop.apache.org/releases.html) to select the most recent stable release. We will install Hadoop version 3.4.0.
67+
1. Visit the [Apache Hadoop Releases page](http://hadoop.apache.org/releases.html) to select the most recent stable release. We will install Hadoop version 3.4.1.
6868
2. Copy the link to the release binary.
6969
<Lightbox src="scaleway-apacheDL.webp" alt="" />
7070
3. Use `wget` to fetch it:
7171
```
72-
wget https://dlcdn.apache.org/hadoop/common/hadoop-3.4.0/hadoop-3.4.0.tar.gz
72+
wget https://dlcdn.apache.org/hadoop/common/hadoop-3.4.1/hadoop-3.4.1.tar.gz
7373
```
7474

7575
To make sure that the file we downloaded has not been altered, we'll do a quick check using [SHA-256](https://en.wikipedia.org/wiki/SHA-2). Return to the releases page, then click and copy the link to the checksum file for the release binary you downloaded:
7676

7777
<Lightbox src="scaleway-checksumDL.webp" alt="" />
7878
4. Copy the link displayed in the browser and use `wget` on our server to download the file.
7979
```
80-
wget https://dlcdn.apache.org/hadoop/common/hadoop-3.4.0/hadoop-3.4.0.tar.gz.sha512
80+
wget https://dlcdn.apache.org/hadoop/common/hadoop-3.4.1/hadoop-3.4.1.tar.gz.sha512
8181
```
8282
5. Run the following verification:
8383
```
84-
shasum -a 512 hadoop-3.4.0.tar.gz
84+
shasum -a 512 hadoop-3.4.1.tar.gz
8585
```
8686
```
87-
6f653c0109f97430047bd3677c50da7c8a2809d153b231794cf980b3208a6b4beff8ff1a03a01094299d459a3a37a3fe16731629987165d71f328657dbf2f24c hadoop-3.4.0.tar.gz
87+
6f653c0109f97430047bd3677c50da7c8a2809d153b231794cf980b3208a6b4beff8ff1a03a01094299d459a3a37a3fe16731629987165d71f328657dbf2f24c hadoop-3.4.1.tar.gz
8888
```
8989
6. Compare this value with the SHA-256 value in the .mds file:
9090
```
91-
cat hadoop-3.4.0.tar.gz.sha512
91+
cat hadoop-3.4.1.tar.gz.sha512
9292
```
9393

9494
The output of the command we ran against the file we downloaded from the mirror should match the value in the file we downloaded from `apache.org.`.
9595
7. Use the tar command with the `-x` flag to extract, `-z` to uncompress, `-v` for verbose output, and `-f` to specify that we are extracting from a file.
9696
```
97-
tar -xzvf hadoop-3.4.0.tar.gz
97+
tar -xzvf hadoop-3.4.1.tar.gz
9898
```
9999
8. Move the extracted files into `/usr/local`. Change the version number to match the version you downloaded.
100100
```
101-
mv hadoop-3.4.0 /usr/local/hadoop
101+
mv hadoop-3.4.1 /usr/local/hadoop
102102
```
103103

104104
## Configuring Hadoop's Java home

tutorials/hestiacp/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ content:
88
tags: HestiaCP control-panel
99
- instances
1010
dates:
11-
validation: 2024-10-08
11+
validation: 2025-04-22
1212
posted: 2020-07-07
1313
---
1414

@@ -57,7 +57,7 @@ In this tutorial, you will learn how to install and configure HestiaCP on Ubuntu
5757
|_| |_|\___||___/\__|_|\__,_|\____|_|
5858
5959
Hestia Control Panel
60-
v1.8.12
60+
v1.9.3
6161
====================================================================
6262
The following server components will be installed on your system:
6363

tutorials/migrate-mysql-databases-postgresql-pgloader/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories:
1010
- instances
1111
- postgresql-and-mysql
1212
dates:
13-
validation: 2024-10-08
13+
validation: 2025-04-22
1414
posted: 2019-11-19
1515
---
1616

tutorials/processing-images-structured-outputs-pixtral/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories:
1111
- generative-apis
1212
hero: assets/Pixtral-Structured-Outputs.webp
1313
dates:
14-
validation: 2024-10-09
14+
validation: 2025-04-22
1515
posted: 2024-10-09
1616
---
1717

tutorials/pushing-metrics-logs-from-scw-instance/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories:
1010
- cockpit
1111
- instances
1212
dates:
13-
validation: 2024-10-15
13+
validation: 2025-04-22
1414
posted: 2023-06-28
1515
---
1616

tutorials/python-lists-dicts/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags: python loops
99
categories:
1010
- compute
1111
dates:
12-
validation: 2024-10-08
12+
validation: 2025-04-22
1313
posted: 2023-03-23
1414
---
1515

tutorials/send-sms-iot-device-twilio/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ categories:
99
- iot-hub
1010
tags: IoT-Hub iot Serverless SMS Twilio
1111
dates:
12-
validation: 2024-10-08
12+
validation: 2025-04-22
1313
posted: 2020-10-13
1414
---
1515

0 commit comments

Comments
 (0)