Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kierenevans authored Feb 13, 2025
1 parent b54f9c6 commit 16e92fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions persistent-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ We see that we indeed have a `StorageClass` available and ready for use!

The output of the `kubectl get sc` command provides some useful information about the StorageClass:

- `PROVISIONNER` what is the underlying storage provider, in this case `AWS EBS` (Elastic Block Storage)
- `PROVISIONER` what is the underlying storage provider, in this case `AWS EBS` (Elastic Block Storage)
- `RECLAIMPOLICY` what will happen with the volume when the `PersistentVolume` resource is deleted,
in this case `Delete` will delete the block storage.
- `VOLUMEBINDINGMODE` specifies how to provision the actual volume, `WaitForFirstConsumer` will
Expand Down Expand Up @@ -163,7 +163,7 @@ Expected output:
persistentvolumeclaim/postgres-pvc created
```

Check that the `PersistenVolumeClaim` was created using `kubectl get`:
Check that the `PersistentVolumeClaim` was created using `kubectl get`:

```shell
kubectl get persistentvolumeclaim
Expand Down

0 comments on commit 16e92fe

Please sign in to comment.