Skip to content

Commit

Permalink
[stable/ndm]: update charts to 1.4.0
Browse files Browse the repository at this point in the history
- udpate README
- update chart version
- update values
- add os disk exclude path as a configuration

Signed-off-by: Akhil Mohan <[email protected]>
  • Loading branch information
akhilerm authored and kmova committed Apr 16, 2021
1 parent 8b7377d commit 9cb80fb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions deploy/helm/charts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: openebs-ndm
description: Helm chart for OpenEBS Node Disk Manager - a Kubernetes native storage device management solution. For instructions on how to install, refer to https://openebs.github.io/node-disk-manager/.
version: 1.3.1
appVersion: 1.3.0
version: 1.4.0
appVersion: 1.4.0
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
home: http://www.openebs.io/
keywords:
Expand Down
8 changes: 4 additions & 4 deletions deploy/helm/charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The following table lists the configurable parameters of the OpenEBS NDM chart a
| `ndm.image.registry` | Registry for Node Disk Manager image | `""` |
| `ndm.image.repository` | Image repository for Node Disk Manager | `openebs/node-disk-manager` |
| `ndm.image.pullPolicy` | Image pull policy for Node Disk Manager | `IfNotPresent` |
| `ndm.image.tag` | Image tag for Node Disk Manager | `1.3.0` |
| `ndm.image.tag` | Image tag for Node Disk Manager | `1.4.0` |
| `ndm.sparse.path` | Directory where Sparse files are created | `/var/openebs/sparse` |
| `ndm.sparse.size` | Size of the sparse file in bytes | `10737418240` |
| `ndm.sparse.count` | Number of sparse files to be created | `0` |
Expand All @@ -33,7 +33,7 @@ The following table lists the configurable parameters of the OpenEBS NDM chart a
| `ndm.tolerations` | NDM daemonset's pod toleration values | `""` |
| `ndm.securityContext` | Seurity context for container | `""` |
| `ndm.filters.enableOsDiskExcludeFilter` | Enable filters of OS disk exclude | `true` |
| `ndm.filters.enableVendorFilter` | Enable filters of venders | `true` |
| `ndm.filters.osDiskExcludePaths` | Paths/Mountpoints to be excluded by OS Disk Filter| `/,/etc/hosts,/boot` || `ndm.filters.enableVendorFilter` | Enable filters of venders | `true` |
| `ndm.filters.excludeVendors` | Exclude devices with specified vendor | `CLOUDBYT,OpenEBS` |
| `ndm.filters.enablePathFilter` | Enable filters of paths | `true` |
| `ndm.filters.includePaths` | Include devices with specified path patterns | `""` |
Expand All @@ -49,7 +49,7 @@ The following table lists the configurable parameters of the OpenEBS NDM chart a
| `ndmOperator.image.registry` | Registry for NDM operator image | `""` |
| `ndmOperator.image.repository` | Image repository for NDM operator | `openebs/node-disk-operator` |
| `ndmOperator.image.pullPolicy` | Image pull policy for NDM operator | `IfNotPresent` |
| `ndmOperator.image.tag` | Image tag for NDM operator | `1.3.0` |
| `ndmOperator.image.tag` | Image tag for NDM operator | `1.4.0` |
| `ndmOperator.annotations` | Annotations for NDM operator metadata | `""` |
| `ndmOperator.podAnnotations` | Annotations for NDM operator's pods metadata | `""` |
| `ndmOperator.resources` | Resource and request and limit for containers | `""` |
Expand All @@ -65,7 +65,7 @@ The following table lists the configurable parameters of the OpenEBS NDM chart a
| `helperPod.image.registry` | Registry for helper image | `""` |
| `helperPod.image.repository` | Image for helper pod | `openebs/linux-utils` |
| `helperPod.image.pullPolicy` | Pull policy for helper pod | `IfNotPresent` |
| `helperPod.image.tag` | Image tag for helper image | `2.7.0` |
| `helperPod.image.tag` | Image tag for helper image | `2.8.0` |
| `varDirectoryPath.baseDir` | Directory to store debug info and so forth | `/var/openebs` |
| `serviceAccount.create` | Create a service account or not | `true` |
| `serviceAccount.name` | Name for the service account | `true` |
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/charts/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ data:
- key: os-disk-exclude-filter
name: os disk exclude filter
state: {{ .Values.ndm.filters.enableOsDiskExcludeFilter }}
exclude: "/,/etc/hosts,/boot"
exclude: "{{ .Values.ndm.filters.osDiskExcludePaths }}"
- key: vendor-filter
name: vendor filter
state: {{ .Values.ndm.filters.enableVendorFilter }}
Expand Down
9 changes: 5 additions & 4 deletions deploy/helm/charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
release:
version: "1.3.0"
version: "1.4.0"

imagePullSecrets:
# - name: "image-pull-secret"
Expand All @@ -17,7 +17,7 @@ ndm:
repository: openebs/node-disk-manager
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 1.3.0
tag: 1.4.0
sparse:
path: "/var/openebs/sparse"
size: "10737418240"
Expand All @@ -41,6 +41,7 @@ ndm:
securityContext: {}
filters:
enableOsDiskExcludeFilter: true
osDiskExcludePaths: "/,/etc/hosts,/boot"
enableVendorFilter: true
excludeVendors: "CLOUDBYT,OpenEBS"
enablePathFilter: true
Expand All @@ -62,7 +63,7 @@ ndmOperator:
repository: openebs/node-disk-operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 1.3.0
tag: 1.4.0
podLabels:
name: openebs-ndm-operator
annotations: {}
Expand All @@ -87,7 +88,7 @@ helperPod:
repository: openebs/linux-utils
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 2.7.0
tag: 2.8.0

crd:
enableInstall: false
Expand Down

0 comments on commit 9cb80fb

Please sign in to comment.