Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kierenevans committed Feb 12, 2025
1 parent 563b9f3 commit d28b2cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions persistent-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ 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
`spec.storageClassName` to `"gp3"` (with quotes)
- 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 `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`

Expand Down

0 comments on commit d28b2cb

Please sign in to comment.