Skip to content

Commit 6e56466

Browse files
Release 3.0.2 for adding support for Openshift 4.20
* make community community-deploy community-scorecard certified successful * incorporated review comments Signed-off-by: Rohit Balakrishna <[email protected]>
1 parent 19b76cf commit 6e56466

32 files changed

+3020
-57
lines changed

docs/hpe-csi-driver-3.0.2.tgz

17.8 KB
Binary file not shown.

docs/index.yaml

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,44 @@ entries:
259259
- hpe-cosi-driver-1.0.0.tgz
260260
version: 1.0.0
261261
hpe-csi-driver:
262+
- annotations:
263+
artifacthub.io/category: storage
264+
artifacthub.io/containsSecurityUpdates: "false"
265+
artifacthub.io/license: Apache-2.0
266+
artifacthub.io/links: |
267+
- name: Release Highlights
268+
url: https://scod.hpedev.io/csi_driver/index.html#latest_release
269+
- name: Release Notes
270+
url: https://github.com/hpe-storage/csi-driver/tree/master/release-notes
271+
- name: Documentation
272+
url: https://scod.hpedev.io/csi_driver
273+
- name: Chart Source
274+
url: https://github.com/hpe-storage/co-deployments
275+
artifacthub.io/prerelease: "false"
276+
artifacthub.io/recommendations: |
277+
- url: https://artifacthub.io/packages/olm/community-operators/hpe-csi-operator
278+
- url: https://artifacthub.io/packages/helm/hpe-storage/hpe-csi-info-metrics
279+
- url: https://artifacthub.io/packages/helm/hpe-storage/hpe-array-exporter
280+
apiVersion: v1
281+
appVersion: 3.0.2
282+
created: "2025-11-20T06:36:58.318966814Z"
283+
description: A Helm chart for installing the HPE CSI Driver for Kubernetes
284+
digest: 10ea81d3d2254d0b6a15028390212359213ba6daf34a7c54fbff3e3144c2ad45
285+
home: https://hpe.com/storage/containers
286+
icon: https://raw.githubusercontent.com/hpe-storage/co-deployments/master/docs/assets/hpedev.png
287+
keywords:
288+
- HPE
289+
- Storage
290+
- CSI
291+
maintainers:
292+
293+
name: datamattsson
294+
name: hpe-csi-driver
295+
sources:
296+
- https://github.com/hpe-storage/csi-driver
297+
urls:
298+
- hpe-csi-driver-3.0.2.tgz
299+
version: 3.0.2
262300
- annotations:
263301
artifacthub.io/category: storage
264302
artifacthub.io/containsSecurityUpdates: "false"
@@ -1816,4 +1854,4 @@ entries:
18161854
urls:
18171855
- hpe-greenlake-file-csi-driver-1.0.0-beta.tgz
18181856
version: 1.0.0-beta
1819-
generated: "2025-09-25T16:03:47.795986281Z"
1857+
generated: "2025-11-20T06:36:58.317710175Z"

helm/charts/hpe-csi-driver/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
2-
version: "3.0.1"
3-
appVersion: "3.0.1"
2+
version: "3.0.2"
3+
appVersion: "3.0.2"
44
annotations:
55
artifacthub.io/prerelease: "false"
66
artifacthub.io/containsSecurityUpdates: "false"
Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
# Default values for hpe-csi-driver Helm chart
2+
# This is a YAML-formatted file.
3+
# Declare variables to be passed into your templates.
4+
5+
# Control CSP Service and Deployments for HPE storage products
6+
disable:
7+
nimble: false
8+
primera: false
9+
alletra6000: false
10+
alletra9000: false
11+
alletraStorageMP: false
12+
b10000FileService: false
13+
14+
# For controlling automatic iscsi/multipath package installation
15+
disableNodeConformance: false
16+
17+
# For controlling automatic iscsi/multipath service configuration
18+
disableNodeConfiguration: false
19+
20+
# NodeGetVolumestats will be called by default, set true to disable the call
21+
disableNodeGetVolumeStats: false
22+
23+
# The Node Monitor ensure the node has no stale storage resources attached
24+
disableNodeMonitor: false
25+
26+
# The number of volumes the CSI controller will publish to an individual node
27+
maxVolumesPerNode: 100
28+
29+
# Disables host deletion by the CSP when no volumes are associated with the host
30+
disableHostDeletion: false
31+
32+
# Disable pre-install hooks when the chart is rendered outside of Kubernetes, such as CI/CD systems
33+
disablePreInstallHooks: false
34+
35+
# imagePullPolicy applied for all hpe-csi-driver images
36+
imagePullPolicy: "IfNotPresent"
37+
38+
# Cluster wide values for CHAP authentication
39+
iscsi:
40+
chapSecretName: ""
41+
42+
# Log level for all hpe-csi-driver components
43+
logLevel: "info"
44+
45+
# Kubelet root directory path
46+
kubeletRootDir: "/var/lib/kubelet"
47+
48+
controller:
49+
50+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
51+
labels: {}
52+
53+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
54+
nodeSelector: {}
55+
56+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
57+
tolerations: []
58+
59+
affinity: {}
60+
61+
resources:
62+
limits:
63+
cpu: 2000m
64+
memory: 1Gi
65+
requests:
66+
cpu: 100m
67+
memory: 128Mi
68+
69+
csp:
70+
71+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
72+
labels: {}
73+
74+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
75+
nodeSelector: {}
76+
77+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
78+
tolerations: []
79+
80+
affinity: {}
81+
82+
resources:
83+
limits:
84+
cpu: 2000m
85+
memory: 1Gi
86+
requests:
87+
cpu: 100m
88+
memory: 128Mi
89+
90+
node:
91+
92+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
93+
labels: {}
94+
95+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
96+
nodeSelector: {}
97+
98+
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
99+
tolerations: []
100+
101+
affinity: {}
102+
103+
resources:
104+
limits:
105+
cpu: 2000m
106+
memory: 1Gi
107+
requests:
108+
cpu: 100m
109+
memory: 128Mi
110+
111+
# Release images
112+
images:
113+
csiNodeDriver: quay.io/hpestorage/csi-driver:v3.0.0
114+
csiControllerDriver: quay.io/hpestorage/csi-driver:v3.0.0
115+
nimbleCSP: quay.io/hpestorage/alletra-6000-and-nimble-csp:v3.0.0
116+
primera3parCSP: quay.io/hpestorage/alletra-9000-primera-and-3par-csp:v3.0.1
117+
b10000FileServiceCSP: quay.io/hpestorage/alletrastoragemp-b10000-nfs-csp:v1.0.0
118+
nfsProvisioner: quay.io/hpestorage/nfs-provisioner:v3.0.8
119+
csiExtensions: quay.io/hpestorage/csi-extensions:v1.2.9
120+
csiVolumeGroupProvisioner: quay.io/hpestorage/volume-group-provisioner:v1.0.8
121+
csiVolumeGroupSnapshotter: quay.io/hpestorage/volume-group-snapshotter:v1.0.8
122+
csiVolumeMutator: quay.io/hpestorage/volume-mutator:v1.3.8
123+
csiAttacher: registry.k8s.io/sig-storage/csi-attacher:v4.9.0
124+
csiNodeDriverRegistrar: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.14.0
125+
csiProvisioner: registry.k8s.io/sig-storage/csi-provisioner:v5.3.0
126+
csiResizer: registry.k8s.io/sig-storage/csi-resizer:v1.13.2
127+
csiSnapshotter: registry.k8s.io/sig-storage/csi-snapshotter:v8.2.1

operators/hpe-csi-operator/destinations/certified-operators/current-version/manifests/hpe-csi-operator.clusterserviceversion.yaml

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ metadata:
103103
capabilities: Basic Install
104104
categories: Storage
105105
certified: "true"
106-
containerImage: registry.connect.redhat.com/hpestorage/csi-driver-operator@sha256:bc2a1fa4936bcbf947fee5bffee7f1d103fd35ef2d2ba46ab6896515674e41bb
107-
createdAt: "2025-09-25T16:28:16Z"
106+
containerImage: registry.connect.redhat.com/hpestorage/csi-driver-operator@sha256:6382701a76fe1e464db10ebd0ffc3e6c273366b1ff11926024f535e41cdd279f
107+
createdAt: "2025-11-21T05:24:13Z"
108108
description: A Container Storage Interface (CSI) driver for HPE storage platforms. The CSI driver allows you to use HPE storage with your preferred container orchestrator.
109109
features.operators.openshift.io/cnf: "false"
110110
features.operators.openshift.io/cni: "false"
@@ -116,13 +116,14 @@ metadata:
116116
features.operators.openshift.io/token-auth-aws: "false"
117117
features.operators.openshift.io/token-auth-azure: "false"
118118
features.operators.openshift.io/token-auth-gcp: "false"
119-
olm.skipRange: '>=1.0.0 <3.0.1'
119+
olm.skipRange: '>=1.0.0 <3.0.2'
120+
operatorframework.io/suggested-namespace: hpe-storage
120121
operatorhub.io/ui-metadata-max-k8s-version: "1.33"
121122
operators.operatorframework.io/builder: operator-sdk-v1.39.1
122123
operators.operatorframework.io/project_layout: helm.sdk.operatorframework.io/v1
123124
repository: https://github.com/hpe-storage/co-deployments
124125
support: HPE
125-
name: hpe-csi-operator.v3.0.1
126+
name: hpe-csi-operator.v3.0.2
126127
namespace: placeholder
127128
spec:
128129
apiservicedefinitions: {}
@@ -821,7 +822,7 @@ spec:
821822
- --leader-elect
822823
- --leader-election-id=hpe-csi-operator
823824
- --health-probe-bind-address=:8081
824-
image: registry.connect.redhat.com/hpestorage/csi-driver-operator@sha256:bc2a1fa4936bcbf947fee5bffee7f1d103fd35ef2d2ba46ab6896515674e41bb
825+
image: registry.connect.redhat.com/hpestorage/csi-driver-operator@sha256:6382701a76fe1e464db10ebd0ffc3e6c273366b1ff11926024f535e41cdd279f
825826
livenessProbe:
826827
httpGet:
827828
path: /healthz
@@ -911,37 +912,37 @@ spec:
911912
provider:
912913
name: HPE
913914
relatedImages:
914-
- image: registry.connect.redhat.com/hpestorage/csi-driver-operator@sha256:bc2a1fa4936bcbf947fee5bffee7f1d103fd35ef2d2ba46ab6896515674e41bb
915+
- image: registry.connect.redhat.com/hpestorage/csi-driver-operator@sha256:6382701a76fe1e464db10ebd0ffc3e6c273366b1ff11926024f535e41cdd279f
915916
name: manager
916-
- image: registry.connect.redhat.com/hpestorage/csi-driver-operator@sha256:bc2a1fa4936bcbf947fee5bffee7f1d103fd35ef2d2ba46ab6896515674e41bb
917-
name: csi-driver-operator-bc2a1fa4936bcbf947fee5bffee7f1d103fd35ef2d2ba46ab6896515674e41bb-annotation
917+
- image: quay.io/hpestorage/volume-group-provisioner@sha256:0a5f39f52113b963978a695bb8e5a5a3c4d387a02eb4d4a9647b4bc804de7399
918+
name: volume-group-provisioner-0a5f39f52113b963978a695bb8e5a5a3c4d387a02eb4d4a9647b4bc804de7399-annotation
919+
- image: registry.k8s.io/sig-storage/csi-snapshotter@sha256:5f4bb469fec51147ce157329dab598c758da1b018bad6dad26f0ff469326d769
920+
name: csi-snapshotter-5f4bb469fec51147ce157329dab598c758da1b018bad6dad26f0ff469326d769-annotation
918921
- image: quay.io/hpestorage/alletra-9000-primera-and-3par-csp@sha256:8af6e87075c47ba8d9714d55848ab2a0fef62b0768681e30d9e63ed7f396b0bf
919922
name: alletra-9000-primera-and-3par-csp-8af6e87075c47ba8d9714d55848ab2a0fef62b0768681e30d9e63ed7f396b0bf-annotation
920-
- image: quay.io/hpestorage/csi-extensions@sha256:27074aaa8df3b867cfa3d12318612c45f8e541d750c27db5e080734592160c89
921-
name: csi-extensions-27074aaa8df3b867cfa3d12318612c45f8e541d750c27db5e080734592160c89-annotation
922923
- image: registry.k8s.io/sig-storage/csi-attacher@sha256:5aaefc24f315b182233c8b6146077f8c32e274d864cb03c632206e78bd0302da
923924
name: csi-attacher-5aaefc24f315b182233c8b6146077f8c32e274d864cb03c632206e78bd0302da-annotation
924-
- image: quay.io/hpestorage/volume-group-snapshotter@sha256:177d9abf8fbd3ac26ca4c12ca4b4adde20ebab308c79f10b04632f0171746fa8
925-
name: volume-group-snapshotter-177d9abf8fbd3ac26ca4c12ca4b4adde20ebab308c79f10b04632f0171746fa8-annotation
926-
- image: quay.io/hpestorage/volume-group-provisioner@sha256:0a5f39f52113b963978a695bb8e5a5a3c4d387a02eb4d4a9647b4bc804de7399
927-
name: volume-group-provisioner-0a5f39f52113b963978a695bb8e5a5a3c4d387a02eb4d4a9647b4bc804de7399-annotation
928-
- image: quay.io/hpestorage/alletrastoragemp-b10000-nfs-csp@sha256:6a1855a2ef1a83b886bb1f45b596e8e420e5e13c84bbf446c8c202eaf27a2013
929-
name: alletrastoragemp-b10000-nfs-csp-6a1855a2ef1a83b886bb1f45b596e8e420e5e13c84bbf446c8c202eaf27a2013-annotation
925+
- image: quay.io/hpestorage/csi-extensions@sha256:27074aaa8df3b867cfa3d12318612c45f8e541d750c27db5e080734592160c89
926+
name: csi-extensions-27074aaa8df3b867cfa3d12318612c45f8e541d750c27db5e080734592160c89-annotation
927+
- image: registry.connect.redhat.com/hpestorage/csi-driver-operator@sha256:6382701a76fe1e464db10ebd0ffc3e6c273366b1ff11926024f535e41cdd279f
928+
name: csi-driver-operator-6382701a76fe1e464db10ebd0ffc3e6c273366b1ff11926024f535e41cdd279f-annotation
930929
- image: quay.io/hpestorage/alletra-6000-and-nimble-csp@sha256:5480ffdebd74fdc547bc4a11b4434abac7bbfee3cee349f1ac893fbad84bb8d1
931930
name: alletra-6000-and-nimble-csp-5480ffdebd74fdc547bc4a11b4434abac7bbfee3cee349f1ac893fbad84bb8d1-annotation
932-
- image: quay.io/hpestorage/nfs-provisioner@sha256:5bf5952453ecca28e26724df85ebd5c8f0b7479ae4cb683d4a09c415da00e002
933-
name: nfs-provisioner-5bf5952453ecca28e26724df85ebd5c8f0b7479ae4cb683d4a09c415da00e002-annotation
934-
- image: registry.k8s.io/sig-storage/csi-snapshotter@sha256:5f4bb469fec51147ce157329dab598c758da1b018bad6dad26f0ff469326d769
935-
name: csi-snapshotter-5f4bb469fec51147ce157329dab598c758da1b018bad6dad26f0ff469326d769-annotation
936-
- image: registry.k8s.io/sig-storage/csi-node-driver-registrar@sha256:5244abbe87e01b35adeb8bb13882a74785df0c0619f8325c9e950395c3f72a97
937-
name: csi-node-driver-registrar-5244abbe87e01b35adeb8bb13882a74785df0c0619f8325c9e950395c3f72a97-annotation
938931
- image: quay.io/hpestorage/volume-mutator@sha256:bf6beac1af5edcd3c9774f0dcc9579b79ef9cc8e4b74a4238082ab9aa443b5ed
939932
name: volume-mutator-bf6beac1af5edcd3c9774f0dcc9579b79ef9cc8e4b74a4238082ab9aa443b5ed-annotation
933+
- image: quay.io/hpestorage/volume-group-snapshotter@sha256:177d9abf8fbd3ac26ca4c12ca4b4adde20ebab308c79f10b04632f0171746fa8
934+
name: volume-group-snapshotter-177d9abf8fbd3ac26ca4c12ca4b4adde20ebab308c79f10b04632f0171746fa8-annotation
940935
- image: registry.k8s.io/sig-storage/csi-resizer@sha256:8ddd178ba5d08973f1607f9b84619b58320948de494b31c9d7cd5375b316d6d4
941936
name: csi-resizer-8ddd178ba5d08973f1607f9b84619b58320948de494b31c9d7cd5375b316d6d4-annotation
942937
- image: registry.k8s.io/sig-storage/csi-provisioner@sha256:bb057f866177d5f4139a1527e594499cbe0feeb67b63aaca8679dfdf0a6016f9
943938
name: csi-provisioner-bb057f866177d5f4139a1527e594499cbe0feeb67b63aaca8679dfdf0a6016f9-annotation
944939
- image: quay.io/hpestorage/csi-driver@sha256:fffd5a243dc0f7e1027f69754fce77e5df04cb0a71b808f22a3b3a09b392c676
945940
name: csi-driver-fffd5a243dc0f7e1027f69754fce77e5df04cb0a71b808f22a3b3a09b392c676-annotation
941+
- image: quay.io/hpestorage/nfs-provisioner@sha256:5bf5952453ecca28e26724df85ebd5c8f0b7479ae4cb683d4a09c415da00e002
942+
name: nfs-provisioner-5bf5952453ecca28e26724df85ebd5c8f0b7479ae4cb683d4a09c415da00e002-annotation
943+
- image: registry.k8s.io/sig-storage/csi-node-driver-registrar@sha256:5244abbe87e01b35adeb8bb13882a74785df0c0619f8325c9e950395c3f72a97
944+
name: csi-node-driver-registrar-5244abbe87e01b35adeb8bb13882a74785df0c0619f8325c9e950395c3f72a97-annotation
945+
- image: quay.io/hpestorage/alletrastoragemp-b10000-nfs-csp@sha256:6a1855a2ef1a83b886bb1f45b596e8e420e5e13c84bbf446c8c202eaf27a2013
946+
name: alletrastoragemp-b10000-nfs-csp-6a1855a2ef1a83b886bb1f45b596e8e420e5e13c84bbf446c8c202eaf27a2013-annotation
946947
selector: {}
947-
version: 3.0.1
948+
version: 3.0.2

operators/hpe-csi-operator/destinations/certified-operators/current-version/metadata/annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ annotations:
1414
operators.operatorframework.io.test.config.v1: tests/scorecard/
1515

1616
# Red Hat OpenShift
17-
com.redhat.openshift.versions: v4.14-v4.19
17+
com.redhat.openshift.versions: v4.14-v4.20

operators/hpe-csi-operator/destinations/community-operators/current-version/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM scratch
22

33
#Add these labels
4-
LABEL com.redhat.openshift.versions="v4.14-v4.19"
4+
LABEL com.redhat.openshift.versions="v4.14-v4.20"
55
LABEL com.redhat.delivery.operator.bundle=true
66
LABEL com.redhat.delivery.backport=true
77

0 commit comments

Comments
 (0)