From 34abe546e1996236d375686122981b822bd9763a Mon Sep 17 00:00:00 2001 From: Kenichi Omichi Date: Fri, 24 Aug 2018 05:51:46 -0700 Subject: [PATCH] Remove the volume type "fast" from sample (#10031) The original doc contained "type: fast" which means the volume type "fast" should exist on OpenStack/Cinder side. However there is not any standard volume type name and most people face the StorageClass issue when specifying this volume type. In addition, the issue is hard to be debugged because the error message which explains the nonexistent volume type is not output on debugging information. Then external cloud-provider-openstack doesn't contain the volume type "fast" today as [1]. This removes it for avoiding confusions for users who still use the deprecated internal provisioner. [1]: https://github.com/kubernetes/cloud-provider-openstack/blob/master/examples/persistent-volume-provisioning/cinder/cinder-storage-class.yaml --- content/en/docs/concepts/storage/storage-classes.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/content/en/docs/concepts/storage/storage-classes.md b/content/en/docs/concepts/storage/storage-classes.md index 1089ce13074..b820a89fd2c 100644 --- a/content/en/docs/concepts/storage/storage-classes.md +++ b/content/en/docs/concepts/storage/storage-classes.md @@ -289,12 +289,9 @@ metadata: name: gold provisioner: kubernetes.io/cinder parameters: - type: fast availability: nova ``` -* `type`: [VolumeType](https://docs.openstack.org/user-guide/dashboard-manage-volumes.html) - created in Cinder. Default is empty. * `availability`: Availability Zone. If not specified, volumes are generally round-robin-ed across all active zones where Kubernetes cluster has a node.