-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16f9e25
commit 563b9f3
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,7 +128,8 @@ Next we fill in the values: | |
- The `apiVersion` should be `v1` | ||
- The `kind` is `PersistentVolumeClaim` | ||
- The `metadata.name` should be `postgres-pvc` | ||
- From the previous section we know that we have one two `StorageClass` available, so we should choose one of them. "gp3" is faster and cheaper than "gp2" in AWS, so let's go with that by setting | ||
- From the previous section we know that we have one two `StorageClass` available, so we should choose one of them. | ||
Check failure on line 131 in persistent-storage.md
|
||
"gp3" is faster and cheaper than "gp2" in AWS, so let's go with that by setting | ||
Check failure on line 132 in persistent-storage.md
|
||
`spec.storageClassName` to `"gp3"` (with quotes) | ||
- The `spec.accessModes` list should contain one item with the value `ReadWriteOnce` | ||
- the `spec.resources.requests.storage` is the size of the volume in Gibibytes (Gi), set it to `5Gi` | ||
|