Skip to content

Commit 0b90e84

Browse files
committed
Deprecate and remove some storage plugins
1 parent 67b9b0b commit 0b90e84

File tree

2 files changed

+20
-56
lines changed

2 files changed

+20
-56
lines changed

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

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -314,12 +314,9 @@ PersistentVolume types are implemented as plugins. Kubernetes currently supports
314314
* [`azureDisk`](/docs/concepts/storage/volumes/#azuredisk) - Azure Disk
315315
* [`azureFile`](/docs/concepts/storage/volumes/#azurefile) - Azure File
316316
* [`cephfs`](/docs/concepts/storage/volumes/#cephfs) - CephFS volume
317-
* [`cinder`](/docs/concepts/storage/volumes/#cinder) - Cinder (OpenStack block storage)
318-
(**deprecated**)
319317
* [`csi`](/docs/concepts/storage/volumes/#csi) - Container Storage Interface (CSI)
320318
* [`fc`](/docs/concepts/storage/volumes/#fc) - Fibre Channel (FC) storage
321319
* [`flexVolume`](/docs/concepts/storage/volumes/#flexVolume) - FlexVolume
322-
* [`flocker`](/docs/concepts/storage/volumes/#flocker) - Flocker storage
323320
* [`gcePersistentDisk`](/docs/concepts/storage/volumes/#gcepersistentdisk) - GCE Persistent Disk
324321
* [`glusterfs`](/docs/concepts/storage/volumes/#glusterfs) - Glusterfs volume
325322
* [`hostPath`](/docs/concepts/storage/volumes/#hostpath) - HostPath volume
@@ -329,17 +326,28 @@ PersistentVolume types are implemented as plugins. Kubernetes currently supports
329326
* [`local`](/docs/concepts/storage/volumes/#local) - local storage devices
330327
mounted on nodes.
331328
* [`nfs`](/docs/concepts/storage/volumes/#nfs) - Network File System (NFS) storage
332-
* `photonPersistentDisk` - Photon controller persistent disk.
333-
(This volume type no longer works since the removal of the corresponding
334-
cloud provider.)
335329
* [`portworxVolume`](/docs/concepts/storage/volumes/#portworxvolume) - Portworx volume
336-
* [`quobyte`](/docs/concepts/storage/volumes/#quobyte) - Quobyte volume
337330
* [`rbd`](/docs/concepts/storage/volumes/#rbd) - Rados Block Device (RBD) volume
338-
* [`scaleIO`](/docs/concepts/storage/volumes/#scaleio) - ScaleIO volume
339-
(**deprecated**)
340-
* [`storageos`](/docs/concepts/storage/volumes/#storageos) - StorageOS volume
341331
* [`vsphereVolume`](/docs/concepts/storage/volumes/#vspherevolume) - vSphere VMDK volume
342332

333+
The following types of PersistentVolume are deprecated. This means that support is still available but will be removed in a future Kubernetes release.
334+
335+
* [`cinder`](/docs/concepts/storage/volumes/#cinder) - Cinder (OpenStack block storage)
336+
(**deprecated** in v1.18)
337+
* [`flocker`](/docs/concepts/storage/volumes/#flocker) - Flocker storage
338+
(**deprecated** in v1.22)
339+
* [`quobyte`](/docs/concepts/storage/volumes/#quobyte) - Quobyte volume
340+
(**deprecated** in v1.22)
341+
* [`storageos`](/docs/concepts/storage/volumes/#storageos) - StorageOS volume
342+
(**deprecated** in v1.22)
343+
344+
Older versions of Kubernetes also supported the following in-tree PersistentVolume types:
345+
346+
* `photonPersistentDisk` - Photon controller persistent disk.
347+
(**not available** after v1.15)
348+
* [`scaleIO`](/docs/concepts/storage/volumes/#scaleio) - ScaleIO volume
349+
(**not available** after v1.21)
350+
343351
## Persistent Volumes
344352

345353
Each PV contains a spec and status, which is the specification and status of the volume.
@@ -437,7 +445,6 @@ In the CLI, the access modes are abbreviated to:
437445
| RBD | ✓ | ✓ | - |
438446
| VsphereVolume | ✓ | - | - (works when Pods are collocated) |
439447
| PortworxVolume | ✓ | - | ✓ |
440-
| ScaleIO | ✓ | ✓ | - |
441448
| StorageOS | ✓ | - | - |
442449

443450
### Class

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

Lines changed: 2 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ A container using a projected volume source as a [`subPath`](#using-subpath) vol
919919
receive updates for those volume sources.
920920
{{< /note >}}
921921

922-
### quobyte
922+
### quobyte (deprecated) {#quobyte}
923923

924924
A `quobyte` volume allows an existing [Quobyte](https://www.quobyte.com) volume to
925925
be mounted into your Pod.
@@ -955,49 +955,6 @@ Simultaneous writers are not allowed.
955955
See the [RBD example](https://github.com/kubernetes/examples/tree/{{< param "githubbranch" >}}/volumes/rbd)
956956
for more details.
957957

958-
### scaleIO (deprecated) {#scaleio}
959-
960-
ScaleIO is a software-based storage platform that uses existing hardware to
961-
create clusters of scalable shared block networked storage. The `scaleIO` volume
962-
plugin allows deployed pods to access existing ScaleIO
963-
volumes. For information about dynamically provisioning new volumes for
964-
persistent volume claims, see
965-
[ScaleIO persistent volumes](/docs/concepts/storage/persistent-volumes/#scaleio).
966-
967-
{{< note >}}
968-
You must have an existing ScaleIO cluster already setup and
969-
running with the volumes created before you can use them.
970-
{{< /note >}}
971-
972-
The following example is a Pod configuration with ScaleIO:
973-
974-
```yaml
975-
apiVersion: v1
976-
kind: Pod
977-
metadata:
978-
name: pod-0
979-
spec:
980-
containers:
981-
- image: k8s.gcr.io/test-webserver
982-
name: pod-0
983-
volumeMounts:
984-
- mountPath: /test-pd
985-
name: vol-0
986-
volumes:
987-
- name: vol-0
988-
scaleIO:
989-
gateway: https://localhost:443/api
990-
system: scaleio
991-
protectionDomain: sd0
992-
storagePool: sp1
993-
volumeName: vol-0
994-
secretRef:
995-
name: sio-secret
996-
fsType: xfs
997-
```
998-
999-
For further details, see the [ScaleIO](https://github.com/kubernetes/examples/tree/{{< param "githubbranch" >}}/staging/volumes/scaleio) examples.
1000-
1001958
### secret
1002959

1003960
A `secret` volume is used to pass sensitive information, such as passwords, to
@@ -1017,7 +974,7 @@ receive Secret updates.
1017974

1018975
For more details, see [Configuring Secrets](/docs/concepts/configuration/secret/).
1019976

1020-
### storageOS {#storageos}
977+
### storageOS (deprecated) {#storageos}
1021978

1022979
A `storageos` volume allows an existing [StorageOS](https://www.storageos.com)
1023980
volume to mount into your Pod.

0 commit comments

Comments
 (0)