Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 774 Bytes

File metadata and controls

25 lines (20 loc) · 774 Bytes

Configuring StorageClass

This example shows how to configure Kubernetes storageclass to provision PowerVS volumes with various configuration parameters. IBM PowerVS Block CSI Driver is compatiable with in-tree PowerVS plugin on StorageClass parameters.

Usage

  1. Edit the StorageClass spec in example manifest and update storageclass parameters to desired value. In this example, a tier1 PowerVS volume will be created and formatted to xfs filesystem.

  2. Deploy the example:

kubectl apply -f specs/
  1. Verify the volume is created:
kubectl describe pv
  1. Validate the pod successfully wrote data to the volume:
kubectl exec -it app cat /data/out.txt
  1. Cleanup resources:
kubectl delete -f specs/