diff --git a/CHANGELOG.md b/CHANGELOG.md index 78397a60..333d5c95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +v2.8.0 / 2021-04-14 +======================== +* fix provisioner crashing when old PVs are not cleaned up. ([#39](https://github.com/openebs/dynamic-localpv-provisioner/pull/39),[@niladrih](https://github.com/niladrih)) + + +v2.8.0-RC1 / 2021-04-07 +======================== +* fix provisioner crashing when old PVs are not cleaned up. ([#39](https://github.com/openebs/dynamic-localpv-provisioner/pull/39),[@niladrih](https://github.com/niladrih)) + + + v2.7.0 / 2021-03-11 ======================== * add support to push multiarch images to multiple registries and remove travis from repository ([#32](https://github.com/openebs/dynamic-localpv-provisioner/pull/32),[@akhilerm](https://github.com/akhilerm)) diff --git a/changelogs/released/v2.8.0/39-niladrih b/changelogs/released/v2.8.0/39-niladrih new file mode 100644 index 00000000..7e7ffb58 --- /dev/null +++ b/changelogs/released/v2.8.0/39-niladrih @@ -0,0 +1 @@ +fix provisioner crashing when old PVs are not cleaned up. \ No newline at end of file diff --git a/deploy/helm/charts/Chart.yaml b/deploy/helm/charts/Chart.yaml index c6e5ca94..4107fae8 100644 --- a/deploy/helm/charts/Chart.yaml +++ b/deploy/helm/charts/Chart.yaml @@ -4,10 +4,10 @@ description: Helm chart for OpenEBS Dynamic Local PV. For instructions to instal type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 2.7.0 +version: 2.8.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 2.7.0 +appVersion: 2.8.0 icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png home: http://www.openebs.io/ keywords: @@ -19,7 +19,7 @@ sources: dependencies: - name: openebs-ndm - version: "1.3.0" + version: "1.4.0" repository: "https://openebs.github.io/node-disk-manager" condition: openebsNDM.enabled diff --git a/deploy/helm/charts/README.md b/deploy/helm/charts/README.md index de301187..05eab432 100644 --- a/deploy/helm/charts/README.md +++ b/deploy/helm/charts/README.md @@ -46,7 +46,7 @@ By default this chart installs additional, dependent charts: | Repository | Name | Version | |------------|------|---------| -| https://openebs.github.io/node-disk-manager | openebs-ndm | 1.3.0 | +| https://openebs.github.io/node-disk-manager | openebs-ndm | 1.4.0 | To disable the dependency during installation, set `openebsNDM.enabled` to `false`. @@ -78,7 +78,7 @@ The following table lists the configurable parameters of the OpenEBS LocalPV Pro | Parameter | Description | Default | | ------------------------------------------- | --------------------------------------------- | ----------------------------------------- | -| `release.version` | LocalPV Provisioner release version | `2.7.0` | +| `release.version` | LocalPV Provisioner release version | `2.8.0` | | `analytics.enabled` | Enable sending stats to Google Analytics | `true` | | `analytics.pingInterval` | Duration(hours) between sending ping stat | `24h` | | `imagePullSecrets` | Provides image pull secrect | `""` | @@ -86,7 +86,7 @@ The following table lists the configurable parameters of the OpenEBS LocalPV Pro | `localpv.image.registry` | Registry for LocalPV Provisioner image | `""` | | `localpv.image.repository` | Image repository for LocalPV Provisioner | `openebs/localpv-provisioner` | | `localpv.image.pullPolicy` | Image pull policy for LocalPV Provisioner | `IfNotPresent` | -| `localpv.image.tag` | Image tag for LocalPV Provisioner | `2.7.0` | +| `localpv.image.tag` | Image tag for LocalPV Provisioner | `2.8.0` | | `localpv.updateStrategy.type` | Update strategy for LocalPV Provisioner | `RollingUpdate` | | `localpv.annotations` | Annotations for LocalPV Provisioner metadata | `""` | | `localpv.podAnnotations` | Annotations for LocalPV Provisioner pods metadata | `""` | @@ -105,7 +105,7 @@ The following table lists the configurable parameters of the OpenEBS LocalPV Pro | `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` | | `rbac.create` | Enable RBAC Resources | `true` | | `rbac.pspEnabled` | Create pod security policy resources | `false` | | `openebsNDM.enabled` | Install openebs NDM dependency | `true` | diff --git a/deploy/helm/charts/values.yaml b/deploy/helm/charts/values.yaml index d6cda0e5..d95d8054 100644 --- a/deploy/helm/charts/values.yaml +++ b/deploy/helm/charts/values.yaml @@ -3,7 +3,7 @@ # Declare variables to be passed into your templates. release: - version: "2.7.0" + version: "2.8.0" rbac: # rbac.create: `true` if rbac resources should be created @@ -23,7 +23,7 @@ localpv: # For example : quay.io/ is a correct value here and quay.io is incorrect registry: repository: openebs/provisioner-localpv - tag: 2.7.0 + tag: 2.8.0 pullPolicy: IfNotPresent updateStrategy: type: RollingUpdate @@ -109,7 +109,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 analytics: enabled: true