Skip to content

Commit 759773f

Browse files
authoredJul 2, 2024··
add ocp416 support,update codeowner,format yaml files (#268)
1 parent dfc2689 commit 759773f

File tree

16 files changed

+42
-47
lines changed

16 files changed

+42
-47
lines changed
 

‎.github/CODEOWNERS

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@
77
# be requested for review when someone opens a pull request.
88
# order is alphabetical for easier maintenance.
99
#
10-
# Adam Ginna (adamginna-dell)
1110
# Aaron Tye (atye)
1211
# Bogdan Novikov (bogdanNovikovDell)
1312
# Bahubali Jain (bpjain2004)
14-
# Bartosz Ciesielczyk (cbartoszDell)
1513
# Chiman Jain (chimanjain)
1614
# Christian Coffield (ChristianAtDell)
1715
# Don Khan (donatwork)
@@ -29,4 +27,4 @@
2927
# Shefali Malhotra (shefali-malhotra)
3028

3129
# for all files:
32-
* @adamginna-dell @atye @bogdanNovikovDell @bpjain2004 @cbartoszDell @chimanjain @ChristianAtDell @donatwork @HarishH-DELL @harshaatdell @Leonard-Dell @mdutka-dell @meggm @nitesh3108 @prablr79 @rajkumar-palani @Sakshi-dell @santhoshatdell @shaynafinocchiaro @shefali-malhotra
30+
* @atye @bogdanNovikovDell @bpjain2004 @chimanjain @ChristianAtDell @donatwork @HarishH-DELL @harshaatdell @Leonard-Dell @mdutka-dell @meggm @nitesh3108 @prablr79 @rajkumar-palani @Sakshi-dell @santhoshatdell @shaynafinocchiaro @shefali-malhotra

‎dell-csi-helm-installer/verify-csi-isilon.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# verify-csi-isilon method
1616
function verify-csi-isilon() {
1717
verify_k8s_versions "1.21" "1.30"
18-
verify_openshift_versions "4.14" "4.15"
18+
verify_openshift_versions "4.15" "4.16"
1919
verify_namespace "${NS}"
2020
verify_required_secrets "${RELEASE}-creds"
2121
verify_optional_secrets "${RELEASE}-certs"

‎samples/persistentvolumeclaim/pvc-from-pvc.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ kind: PersistentVolumeClaim
22
apiVersion: v1
33
metadata:
44
name: pvc-from-pvc
5-
namespace: default
5+
namespace: default
66
spec:
77
accessModes:
8-
- ReadWriteMany
8+
- ReadWriteMany
99
volumeMode: Filesystem
1010
resources:
1111
requests:

‎samples/persistentvolumeclaim/pvc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
# pvcSoftGracePrd : "85400"
1010
spec:
1111
accessModes:
12-
- ReadWriteOnce
12+
- ReadWriteOnce
1313
resources:
1414
requests:
1515
storage: 5Gi

‎samples/pod/inline-volume.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ spec:
66
containers:
77
- name: my-frontend
88
image: busybox
9-
command: [ "sleep", "100000" ]
9+
command: ["sleep", "100000"]
1010
volumeMounts:
11-
- mountPath: "/data"
12-
name: my-csi-volume
11+
- mountPath: "/data"
12+
name: my-csi-volume
1313
volumes:
14-
- name: my-csi-volume
15-
csi:
16-
driver: csi-isilon.dellemc.com
17-
volumeAttributes:
18-
size: "2Gi"
19-
ClusterName: "cluster1"
14+
- name: my-csi-volume
15+
csi:
16+
driver: csi-isilon.dellemc.com
17+
volumeAttributes:
18+
size: "2Gi"
19+
ClusterName: "cluster1"

‎samples/pod/nginx.yaml

+11-11
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ metadata:
44
name: nginx-pv-pod
55
spec:
66
containers:
7-
- name: task-pv-container
8-
image: nginx
9-
ports:
10-
- containerPort: 80
11-
name: "http-server"
12-
volumeMounts:
13-
- mountPath: "/usr/share/nginx/html"
14-
name: task-pv-storage
7+
- name: task-pv-container
8+
image: nginx
9+
ports:
10+
- containerPort: 80
11+
name: "http-server"
12+
volumeMounts:
13+
- mountPath: "/usr/share/nginx/html"
14+
name: task-pv-storage
1515
volumes:
16-
- name: task-pv-storage
17-
persistentVolumeClaim:
18-
claimName: test-pvc
16+
- name: task-pv-storage
17+
persistentVolumeClaim:
18+
claimName: test-pvc

‎samples/secret/secret.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
isilonClusters:
2-
# logical name of PowerScale Cluster
2+
# logical name of PowerScale Cluster
33
- clusterName: "cluster1"
44

55
# username for connecting to PowerScale OneFS API server
@@ -75,4 +75,3 @@ isilonClusters:
7575
# password: "password"
7676
# endpoint: "1.2.3.4"
7777
# endpointPort: "8080"
78-

‎samples/storageclass/isilon-replication.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ parameters:
125125
# until a Pod using the PersistentVolumeClaim is created
126126
# Default value: Immediate
127127
volumeBindingMode: Immediate
128-
129128
# allowedTopologies helps scheduling pods on worker nodes which match all of below expressions.
130129
# If enableCustomTopology is set to true in helm values.yaml, then do not specify allowedTopologies
131130
# Change all instances of <ISILON_IP> to the IP of the PowerScale OneFS API server

‎samples/storageclass/isilon.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ parameters:
7777
# until a Pod using the PersistentVolumeClaim is created
7878
# Default value: Immediate
7979
volumeBindingMode: Immediate
80-
8180
# allowedTopologies helps scheduling pods on worker nodes which match all of below expressions.
8281
# If enableCustomTopology is set to true in helm values.yaml, then do not specify allowedTopologies
8382
# Change all instances of <ISILON_IP> to the IP of the PowerScale OneFS API server

‎test/helm/10vols/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ appVersion: 1.0.0
44
description: |
55
Tests isilon CSI deployments.
66
keywords:
7-
- csi-isilon
8-
- storage
7+
- csi-isilon
8+
- storage
99
engine: gotpl

‎test/helm/1vol/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ appVersion: 1.0.0
44
description: |
55
Test CSI Isilon deployment.
66
keywords:
7-
- csi-isilon
8-
- storage
7+
- csi-isilon
8+
- storage
99
engine: gotpl

‎test/helm/2vols+restore/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ appVersion: 1.0.0
44
description: |
55
Tests Isilon CSI deployments.
66
keywords:
7-
- isilon-csi
8-
- storage
7+
- isilon-csi
8+
- storage
99
engine: gotpl

‎test/helm/2vols/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ appVersion: 1.0.0
44
description: |
55
Tests isilon CSI deployments.
66
keywords:
7-
- csi-isilon
8-
- storage
7+
- csi-isilon
8+
- storage
99
engine: gotpl

‎test/helm/7vols/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ appVersion: 1.0.0
44
description: |
55
Tests CSI deployments.
66
keywords:
7-
- csi-isilon
8-
- storage
7+
- csi-isilon
8+
- storage
99
engine: gotpl

‎test/ingestion/sample/isilonstaticpv.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ spec:
1313
csi:
1414
driver: csi-isilon.dellemc.com
1515
volumeAttributes:
16-
Path: "/ifs/data/csi/isilonvol"
17-
Name: "isilonvol"
18-
AzServiceIP: 'XX.XX.XX.XX'
16+
Path: "/ifs/data/csi/isilonvol"
17+
Name: "isilonvol"
18+
AzServiceIP: "XX.XX.XX.XX"
1919
volumeHandle: isilonvol=_=_=652=_=_=System=_=_=cluster
2020
claimRef:
2121
name: isilonstaticpvc

‎test/ingestion/sample/isilonstaticpvc.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ metadata:
55
namespace: default
66
spec:
77
accessModes:
8-
- ReadWriteMany
8+
- ReadWriteMany
99
resources:
10-
requests:
11-
storage: 5Gi
10+
requests:
11+
storage: 5Gi
1212
volumeName: isilonstaticpv
1313
storageClassName: isilon

0 commit comments

Comments
 (0)
Please sign in to comment.