k3s/docs
Kubernetes Submit Queue 455e9fff09 Merge pull request #46176 from vmware/vSphereStoragePolicySupport
Automatic merge from submit-queue

vSphere storage policy support for dynamic volume provisioning

Till now, vSphere cloud provider provides support to configure persistent volume with VSAN storage capabilities - kubernetes#42974. Right now this only works with VSAN.

Also there might be other use cases:

- The user might need a way to configure a policy on other datastores like VMFS, NFS etc.
- Use Storage IO control, VMCrypt policies for a persistent disk.

We can achieve about 2 use cases by using existing storage policies which are already created on vCenter using the Storage Policy Based Management service. The user will specify the SPBM policy ID as part of dynamic provisioning 

- resultant persistent volume will have the policy configured with it. 
- The persistent volume will be created on the compatible datastore that satisfies the storage policy requirements. 
- If there are multiple compatible datastores, the datastore with the max free space would be chosen by default.
- If the user specifies the datastore along with the storage policy ID, the volume will created on this datastore if its compatible. In case if the user specified datastore is incompatible, it would error out the reasons for incompatibility to the user.
- Also, the user will be able to see the associations of persistent volume object with the policy on the vCenter once the volume is attached to the node.

For instance in the below example, the volume will created on a compatible datastore with max free space that satisfies the "Gold" storage policy requirements.

```
kind: StorageClass
apiVersion: storage.k8s.io/v1beta1
metadata:
       name: fast
provisioner: kubernetes.io/vsphere-volume
parameters:
      diskformat: zeroedthick
      storagepolicyName: Gold
```

For instance in the below example, the vSphere CP checks if "VSANDatastore" is compatible with "Gold" storage policy requirements. If yes, volume will be provisioned on "VSANDatastore" else it will error that "VSANDatastore" is not compatible with the exact reason for failure.

```
kind: StorageClass
apiVersion: storage.k8s.io/v1beta1
metadata:
       name: fast
provisioner: kubernetes.io/vsphere-volume
parameters:
      diskformat: zeroedthick
      storagepolicyName: Gold
      datastore: VSANDatastore
```

As a part of this change, 4 commits have been added to this PR.

1. Vendor changes for vmware/govmomi
2. Changes to the VsphereVirtualDiskVolumeSource in the Kubernetes API. Added 2 additional fields StoragePolicyName, StoragePolicyID
3. Swagger and Open spec API changes.
4. vSphere Cloud Provider changes to implement the storage policy support.

**Release note**:


```release-note
vSphere cloud provider: vSphere Storage policy Support for dynamic volume provisioning
```
2017-05-22 23:41:10 -07:00
..
admin run hack/update-generated-docs.sh to strip munge tags 2017-02-16 10:17:17 -08:00
api-reference Open API and swagger spec changes 2017-05-22 19:45:02 -07:00
design replace contents of docs/design with stubs 2017-01-11 08:23:44 -05:00
devel PR template: Update links to kubernetes/community repo 2017-03-17 12:23:58 -04:00
getting-started-guides README: Update obsolete link 2017-03-17 12:15:35 -04:00
images Updated for v1.2.0. 2016-03-18 14:20:56 -07:00
man/man1 docs: add new generated docs for deprecated commands 2017-05-22 14:22:48 -07:00
proposals replace contents of docs/proposals with stubs 2016-12-21 21:15:09 -05:00
user-guide Merge pull request #44621 from caarlos0/patch-1 2017-05-11 19:39:40 -07:00
yaml/kubectl docs: add new generated docs for deprecated commands 2017-05-22 14:22:48 -07:00
.generated_docs .generated_docs: update to include "new" commands 2017-05-19 08:56:53 -07:00
BUILD Enable auto-generating sources rules 2017-01-05 14:14:13 -08:00
OWNERS Move .generated_docs to docs/ so docs OWNERS can review / approve 2017-02-16 10:11:57 -08:00
README.md fix munge-docs build errors 2016-11-17 16:49:00 +01:00
api.md fix munge-docs build errors 2016-11-17 16:49:00 +01:00
reporting-security-issues.md Replace out of date security disclosure doc 2017-03-17 10:45:33 -07:00

README.md

Kubernetes Documentation: releases.k8s.io/HEAD

Analytics