Skip to content

Commit fd69c08

Browse files
authored
pages/*.adoc: s/persistence/persistent (#56)
Correct persistence ^(storage volume volume claim) to persistent.
1 parent 443f9fd commit fd69c08

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

documentation/modules/ROOT/pages/statefulset.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include::_attributes.adoc[]
33
:watch-terminal: Terminal 2
44

55
A `StatefulSet` provides a unique identity to the Pods that they manage.
6-
`StatefulSet` s are particularly useful when your application requires a unique network identifier or persistence storage across Pod (re)scheduling or when your application needs some guarantee about the ordering of deployment and scaling.
6+
`StatefulSet` s are particularly useful when your application requires a unique network identifier or persistent storage across Pod (re)scheduling or when your application needs some guarantee about the ordering of deployment and scaling.
77

88
One of the most typical examples of using `StatefulSet` s is when one needs to deploy primary/secondary servers (i.e database cluster) where you need to know beforehand the hostname of each of the servers to start the cluster.
99
Also, when you scale up and down you want to do it in a specified order (i.e you want to start the primary node first and then the secondary node).

documentation/modules/ROOT/pages/volumes-persistentvolumes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ It can request for a specific volume size or, for example, the access mode.
525525

526526
:quick-open-file: demo-persistent-volume-hostpath.yaml
527527

528-
Let's use `hostPath` strategy, but not configuring it directly as volume, but using persistence volume and persistence volume claim. Check out `{quick-open-file}`:
528+
Let's use `hostPath` strategy, but not configuring it directly as volume, but using persistent volume and persistent volume claim. Check out `{quick-open-file}`:
529529

530530
include::partial$tip_vscode_quick_open.adoc[]
531531

@@ -668,7 +668,7 @@ Volumes:
668668
ReadOnly: false
669669
----
670670

671-
Notice that now the description of the pod shows that the volume is not set directly but through a persistence volume claim.
671+
Notice that now the description of the pod shows that the volume is not set directly but through a persistent volume claim.
672672

673673
include::partial$create-greeting-file.adoc[]
674674

0 commit comments

Comments
 (0)