You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/guidelines.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ content:
7
7
paragraph: Discover comprehensive guidelines on writing and formatting for our documentation site. Ensure consistency and clarity with our style guide, covering grammar, terminology, and best practices.
8
8
tags: style-guide guidelines wording grammar
9
9
dates:
10
-
validation: 2024-08-07
10
+
validation: 2025-02-11
11
11
---
12
12
13
13
This document sets out the writing guidelines (style guide) for Scaleway Documentation, including grammar, formatting, and standardized terminology. These guidelines should be followed by both internal and external contributors when making additions to the Scaleway Documentation site.
Copy file name to clipboardExpand all lines: tutorials/deploying-a-documentation-website-with-docusaurus-on-scaleway/index.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ tags: docusaurus cms github
9
9
categories:
10
10
- object-storage
11
11
dates:
12
-
validation: 2024-08-07
12
+
validation: 2025-02-11
13
13
posted: 2023-01-04
14
14
---
15
15
@@ -22,7 +22,7 @@ It builds a single-page application with fast client-side navigation, leveraging
22
22
- A Scaleway account logged into the [console](https://console.scaleway.com)
23
23
-[Owner](/iam/concepts/#owner) status or [IAM permissions](/iam/concepts/#permission) allowing you to perform actions in the intended Organization
24
24
- An [Object Storage bucket](/object-storage/how-to/create-a-bucket/) with the [bucket website feature](/object-storage/how-to/use-bucket-website/) enabled
25
-
- A [GitHub](https://github.com/) account and an [empty repository](https://docs.github.com/en/get-started/quickstart/create-a-repo) for your Project
25
+
- A [GitHub](https://github.com/) account and an [empty repository](https://docs.github.com/en/get-started/quickstart/create-a-repo) for your documentation project
26
26
- A local development environment with [Node.js](https://nodejs.org/en/download/) (version 16.14 or above) and `git` installed
| For the k8s system itself |For applications in the cluster |
38
+
| For the k8s system itself | For applications in the cluster|
39
39
| Ephemeral (lives and dies with the node) | Persistent (beyond the life of a pod/node) |
40
40
| Auto-created | Must be provisioned |
41
41
42
-
You can view your cluster's system volumes in the **Instances > Volumes** section of the [console](https://console.scaleway.com/), and see how they are linked to the Instances that make up the nodes of your cluster. However, you should not attempt to use or manage these volumes - leave it to Kubernetes Kapsule.
42
+
You can view your cluster's system volumes in the **Block Storage > Volumes** section of the [console](https://console.scaleway.com/), and see how they are linked to the Instances that make up the nodes of your cluster. However, you should not attempt to use or manage these volumes - leave it to Kubernetes Kapsule.
43
43
44
44
### Stateless applications vs stateful applications
45
45
@@ -91,10 +91,10 @@ Both Deployments and StatefulSets manage the deployment and scaling of a set of
91
91
kubectl get all
92
92
```
93
93
94
-
2. Create a new file called ss.yaml:
94
+
2. Create a new file called `statefulset.yaml`:
95
95
96
96
```
97
-
nano ss.yaml
97
+
nano statefulset.yaml
98
98
```
99
99
100
100
This file will be a manifest for our StatefulSet object. It will describe the stateful application we want to deploy in the cluster and the persistent storage volumes that are required for the application.
@@ -160,7 +160,7 @@ Both Deployments and StatefulSets manage the deployment and scaling of a set of
160
160
4. Tell Kubernetes to create the StatefulSet from the manifest we just created with the following command:
161
161
162
162
```
163
-
kubectl create -f ss.yaml
163
+
kubectl create -f statefulset.yaml
164
164
```
165
165
166
166
A message displays to confirm the creation of the StatefulSet.
0 commit comments