Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kierenevans authored Feb 12, 2025
1 parent 16f9e25 commit 563b9f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion persistent-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

View workflow job for this annotation

GitHub Actions / Markdown Lint

Line length

persistent-storage.md:131:101 MD013/line-length Line length [Expected: 100; Actual: 115] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.md

Check failure on line 131 in persistent-storage.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

Line length

persistent-storage.md:131:101 MD013/line-length Line length [Expected: 100; Actual: 115] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md013.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

View workflow job for this annotation

GitHub Actions / Markdown Lint

Trailing spaces

persistent-storage.md:132:82 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md009.md

Check failure on line 132 in persistent-storage.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

Trailing spaces

persistent-storage.md:132:82 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md009.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`
Expand Down

0 comments on commit 563b9f3

Please sign in to comment.