Merge pull request #318 from cubic3d/master
Fix examples with wrong schema
This commit is contained in:
commit
1129c4120a
|
|
@ -9,6 +9,13 @@ spec:
|
|||
accessModes:
|
||||
- ReadWriteOnce
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
mountOptions: []
|
||||
csi:
|
||||
driver: org.democratic-csi.node-manual
|
||||
readOnly: false
|
||||
# can be ext4 or xfs
|
||||
fsType: ext4
|
||||
volumeHandle: unique-volumeid # make sure it's a unique id in the cluster
|
||||
# can be used to handle CHAP
|
||||
# in the secret create the following keys:
|
||||
#
|
||||
|
|
@ -24,13 +31,6 @@ spec:
|
|||
#nodeStageSecretRef:
|
||||
# name: some name
|
||||
# namespace: some namespace
|
||||
mountOptions: []
|
||||
csi:
|
||||
driver: org.democratic-csi.node-manual
|
||||
readOnly: false
|
||||
# can be ext4 or xfs
|
||||
fsType: ext4
|
||||
volumeHandle: unique-volumeid # make sure it's a unique id in the cluster
|
||||
volumeAttributes:
|
||||
portal: <ip:port>
|
||||
#portals: <ip:port>,<ip:port>,...
|
||||
|
|
|
|||
|
|
@ -9,9 +9,6 @@ spec:
|
|||
accessModes:
|
||||
- ReadWriteMany
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
#nodeStageSecretRef:
|
||||
# name: some name
|
||||
# namespace: some namespace
|
||||
mountOptions:
|
||||
# creds can be entered into the node-stage-secret in the `mount_flags` key
|
||||
# the value should be: username=foo,password=bar
|
||||
|
|
@ -22,6 +19,9 @@ spec:
|
|||
readOnly: false
|
||||
fsType: cifs
|
||||
volumeHandle: unique-volumeid # make sure it's a unique id in the cluster
|
||||
#nodeStageSecretRef:
|
||||
# name: some name
|
||||
# namespace: some namespace
|
||||
volumeAttributes:
|
||||
server: host or ip
|
||||
share: someshare
|
||||
|
|
|
|||
Loading…
Reference in New Issue