diff --git a/deploy/helm/charts/Chart.yaml b/deploy/helm/charts/Chart.yaml index 50a4c77..e169d9d 100644 --- a/deploy/helm/charts/Chart.yaml +++ b/deploy/helm/charts/Chart.yaml @@ -4,7 +4,7 @@ description: Jiva-Operator helm chart for Kubernetes 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.7.1 # 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 diff --git a/deploy/jiva-csi.yaml b/deploy/jiva-csi.yaml index 82f7859..95a4d6d 100644 --- a/deploy/jiva-csi.yaml +++ b/deploy/jiva-csi.yaml @@ -8,7 +8,7 @@ # 2) Check which files are already present in the openebs-csi-plugin container present in csi node pod. # 3) Mount the required missing files inside the node-plugin container. -apiVersion: storage.k8s.io/v1beta1 +apiVersion: storage.k8s.io/v1 kind: CSIDriver metadata: name: jiva.csi.openebs.io diff --git a/version/util.go b/version/util.go index be7b8cc..8453e02 100644 --- a/version/util.go +++ b/version/util.go @@ -20,7 +20,7 @@ import ( var ( validCurrentVersions = map[string]bool{ - "2.6.0": true, "2.7.0": true, + "2.6.0": true, "2.7.0": true, "2.8.0": true, } validDesiredVersion = strings.Split(Version, "-")[0] )