Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 877 Bytes

dynamic-provisioning-cinder-definition.adoc

File metadata and controls

29 lines (26 loc) · 877 Bytes

OpenStack Cinder object definition

cinder-storageclass.yaml
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
  name: gold
provisioner: kubernetes.io/cinder
parameters:
  type: fast  (1)
  availability: nova (2)
  fsType: ext4 (3)
  1. Volume type created in Cinder. Default is empty.

  2. Availability Zone. If not specified, volumes are generally round-robined across all active zones where the {product-title} cluster has a node.

  3. File system that is created on dynamically provisioned volumes. This value is copied to the fsType field of dynamically provisioned persistent volumes and the file system is created when the volume is mounted for the first time. The default value is ext4.