Konvoy handles the creation of a default StorageClass. This StorageClass is required to install Kommander.

  1. Execute the following command to verify one is configured:

    kubectl get sc
    CODE

    The output should look similar to this. Note the (default) after the name:

    NAME               PROVISIONER       RECLAIMPOLICY   VOLUMEBINDINGMODE      ALLOWVOLUMEEXPANSION   AGE
    ebs-sc (default)   ebs.csi.aws.com   Delete          WaitForFirstConsumer   false                  41s
    CODE

  2. If the desired StorageClass is not set as default, add the following annotation to the StorageClass manifest:

    annotations:
      storageclass.kubernetes.io/is-default-class: "true"
    CODE

More information on setting a StorageClass as default can be found at Changing the default storage class in the Kubernetes documentation.