Merge pull request #37729 from sftim/20221105_deprecate_glusterfs_more

Deprecate glusterfs in more places
pull/37397/head
Kubernetes Prow Robot 2022-11-05 22:08:15 -07:00 committed by GitHub
commit c2555da010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -297,18 +297,18 @@ the following types of volumes:
* {{< glossary_tooltip text="csi" term_id="csi" >}}
* flexVolume (deprecated)
* gcePersistentDisk
* glusterfs
* glusterfs (deprecated)
* rbd
* portworxVolume
You can only expand a PVC if its storage class's `allowVolumeExpansion` field is set to true.
``` yaml
```yaml
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: gluster-vol-default
provisioner: kubernetes.io/glusterfs
name: example-vol-default
provisioner: vendor-name.example/magicstorage
parameters:
resturl: "http://192.168.10.100:8080"
restuser: ""
@ -616,7 +616,7 @@ The following volume types support mount options:
* `cephfs`
* `cinder` (**deprecated** in v1.18)
* `gcePersistentDisk`
* `glusterfs`
* `glusterfs` (**deprecated** in v1.25)
* `iscsi`
* `nfs`
* `rbd`

View File

@ -338,7 +338,7 @@ using `allowedTopologies`.
[allowedTopologies](#allowed-topologies)
{{< /note >}}
### Glusterfs
### Glusterfs (deprecated) {#glusterfs}
```yaml
apiVersion: storage.k8s.io/v1

View File

@ -534,7 +534,7 @@ spec:
revision: "22f1d8406d464b0c0874075539c1f2e96c253775"
```
### glusterfs (deprecated)
### glusterfs (deprecated) {#glusterfs}
{{< feature-state for_k8s_version="v1.25" state="deprecated" >}}
@ -542,7 +542,7 @@ A `glusterfs` volume allows a [Glusterfs](https://www.gluster.org) (an open
source networked filesystem) volume to be mounted into your Pod. Unlike
`emptyDir`, which is erased when a Pod is removed, the contents of a
`glusterfs` volume are preserved and the volume is merely unmounted. This
means that a glusterfs volume can be pre-populated with data, and that data can
means that a `glusterfs` volume can be pre-populated with data, and that data can
be shared between pods. GlusterFS can be mounted by multiple writers
simultaneously.