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
{{ message }}
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: workshop/Lab2/README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -342,14 +342,14 @@ NAME STATUS ROLES AGE VERSION
342
342
```
343
343
344
344
To extend our table from Lab 1 we now have:
345
+
345
346
| Storage Type | Persisted at which level | Example Uses
346
347
| - | - | - |
347
348
| Container local storage | Container | ephermal state
348
349
| Secondary Storage ([EmptyDir](https://kubernetes.io/docs/concepts/storage/volumes/#emptydir)) | Pod | Checkpoint a long computation process
349
350
| Primary Storage ([HostPath](https://kubernetes.io/docs/concepts/storage/volumes/#hostpath)) | Node | Running cAdvisor in a container
350
351
| IBM Cloud File Storage (NFS) | Availabilty Zone | Applications running in a single availabilty zone
351
352
352
-
<br>
353
353
Data is available to all nodes within the availability zone where the file storage exists, but the `accessMode` parameter on the `PersistentVolumeClaim` determines if multiple pods are able to mount a volume specificed by a PVC. The possible values for this parameter are:
354
354
355
355
-**ReadWriteMany**: The PVC can be mounted by multiple pods. All pods can read from and write to the volume.
@@ -366,7 +366,6 @@ Another way to see that the data is persisted at the availability zone level, yo
0 commit comments