Skip to content

Commit 81b1b2d

Browse files
JoeKehrLaure-di
authored andcommitted
Fix mistyping "stateless" for "stateful" (scaleway#3958)
1 parent 5ab9d98 commit 81b1b2d

File tree

1 file changed

+2
-2
lines changed
  • tutorials/get-started-kubernetes-storage

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ What kind of applications need to use persistent volumes? To answer this, we mus
4747

4848
**Stateless** applications do not need to load or save data: each request to the application is independent. There may be data in the payload of the request, but has not been retrieved from a previously saved state. A request to a search engine is a good example of this.
4949

50-
**Stateful** applications **do** need to save and load data. Most modern applications are stateless, such as online banking which needs to be able to store and retrieve all your transaction history, and online shopping which stores and remembers your previous orders. To run stateful applications in Kubernetes, we need to provision persistent storage volumes where they can store the data that gives them their state.
50+
**Stateful** applications **do** need to save and load data. Most modern applications are stateful, such as online banking which needs to be able to store and retrieve all your transaction history, and online shopping which stores and remembers your previous orders. To run stateful applications in Kubernetes, we need to provision persistent storage volumes where they can store the data that gives them their state.
5151

5252
| Stateless applications | Stateful applications |
5353
| ----------------------------------------------------------- | -------------------------------------------------------------------- |
@@ -236,4 +236,4 @@ Try creating [snapshots](/storage/block/how-to/create-a-snapshot/) for your volu
236236
237237
You can make snapshots by creating a manifest for a **VolumeSnapshot** object and applying it with kubectl. Refer to the [official Kubernetes documentation](https://kubernetes.io/docs/concepts/storage/volume-snapshots/) for help with this. You can then check the creation of the snapshot in the Storage > Block Storage > Snapshots section of the console.
238238
239-
It is also possible to create volumes from existing snapshots, again full details are available in the [official Kubernetes documentation](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#volume-snapshot-and-restore-volume-from-snapshot-support).
239+
It is also possible to create volumes from existing snapshots, again full details are available in the [official Kubernetes documentation](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#volume-snapshot-and-restore-volume-from-snapshot-support).

0 commit comments

Comments
 (0)