Skip to content

Commit

Permalink
chore(release): update version to 1.7.0 (#644)
Browse files Browse the repository at this point in the history
- Update to 1.7.0 version
- Enable ChangeDetection by default
- fix(helm): update the branch name to develop

Signed-off-by: kmova <[email protected]>
  • Loading branch information
kmova authored Sep 17, 2021
1 parent 6745dcf commit 422e3d5
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 17 deletions.
1 change: 1 addition & 0 deletions ct.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# See https://github.com/helm/chart-testing#configuration
remote: origin
target-branch: develop
chart-dirs:
- deploy/helm
helm-extra-args: --timeout=500s
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.6.1
appVersion: 1.6.1
version: 1.7.0
appVersion: 1.7.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
2 changes: 1 addition & 1 deletion deploy/helm/charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ The following table lists the configurable parameters of the OpenEBS NDM chart a
| `ndmExporter.clusterExporter.metricsPort` | The TCP port number used for exposing NDM cluster exporter metrics | `9100` |
| `featureGates.APIService.enabled` | Enable the gRPC API service of NDM | `false` |
| `featureGates.UseOSDisk.enabled` | Enable feature-gate to use free space on OS disk | `false` |
| `featureGates.MountChangeDetection.enabled` | Enable feature-gate to detect mountpoint/filesystem changes | `false` |
| `featureGates.ChangeDetection.enabled` | Enable feature-gate to detect mountpoint/filesystem/size changes | `true` |
| `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` |
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/charts/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ spec:
{{- if .Values.featureGates.UseOSDisk.enabled }}
- --feature-gates={{ .Values.featureGates.UseOSDisk.featureGateFlag }}
{{- end}}
{{- if .Values.featureGates.MountChangeDetection.enabled }}
- --feature-gates={{ .Values.featureGates.MountChangeDetection.featureGateFlag }}
{{- if .Values.featureGates.ChangeDetection.enabled }}
- --feature-gates={{ .Values.featureGates.ChangeDetection.featureGateFlag }}
{{- end}}
{{- end}}
imagePullPolicy: {{ .Values.ndm.image.pullPolicy }}
Expand Down
16 changes: 8 additions & 8 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.6.0"
version: "1.7.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.6.1
tag: 1.7.0
sparse:
path: "/var/openebs/sparse"
size: "10737418240"
Expand Down Expand Up @@ -63,7 +63,7 @@ ndmOperator:
repository: openebs/node-disk-operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 1.6.1
tag: 1.7.0
podLabels:
name: openebs-ndm-operator
annotations: {}
Expand All @@ -88,7 +88,7 @@ ndmExporter:
repository: openebs/node-disk-exporter
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 1.6.1
tag: 1.7.0
nodeExporter:
name: node-exporter
podLabels:
Expand All @@ -112,7 +112,7 @@ helperPod:
repository: openebs/linux-utils
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 2.11.0
tag: 3.0.0

crd:
enableInstall: false
Expand All @@ -129,9 +129,9 @@ featureGates:
UseOSDisk:
enabled: false
featureGateFlag: "UseOSDisk"
MountChangeDetection:
enabled: false
featureGateFlag: "MountChangeDetection"
ChangeDetection:
enabled: true
featureGateFlag: "ChangeDetection"

# Directory used by the OpenEBS to store debug information and so forth
# that are generated in the course of running OpenEBS containers.
Expand Down
3 changes: 1 addition & 2 deletions deploy/ndm-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,7 @@ spec:
- --feature-gates="GPTBasedUUID"
- --feature-gates="APIService"
# Detect changes to device size, filesystem and mount-points without restart.
# Uncomment the line below to enable the feature.
# - --feature-gates="ChangeDetection"
- --feature-gates="ChangeDetection"
# Default address is 0.0.0.0:9115, do not use quotes around the address
# - --api-service-address=0.0.0.0:9115
- --feature-gates="UseOSDisk"
Expand Down
3 changes: 1 addition & 2 deletions deploy/yamls/node-disk-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ spec:
- --feature-gates="GPTBasedUUID"
- --feature-gates="APIService"
# Detect changes to device size, filesystem and mount-points without restart.
# Uncomment the line below to enable the feature.
# - --feature-gates="ChangeDetection"
- --feature-gates="ChangeDetection"
# Default address is 0.0.0.0:9115, do not use quotes around the address
# - --api-service-address=0.0.0.0:9115
- --feature-gates="UseOSDisk"
Expand Down

0 comments on commit 422e3d5

Please sign in to comment.