Skip to content

Commit 8d7e515

Browse files
authored
[stable/ndm]: update charts to 1.8.0 (#661)
- update daemonset template - update Chart version - update values.yaml - update README Signed-off-by: Akhil Mohan <akhil.mohan@datacore.com>
1 parent 0faea6b commit 8d7e515

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

deploy/helm/charts/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: openebs-ndm
33
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/.
4-
version: 1.7.2
5-
appVersion: 1.7.0
4+
version: 1.8.0
5+
appVersion: 1.8.0
66
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
77
home: http://www.openebs.io/
88
keywords:

deploy/helm/charts/README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This chart bootstraps OpenEBS NDM deployment on a [Kubernetes](http://kubernetes
55

66
## Installation
77

8-
You can run OpenEBS NDM on any Kubernetes 1.13+ cluster in a matter of seconds.
8+
You can run OpenEBS NDM on any Kubernetes 1.17+ cluster in a matter of seconds.
99

1010
Please visit the [link](https://openebs.github.io/node-disk-manager/) for install instructions via helm3.
1111

@@ -20,7 +20,7 @@ The following table lists the configurable parameters of the OpenEBS NDM chart a
2020
| `ndm.image.registry` | Registry for Node Disk Manager image | `""` |
2121
| `ndm.image.repository` | Image repository for Node Disk Manager | `openebs/node-disk-manager` |
2222
| `ndm.image.pullPolicy` | Image pull policy for Node Disk Manager | `IfNotPresent` |
23-
| `ndm.image.tag` | Image tag for Node Disk Manager | `1.5.0` |
23+
| `ndm.image.tag` | Image tag for Node Disk Manager | `1.8.0` |
2424
| `ndm.sparse.path` | Directory where Sparse files are created | `/var/openebs/sparse` |
2525
| `ndm.sparse.size` | Size of the sparse file in bytes | `10737418240` |
2626
| `ndm.sparse.count` | Number of sparse files to be created | `0` |
@@ -50,28 +50,29 @@ The following table lists the configurable parameters of the OpenEBS NDM chart a
5050
| `ndmOperator.image.registry` | Registry for NDM operator image | `""` |
5151
| `ndmOperator.image.repository` | Image repository for NDM operator | `openebs/node-disk-operator` |
5252
| `ndmOperator.image.pullPolicy` | Image pull policy for NDM operator | `IfNotPresent` |
53-
| `ndmOperator.image.tag` | Image tag for NDM operator | `1.5.0` |
53+
| `ndmOperator.image.tag` | Image tag for NDM operator | `1.8.0` |
5454
| `ndmOperator.annotations` | Annotations for NDM operator metadata | `""` |
5555
| `ndmOperator.podAnnotations` | Annotations for NDM operator's pods metadata | `""` |
5656
| `ndmOperator.resources` | Resource and request and limit for containers | `""` |
5757
| `ndmOperator.podLabels` | Appends labels to the pods | `""` |
5858
| `ndmOperator.nodeSelector` | Nodeselector for operator pods | `""` |
5959
| `ndmOperator.tolerations` | NDM operator's pod toleration values | `""` |
60-
| `ndmOperator.securityContext` | Seurity context for container | `""` |
60+
| `ndmOperator.securityContext` | Security context for container | `""` |
6161
| `ndmExporter.enabled` | Enable NDM Exporters | `false` |
6262
| `ndmExporter.image.registry` | Registry for NDM Exporters image | `""` |
6363
| `ndmExporter.repository` | Image repository for NDM Exporters | `openebs/node-disk-exporter` |
6464
| `ndmExporter.pullPolicy` | Image pull policy for NDM Exporters | `IfNotPresent` |
65-
| `ndmExporter.tag` | Image tag for NDM Exporters | `1.6.0` |
65+
| `ndmExporter.tag` | Image tag for NDM Exporters | `1.8.0` |
6666
| `ndmExporter.nodeExporter.metricsPort` | The TCP port number used for exposing NDM node exporter metrics | `9101` |
6767
| `ndmExporter.clusterExporter.metricsPort` | The TCP port number used for exposing NDM cluster exporter metrics | `9100` |
6868
| `featureGates.APIService.enabled` | Enable the gRPC API service of NDM | `false` |
6969
| `featureGates.UseOSDisk.enabled` | Enable feature-gate to use free space on OS disk | `false` |
70-
| `featureGates.ChangeDetection.enabled` | Enable feature-gate to detect mountpoint/filesystem/size changes | `true` |
70+
| `featureGates.ChangeDetection.enabled` | Enable feature-gate to detect mountpoint/filesystem/size changes | `false` |
71+
| `featureGates.PartitionTableUUID.enabled` | Enable feature-gate to use partition table UUID instead of creating partition | `true` |
7172
| `helperPod.image.registry` | Registry for helper image | `""` |
7273
| `helperPod.image.repository` | Image for helper pod | `openebs/linux-utils` |
7374
| `helperPod.image.pullPolicy` | Pull policy for helper pod | `IfNotPresent` |
74-
| `helperPod.image.tag` | Image tag for helper image | `2.10.0` |
75+
| `helperPod.image.tag` | Image tag for helper image | `3.1.0` |
7576
| `varDirectoryPath.baseDir` | Directory to store debug info and so forth | `/var/openebs` |
7677
| `serviceAccount.create` | Create a service account or not | `true` |
7778
| `serviceAccount.name` | Name for the service account | `true` |

deploy/helm/charts/templates/daemonset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ spec:
5050
{{- if .Values.featureGates.ChangeDetection.enabled }}
5151
- --feature-gates={{ .Values.featureGates.ChangeDetection.featureGateFlag }}
5252
{{- end}}
53+
{{- if .Values.featureGates.PartitionTableUUID.enabled }}
54+
- --feature-gates={{ .Values.featureGates.PartitionTableUUID.featureGateFlag }}
55+
{{- end}}
5356
{{- end}}
5457
imagePullPolicy: {{ .Values.ndm.image.pullPolicy }}
5558
resources:

deploy/helm/charts/values.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
44
release:
5-
version: "1.7.0"
5+
version: "1.8.0"
66

77
imagePullSecrets:
88
# - name: "image-pull-secret"
@@ -17,7 +17,7 @@ ndm:
1717
repository: openebs/node-disk-manager
1818
pullPolicy: IfNotPresent
1919
# Overrides the image tag whose default is the chart appVersion.
20-
tag: 1.7.0
20+
tag: 1.8.0
2121
sparse:
2222
path: "/var/openebs/sparse"
2323
size: "10737418240"
@@ -66,7 +66,7 @@ ndmOperator:
6666
repository: openebs/node-disk-operator
6767
pullPolicy: IfNotPresent
6868
# Overrides the image tag whose default is the chart appVersion.
69-
tag: 1.7.0
69+
tag: 1.8.0
7070
podLabels:
7171
name: openebs-ndm-operator
7272
annotations: {}
@@ -91,7 +91,7 @@ ndmExporter:
9191
repository: openebs/node-disk-exporter
9292
pullPolicy: IfNotPresent
9393
# Overrides the image tag whose default is the chart appVersion.
94-
tag: 1.7.0
94+
tag: 1.8.0
9595
nodeExporter:
9696
name: node-exporter
9797
podLabels:
@@ -115,7 +115,7 @@ helperPod:
115115
repository: openebs/linux-utils
116116
pullPolicy: IfNotPresent
117117
# Overrides the image tag whose default is the chart appVersion.
118-
tag: 3.0.0
118+
tag: 3.1.0
119119

120120
crd:
121121
enableInstall: false
@@ -135,6 +135,9 @@ featureGates:
135135
ChangeDetection:
136136
enabled: false
137137
featureGateFlag: "ChangeDetection"
138+
PartitionTableUUID:
139+
enabled: false
140+
featureGateFlag: "PartitionTableUUID"
138141

139142
# Directory used by the OpenEBS to store debug information and so forth
140143
# that are generated in the course of running OpenEBS containers.

0 commit comments

Comments
 (0)