From 4151518aec9165446a6d30ccc0aef5d185cbd032 Mon Sep 17 00:00:00 2001 From: Boya Murthy Date: Thu, 12 Jan 2023 14:52:44 +0530 Subject: [PATCH] Correcting k8 support --- helm/csi-powermax/Chart.yaml | 6 +++--- helm/csi-powermax/templates/_helpers.tpl | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/helm/csi-powermax/Chart.yaml b/helm/csi-powermax/Chart.yaml index 44ea01a1..19ec7858 100644 --- a/helm/csi-powermax/Chart.yaml +++ b/helm/csi-powermax/Chart.yaml @@ -2,10 +2,10 @@ apiVersion: v1 name: csi-powermax version: 2.5.0 appVersion: "2.5.0" -kubeVersion: ">= 1.24.0 < 1.27.0" -#If you are using a complex K8s version like "v1.24.3-mirantis-1", use this kubeVersion check instead +kubeVersion: ">= 1.23.0 < 1.27.0" +#If you are using a complex K8s version like "v1.23.3-mirantis-1", use this kubeVersion check instead #WARNING: this version of the check will allow the use of alpha and beta versions, which is NOT SUPPORTED -#kubeVersion: ">= 1.24.0-0 < 1.27.0-0" +#kubeVersion: ">= 1.23.0-0 < 1.27.0-0" description: | PowerMax CSI (Container Storage Interface) driver Kubernetes integration. This chart includes everything required to provision via CSI as diff --git a/helm/csi-powermax/templates/_helpers.tpl b/helm/csi-powermax/templates/_helpers.tpl index 426e7330..0d7b5040 100644 --- a/helm/csi-powermax/templates/_helpers.tpl +++ b/helm/csi-powermax/templates/_helpers.tpl @@ -3,7 +3,7 @@ Return the appropriate sidecar images based on k8s version */}} {{- define "csi-powermax.attacherImage" -}} {{- if eq .Capabilities.KubeVersion.Major "1" }} - {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "24") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} + {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} {{- print "k8s.gcr.io/sig-storage/csi-attacher:v4.0.0" -}} {{- end -}} {{- end -}} @@ -11,7 +11,7 @@ Return the appropriate sidecar images based on k8s version {{- define "csi-powermax.provisionerImage" -}} {{- if eq .Capabilities.KubeVersion.Major "1" }} - {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "24") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} + {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} {{- print "k8s.gcr.io/sig-storage/csi-provisioner:v3.3.0" -}} {{- end -}} {{- end -}} @@ -19,7 +19,7 @@ Return the appropriate sidecar images based on k8s version {{- define "csi-powermax.snapshotterImage" -}} {{- if eq .Capabilities.KubeVersion.Major "1" }} - {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "24") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} + {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} {{- print "k8s.gcr.io/sig-storage/csi-snapshotter:v6.1.0" -}} {{- end -}} {{- end -}} @@ -27,7 +27,7 @@ Return the appropriate sidecar images based on k8s version {{- define "csi-powermax.resizerImage" -}} {{- if eq .Capabilities.KubeVersion.Major "1" }} - {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "24") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} + {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} {{- print "k8s.gcr.io/sig-storage/csi-resizer:v1.6.0" -}} {{- end -}} {{- end -}} @@ -35,7 +35,7 @@ Return the appropriate sidecar images based on k8s version {{- define "csi-powermax.registrarImage" -}} {{- if eq .Capabilities.KubeVersion.Major "1" }} - {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "24") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} + {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} {{- print "k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.6.0" -}} {{- end -}} {{- end -}} @@ -43,7 +43,7 @@ Return the appropriate sidecar images based on k8s version {{- define "csi-powermax.healthmonitorImage" -}} {{- if eq .Capabilities.KubeVersion.Major "1" }} - {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "24") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} + {{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "26") -}} {{- print "gcr.io/k8s-staging-sig-storage/csi-external-health-monitor-controller:v0.7.0" -}} {{- end -}} {{- end -}}