Test PowerScale CSI Driver

This section provides multiple methods to test driver functionality in your environment.

Note: To run the test for CSI Driver for Dell PowerScale, install Helm 3.

Test deploying a simple pod with PowerScale storage

Test the deployment workflow of a simple pod on PowerScale storage.

  1. Creating a storage class:

    Create a file storageclass.yaml using sample yaml file located at samples/storageclass/isilon.yaml. Update/uncomment the attributes in this sample file as per the requirements.

    Execute the following command to create a storage class:

    kubectl create -f $PWD/storageclass.yaml
    

    Result: After executing the above command storage class will be created in the default namespace, and the user can see the storage class by executing

    kubectl get sc
    
  2. Creating a volume:

    Create a file pvc.yaml using sample yaml files located at samples/persistentvolumeclaim/pvc.yaml

    Execute the following command to create volume:

    kubectl create -f $PWD/pvc.yaml
    

    Result: After executing the above command PVC will be created in the default namespace, and the user can see the pvc by executing the command kubectl get pvc.

Note: The status of the volume can be either Bound or Pending depending on the VolumeBindingMode specified on the storage class.

  1. Attach the volume to Host

    To attach a volume to a host, create a new application(Pod) and use the PVC created above in the Pod. This scenario is explained using the Nginx application. Create nginx.yaml using sample yaml files located at samples/pod/.

    Execute the following command to mount the volume to the Kubernetes node:

    kubectl create -f $PWD/nginx.yaml
    

    Result: After executing the above command, a new nginx pod will be successfully created and started in the default namespace. Note: Verify PowerScale system for the host to be part of clients/rootclients field of export created for volume and used by nginx application.

  2. Create Snapshot

    VolumeSnapshotClass is needed for creating the volume snapshots. Starting from v1.6, CSI Driver for PowerScale will not create any default Volume Snapshot class.

    So the user has to create a volume snapshot class. The required sample files are present under samples/volumesnapshotclass/. Choose the file based on Kubernetes version.

    Execute either one of the following commands to create a volume snapshot class.

    
    kubectl create -f samples/volumesnapshotclass/isilon-volumesnapshotclass-v1.yaml` OR `kubectl create -f samples/volumesnapshotclass/isilon-volumesnapshotclass-v1beta1.yaml
    

    The above-said command will create a volume snapshotclass with the name isilon-snapclass.

    The following procedure will create a snapshot of the volume in the container using VolumeSnapshot objects defined in snapshot-of-test-pvc.yaml. The sample file for snapshot creation is located at samples/volumesnapshot/.

    Execute the following command to create snapshot:

    
    kubectl create -f samples/volumesnapshot/snapshot-of-test-pvc.yaml
    

    The spec.source section contains the volume that will be snapped in the default namespace. For example, if the volume to be snapped is test-pvc, then the created snapshot is named snapshot-of-test-pvc. Verify the PowerScale system for the newly created snapshot.

Note:

  • User can see the snapshots using kubectl get volumesnapshot
  • Notice that this VolumeSnapshot class has a reference to a snapshotClassName:isilon-snapclass.
  • User has to make sure that the IsiPath in the parameters section of the volume snapshot class is matching with a corresponding storage class.
  1. Create Volume from Snapshot

    The following procedure will create a new volume from a given snapshot which is specified in the spec dataSource field.

    The sample file for volume creation from the snapshot is located at samples/persistentvolumeclaim/pvc-from-snapshot.yaml .

    Execute the following command to create a snapshot:

    
    kubectl create -f samples/persistentvolumeclaim/pvc-from-snapshot.yaml
    

    Verify the PowerScale system for newly created volume from the snapshot.

  2. Delete Snapshot

    Execute the following commands to delete the snapshot:

    kubectl get volumesnapshot
    kubectl delete volumesnapshot snapshot-of-test-pvc
    
  3. Create a new volume from existing volume(volume clone)

    The following procedure will create a new volume from another existing volume which is specified in the spec dataSource field.

    The sample file for volume creation from volume is located at samples/persistentvolumeclaim/pvc-from-pvc.yaml

    Execute the following command to create a pvc from another pvc:

    
    kubectl create -f samples/persistentvolumeclaim/pvc-from-pvc.yaml
    

    Verify the PowerScale system for newly created volume from volume.

  4. To Unattach the volume from Host

    Delete the nginx application to Unattach the volume from the host:

    kubectl delete -f nginx.yaml
    
  5. To delete the volume

    kubectl get pvc
    kubectl delete pvc testvolclaim1
    kubectl get pvc