Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.7.0 #224

Merged
merged 24 commits into from
Jun 23, 2023
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
62d5d62
[charts/csm-authorization]: feature-725: Remove tenant service ingres…
atye Apr 3, 2023
0570feb
Ingress removal storage service (#198)
IsaiasA1 Apr 11, 2023
622ab00
updated CodeOwners (#201)
niranjan-n1 Apr 12, 2023
d6143f5
[csm-authorization/csm-authorization] Remove role-service ingress (#203)
xuluna Apr 12, 2023
ac8378b
CSM helm charts 1.7 (#197)
niranjan-n1 Apr 13, 2023
cfa0e99
Change K8s registry to registry.k8s.io (#200)
boyamurthy Apr 24, 2023
71d28f6
Update cert-manager to 1.11.0 (#204)
aqu-dell May 2, 2023
3f2ed7c
Adding k8 27 support for Powermax (#205)
boyamurthy May 4, 2023
7f2d571
Adding k8s 1.27 Support for PowerStore (#206)
rishabhatdell May 8, 2023
eb31aa7
[charts/csi-unity] : 2.7.0 csi-unity support for helm in csm-installa…
karthikk92 May 18, 2023
fa8adde
[charts/csm-replication]: Updated image versions (#207)
santhoshatdell May 18, 2023
a2434e4
[charts/csi-vxflexos]:2.7.0 csi-vxflexos support for helm in csm-inst…
VamsiSiddu-7 May 23, 2023
e334c5e
removed unused files and dependencies (#211)
niranjan-n1 May 23, 2023
b99e0b0
[charts/csi-isilon]Added Powerscale 2.7.0 Support (#212)
chimanjain May 29, 2023
43272c4
changes for powerstore 2.7 (#213)
rishabhatdell May 31, 2023
9c931de
Updating auto proxy code (#214)
boyamurthy Jun 1, 2023
bb5adb5
Upgradring driver and Chart version (#215)
boyamurthy Jun 1, 2023
6a8f68f
update to 1.7 (#216)
IsaiasA1 Jun 1, 2023
0ecec66
[charts/csi-powerstore] Sidecars and csi-metadata-retriever version u…
suryagupta4 Jun 5, 2023
cd20fce
Update powerscale driver sidecars (#218)
chimanjain Jun 6, 2023
ef9fcf3
container-storage-modules chart versions update (#220)
niranjan-n1 Jun 6, 2023
41da3e7
Update latest sidecars in the unity driver (#219)
karthikk92 Jun 6, 2023
f75ec04
sidecar versions updated for powerflex driver (#221)
khareRajshree Jun 6, 2023
e221d34
Remove container storage modules chart (#222)
niranjan-n1 Jun 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
changes for powerstore 2.7 (#213)
rishabhatdell authored May 31, 2023

Verified

This commit was signed with the committer’s verified signature.
kaylareopelle Kayla Reopelle
commit 43272c49c2f38094c98a6e0981c94000fb603af3
2 changes: 1 addition & 1 deletion charts/container-storage-modules/Chart.yaml
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ appVersion: "1.0.0"

dependencies:
- name: csi-powerstore
version: 2.6.0
version: 2.7.0
repository: file://../csi-powerstore
condition: csi-powerstore.enabled

4 changes: 2 additions & 2 deletions charts/container-storage-modules/values.yaml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
########################
csi-powerstore:
enabled: false
version: "v2.6.0"
version: "v2.7.0"
images:
driverRepository: dellemc
## Controller ATTRIBUTES
@@ -75,7 +75,7 @@ csi-powerstore:
# Enable this feature only after contact support for additional information
podmon:
enabled: false
image: dellemc/podmon:v1.5.0
image: dellemc/podmon:v1.6.0
controller:
args:
- "--csisock=unix:/var/run/csi/csi.sock"
8 changes: 4 additions & 4 deletions charts/csi-powerstore/Chart.yaml
Original file line number Diff line number Diff line change
@@ -14,18 +14,18 @@
#
#
apiVersion: v2
appVersion: "2.6.0"
appVersion: "2.7.0"
name: csi-powerstore
version: 2.6.0
version: 2.7.0
description: |
PowerStore CSI (Container Storage Interface) driver Kubernetes
integration. This chart includes everything required to provision via CSI as
well as a PowerStore StorageClass.
type: application
kubeVersion: ">= 1.23.0 < 1.28.0"
kubeVersion: ">= 1.22.0 < 1.28.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.23.0-0 < 1.28.0-0"
# kubeVersion: ">= 1.22.0-0 < 1.28.0-0"
keywords:
- csi
- storage
12 changes: 6 additions & 6 deletions charts/csi-powerstore/templates/_helpers.tpl
Original file line number Diff line number Diff line change
@@ -3,47 +3,47 @@ Return the appropriate sidecar images based on k8s version
*/}}
{{- define "csi-powerstore.attacherImage" -}}
{{- if eq .Capabilities.KubeVersion.Major "1" }}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "22") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- print "registry.k8s.io/sig-storage/csi-attacher:v4.2.0" -}}
{{- end -}}
{{- end -}}
{{- end -}}

{{- define "csi-powerstore.provisionerImage" -}}
{{- if eq .Capabilities.KubeVersion.Major "1" }}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "22") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- print "registry.k8s.io/sig-storage/csi-provisioner:v3.4.0" -}}
{{- end -}}
{{- end -}}
{{- end -}}

{{- define "csi-powerstore.snapshotterImage" -}}
{{- if eq .Capabilities.KubeVersion.Major "1" }}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "22") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- print "registry.k8s.io/sig-storage/csi-snapshotter:v6.2.1" -}}
{{- end -}}
{{- end -}}
{{- end -}}

{{- define "csi-powerstore.resizerImage" -}}
{{- if eq .Capabilities.KubeVersion.Major "1" }}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "22") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- print "registry.k8s.io/sig-storage/csi-resizer:v1.7.0" -}}
{{- end -}}
{{- end -}}
{{- end -}}

{{- define "csi-powerstore.registrarImage" -}}
{{- if eq .Capabilities.KubeVersion.Major "1" }}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "22") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- print "registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.6.3" -}}
{{- end -}}
{{- end -}}
{{- end -}}

{{- define "csi-powerstore.healthmonitorImage" -}}
{{- if eq .Capabilities.KubeVersion.Major "1" }}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "23") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- if and (ge (trimSuffix "+" .Capabilities.KubeVersion.Minor) "22") (le (trimSuffix "+" .Capabilities.KubeVersion.Minor) "27") -}}
{{- print "registry.k8s.io/sig-storage/csi-external-health-monitor-controller:v0.8.0" -}}
{{- end -}}
{{- end -}}
4 changes: 2 additions & 2 deletions charts/csi-powerstore/values.yaml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
driverName: "csi-powerstore.dellemc.com"

# Driver version required to pull the latest driver image
version: "v2.6.0"
version: "v2.7.0"

# Specify kubelet config dir path.
# Ensure that the config.yaml file is present at this path.
@@ -311,7 +311,7 @@ storageCapacity:
# Enable this feature only after contact support for additional information
podmon:
enabled: false
image: dellemc/podmon:v1.5.0
image: dellemc/podmon:v1.6.0
controller:
args:
- "--csisock=unix:/var/run/csi/csi.sock"