Skip to content

Commit c760959

Browse files
authored
Fix tiny typo in NFS Volume example.
`Pod.spec.volumes.nfs.readOnly` was subtly misspelled `readonly`, which was breaking the example. ``` $ k explain Pod.spec.volumes.nfs.readonly error: field "readonly" does not exist $ k explain Pod.spec.volumes.nfs.readOnly KIND: Pod VERSION: v1 FIELD: readOnly <boolean> ... ```
1 parent 3b7cfcd commit c760959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/concepts/storage/volumes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ spec:
788788
nfs:
789789
server: my-nfs-server.example.com
790790
path: /my-nfs-volume
791-
readonly: true
791+
readOnly: true
792792
```
793793

794794
{{< note >}}

0 commit comments

Comments
 (0)