:orphan: .. _openebs_install: Install openebs operator ------------------------ .. code-block:: kubectl apply -f https://openebs.github.io/charts/lvm-operator.yaml Copy the below contents to a file, sc.yaml and change the volgroup to the name defined in your worker nodes and list the nodes one after the other for lvm nodes .. code-block:: apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: name: openebs-lvmpv allowVolumeExpansion: true parameters: storage: "lvm" volgroup: "" provisioner: local.csi.openebs.io allowedTopologies: - matchLabelExpressions: - key: kubernetes.io/hostname values: - << Specify the lvm nodes >> Apply the storage class .. code-block:: kubectl apply -f sc.yaml