Azure Disk CSI Driver Operator

Overview

OKD is capable of provisioning persistent volumes (PVs) using the Container Storage Interface (CSI) driver for Microsoft Azure Disk Storage.

Familiarity with persistent storage and configuring CSI volumes is recommended when working with a CSI Operator and driver.

To create CSI-provisioned PVs that mount to Azure Disk storage assets, OKD installs the Azure Disk CSI Driver Operator and the Azure Disk CSI driver by default in the openshift-cluster-csi-drivers namespace.

  • The Azure Disk CSI Driver Operator provides a storage class named managed-csi that you can use to create persistent volume claims (PVCs). The Azure Disk CSI Driver Operator supports dynamic volume provisioning by allowing storage volumes to be created on-demand, eliminating the need for cluster administrators to pre-provision storage.

  • The Azure Disk CSI driver enables you to create and mount Azure Disk PVs.

About CSI

Storage vendors have traditionally provided storage drivers as part of Kubernetes. With the implementation of the Container Storage Interface (CSI), third-party providers can instead deliver storage plugins using a standard interface without ever having to change the core Kubernetes code.

CSI Operators give OKD users storage options, such as volume snapshots, that are not possible with in-tree volume plugins.

OKD defaults to using an in-tree (non-CSI) plugin to provision Azure Disk storage.

In future OKD versions, volumes provisioned using existing in-tree plugins are planned for migration to their equivalent CSI driver. CSI automatic migration should be seamless. Migration does not change how you use all existing API objects, such as persistent volumes, persistent volume claims, and storage classes. For more information about migration, see CSI automatic migration.

After full migration, in-tree plugins will eventually be removed in later versions of OKD.

Machine sets that deploy machines with ultra disks using PVCs

You can create a machine set running on Azure that deploys machines with ultra disks. Ultra disks are high-performance storage that are intended for use with the most demanding data workloads.

Both the in-tree plugin and CSI driver support using PVCs to enable ultra disks. You can also deploy machines with ultra disks as data disks without creating a PVC.

Additional resources

Creating machines with ultra disks by using machine sets

You can deploy machines with ultra disks on Azure by editing your machine set YAML file.

Prerequisites

  • Have an existing Microsoft Azure cluster.

Procedure

  1. Copy an existing Azure MachineSet custom resource (CR) and edit it by running the following command:

    1. $ oc edit machineset <machine-set-name>

    where <machine-set-name> is the machine set that you want to provision machines with ultra disks.

  2. Add the following lines in the positions indicated:

    1. apiVersion: machine.openshift.io/v1beta1
    2. kind: MachineSet
    3. spec:
    4. template:
    5. spec:
    6. metadata:
    7. labels:
    8. disk: ultrassd (1)
    9. providerSpec:
    10. value:
    11. ultraSSDCapability: Enabled (2)
    1Specify a label to use to select a node that is created by this machine set. This procedure uses disk.ultrassd for this value.
    2These lines enable the use of ultra disks.
  3. Create a machine set using the updated configuration by running the following command:

    1. $ oc create -f <machine-set-name>.yaml
  4. Create a storage class that contains the following YAML definition:

    1. apiVersion: storage.k8s.io/v1
    2. kind: StorageClass
    3. metadata:
    4. name: ultra-disk-sc (1)
    5. parameters:
    6. cachingMode: None
    7. diskIopsReadWrite: "2000" (2)
    8. diskMbpsReadWrite: "320" (3)
    9. kind: managed
    10. skuname: UltraSSD_LRS
    11. provisioner: disk.csi.azure.com (4)
    12. reclaimPolicy: Delete
    13. volumeBindingMode: WaitForFirstConsumer (5)
    1Specify the name of the storage class. This procedure uses ultra-disk-sc for this value.
    2Specify the number of IOPS for the storage class.
    3Specify the throughput in MBps for the storage class.
    4For Azure Kubernetes Service (AKS) version 1.21 or later, use disk.csi.azure.com. For earlier versions of AKS, use kubernetes.io/azure-disk.
    5Optional: Specify this parameter to wait for the creation of the pod that will use the disk.
  5. Create a persistent volume claim (PVC) to reference the ultra-disk-sc storage class that contains the following YAML definition:

    1. apiVersion: v1
    2. kind: PersistentVolumeClaim
    3. metadata:
    4. name: ultra-disk (1)
    5. spec:
    6. accessModes:
    7. - ReadWriteOnce
    8. storageClassName: ultra-disk-sc (2)
    9. resources:
    10. requests:
    11. storage: 4Gi (3)
    1Specify the name of the PVC. This procedure uses ultra-disk for this value.
    2This PVC references the ultra-disk-sc storage class.
    3Specify the size for the storage class. The minimum value is 4Gi.
  6. Create a pod that contains the following YAML definition:

    1. apiVersion: v1
    2. kind: Pod
    3. metadata:
    4. name: nginx-ultra
    5. spec:
    6. nodeSelector:
    7. disk: ultrassd (1)
    8. containers:
    9. - name: nginx-ultra
    10. image: alpine:latest
    11. command:
    12. - "sleep"
    13. - "infinity"
    14. volumeMounts:
    15. - mountPath: "/mnt/azure"
    16. name: volume
    17. volumes:
    18. - name: volume
    19. persistentVolumeClaim:
    20. claimName: ultra-disk (2)
    1Specify the label of the machine set that enables the use of ultra disks. This procedure uses disk.ultrassd for this value.
    2This pod references the ultra-disk PVC.

Verification

  1. Validate that the machines are created by running the following command:

    1. $ oc get machines

    The machines should be in the Running state.

  2. For a machine that is running and has a node attached, validate the partition by running the following command:

    1. $ oc debug node/<node-name> -- chroot /host lsblk

    In this command, oc debug node/<node-name> starts a debugging shell on the node <node-name> and passes a command with --. The passed command chroot /host provides access to the underlying host OS binaries, and lsblk shows the block devices that are attached to the host OS machine.

Next steps

  • To use an ultra disk from within a pod, create a workload that uses the mount point. Create a YAML file similar to the following example:

    1. apiVersion: v1
    2. kind: Pod
    3. metadata:
    4. name: ssd-benchmark1
    5. spec:
    6. containers:
    7. - name: ssd-benchmark1
    8. image: nginx
    9. ports:
    10. - containerPort: 80
    11. name: "http-server"
    12. volumeMounts:
    13. - name: lun0p1
    14. mountPath: "/tmp"
    15. volumes:
    16. - name: lun0p1
    17. hostPath:
    18. path: /var/lib/lun0p1
    19. type: DirectoryOrCreate
    20. nodeSelector:
    21. disktype: ultrassd

Troubleshooting resources for machine sets that enable ultra disks

Use the information in this section to understand and recover from issues you might encounter.

Unable to mount a persistent volume claim backed by an ultra disk

If there is an issue mounting a persistent volume claim backed by an ultra disk, the pod becomes stuck in the ContainerCreating state and an alert is triggered.

For example, if the additionalCapabilities.ultraSSDEnabled parameter is not set on the machine that backs the node that hosts the pod, the following error message appears:

  1. StorageAccountType UltraSSD_LRS can be used only when additionalCapabilities.ultraSSDEnabled is set.
  • To resolve this issue, describe the pod by running the following command:

    1. $ oc -n <stuck_pod_namespace> describe pod <stuck_pod_name>

Additional resources