diff --git a/k8s/charts/openebs/Chart.yaml b/k8s/charts/openebs/Chart.yaml index c9354435ad..5fb6de3c36 100644 --- a/k8s/charts/openebs/Chart.yaml +++ b/k8s/charts/openebs/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -version: 0.9.0 +version: 0.9.1 name: openebs appVersion: 0.9.0 description: Containerized Storage for Containers diff --git a/k8s/charts/openebs/README.md b/k8s/charts/openebs/README.md index 485945bb16..c5bf18e8cd 100644 --- a/k8s/charts/openebs/README.md +++ b/k8s/charts/openebs/README.md @@ -98,6 +98,7 @@ The following table lists the configurable parameters of the OpenEBS chart and t | `ndm.sparse.size` | Size of the sparse file in bytes | `10737418240` | | `ndm.sparse.count` | Number of sparse files to be created | `1` | | `ndm.filters.excludeVendors` | Exclude devices with specified vendor | `CLOUDBYT,OpenEBS` | +| `ndm.filters.includePaths` | Include devices with specified path patterns | `""` | | `ndm.filters.excludePaths` | Exclude devices with specified path patterns | `loop,fd0,sr0,/dev/ram,/dev/dm-,/dev/md` | | `jiva.image` | Image for Jiva | `quay.io/openebs/jiva` | | `jiva.imageTag` | Image Tag for Jiva | `0.9.0` | diff --git a/k8s/charts/openebs/templates/cm-node-disk-manager.yaml b/k8s/charts/openebs/templates/cm-node-disk-manager.yaml index e8649bc692..32c4c2d546 100644 --- a/k8s/charts/openebs/templates/cm-node-disk-manager.yaml +++ b/k8s/charts/openebs/templates/cm-node-disk-manager.yaml @@ -38,6 +38,6 @@ data: - key: path-filter name: path filter state: true - include: "" + include: "{{ .Values.ndm.filters.includePaths }}" exclude: "{{ .Values.ndm.filters.excludePaths }}" --- diff --git a/k8s/charts/openebs/values.yaml b/k8s/charts/openebs/values.yaml index 4627635627..12bc3cd4db 100644 --- a/k8s/charts/openebs/values.yaml +++ b/k8s/charts/openebs/values.yaml @@ -81,6 +81,7 @@ ndm: count: "1" filters: excludeVendors: "CLOUDBYT,OpenEBS" + includePaths: "" excludePaths: "loop,fd0,sr0,/dev/ram,/dev/dm-,/dev/md" nodeSelector: {} healthCheck: