diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index fae77cfdfe..fe7c5e9727 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -791,8 +791,8 @@ provisioner: kubernetes.io/scaleio parameters: gateway: https://192.168.99.200:443/api system: scaleio - protectionDomain: default - storagePool: default + protectionDomain: pd0 + storagePool: sp1 storageMode: ThinProvisionned secretRef: sio-secret readOnly: false @@ -802,12 +802,12 @@ parameters: * `provisioner`: attribute is set to `kubernetes.io/scaleio` * `gateway`: address to a ScaleIO API gateway (required) * `system`: the name of the ScaleIO system (required) -* `protectionDomain`: the name of the ScaleIO protection domain -* `storagePool`: the name of the volume storage pool +* `protectionDomain`: the name of the ScaleIO protection domain (required) +* `storagePool`: the name of the volume storage pool (required) * `storageMode`: the storage provision mode: `ThinProvisionned` (default) or `ThickProvisionned` -* `secretRef`: reference to a configured Secret object (required, see detail below) -* `readOnly`: specifies the access mode to the mounted volume -* `fsType`: the file system to use for the volume +* `secretRef`: reference to a configured Secret object (required) +* `readOnly`: specifies the access mode to the mounted volume (default false) +* `fsType`: the file system to use for the volume (default ext4) The ScaleIO Kubernetes volume plugin requires a configured Secret object. The secret must be created with type `kubernetes.io/scaleio` and use the same namespace value as that of the PVC where it is referenced diff --git a/docs/concepts/storage/volumes.md b/docs/concepts/storage/volumes.md index b9a9368d83..d360abc23b 100644 --- a/docs/concepts/storage/volumes.md +++ b/docs/concepts/storage/volumes.md @@ -671,8 +671,8 @@ More details and examples can be found [here](https://github.com/kubernetes/kube ### ScaleIO ScaleIO is a software-based storage platform that can use existing hardware to create clusters of scalable shared block networked storage. The ScaleIO volume plugin allows deployed pods to access existing ScaleIO -volumes (or it can dynamically provision new volumes for persistent volume claims, see -[ScaleIO Persistent Volumes](/docs/user-guide/persistent-volumes/#scaleio)). +volumes or it can dynamically provision new volumes, see +[ScaleIO Persistent Volumes](/docs/user-guide/persistent-volumes/#scaleio). __Important: You must have an existing ScaleIO cluster already setup and running with the volumes created before you can use them__ @@ -696,6 +696,8 @@ spec: scaleIO: gateway: https://localhost:443/api system: scaleio + protectionDomain: sd0 + storagePool: sp1 volumeName: vol-0 secretRef: name: sio-secret