Fix orders of yaml of concepts/storage/* (#14213)

The orders of kind and metadata were inconsistent, and that made the
doc unreadable.
This fixes the orders in consistent way under concepts/storage/.
This commit is contained in:
Kenichi Omichi
2019-05-07 22:18:34 -07:00
committed by Kubernetes Prow Robot
parent f952ac106f
commit 6b46deab6e
2 changed files with 18 additions and 18 deletions
@@ -198,8 +198,8 @@ the following types of volumes:
You can only expand a PVC if its storage class's `allowVolumeExpansion` field is set to true.
``` yaml
kind: StorageClass
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: gluster-vol-default
provisioner: kubernetes.io/glusterfs
@@ -442,8 +442,8 @@ The CLI will show the name of the PVC bound to the PV.
Each PVC contains a spec and status, which is the specification and status of the claim.
```yaml
kind: PersistentVolumeClaim
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: myclaim
spec:
@@ -531,8 +531,8 @@ it won't be supported in a future Kubernetes release.
Pods access storage by using the claim as a volume. Claims must exist in the same namespace as the pod using the claim. The cluster finds the claim in the pod's namespace and uses it to get the `PersistentVolume` backing the claim. The volume is then mounted to the host and into the pod.
```yaml
kind: Pod
apiVersion: v1
kind: Pod
metadata:
name: mypod
spec: