-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from dell/release-1.2.0
csi-isilon 1.2.0 release
- Loading branch information
Showing
43 changed files
with
1,259 additions
and
116 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
kubeversion: "v1.14" | ||
|
||
# IT IS RECOMMENDED YOU DO NOT CHANGE THE IMAGES TO BE DOWNLOADED. | ||
images: | ||
# "images.attacher" defines the container images used for the csi attacher | ||
# container. | ||
attacher: quay.io/k8scsi/csi-attacher:v1.1.1 #doesn't work with CSI 0.3.0 driver | ||
|
||
# "images.provisioner" defines the container images used for the csi provisioner | ||
# container. | ||
provisioner: quay.io/k8scsi/csi-provisioner:v1.2.1 #doesn't work with CSI 0.3.0 driver | ||
|
||
# "images.snapshotter" defines the container image used for the csi snapshotter | ||
snapshotter: quay.io/k8scsi/csi-snapshotter:v1.2.0 | ||
|
||
# "images.registrar" defines the container images used for the csi registrar | ||
# container. | ||
registrar: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0 #doesn't work with CSI 0.3.0 driver | ||
|
||
# "images.resizer" defines the container images used for the csi resizer | ||
# container. | ||
resizer: quay.io/k8scsi/csi-resizer:v0.1.0 #doesn't work with CSI 0.3.0 driver | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
kubeversion: "v1.16" | ||
|
||
# IT IS RECOMMENDED YOU DO NOT CHANGE THE IMAGES TO BE DOWNLOADED. | ||
images: | ||
# "images.attacher" defines the container images used for the csi attacher | ||
# container. | ||
attacher: quay.io/k8scsi/csi-attacher:v2.0.0 #doesn't work with CSI 0.3.0 driver | ||
|
||
# "images.provisioner" defines the container images used for the csi provisioner | ||
# container. | ||
provisioner: quay.io/k8scsi/csi-provisioner:v1.4.0 #doesn't work with CSI 0.3.0 driver | ||
|
||
# "images.snapshotter" defines the container image used for the csi snapshotter | ||
snapshotter: quay.io/k8scsi/csi-snapshotter:v1.2.2 | ||
|
||
# "images.registrar" defines the container images used for the csi registrar | ||
# container. | ||
registrar: quay.io/k8scsi/csi-node-driver-registrar:v1.2.0 #doesn't work with CSI 0.3.0 driver | ||
|
||
# "images.resizer" defines the container images used for the csi resizer | ||
# container. | ||
resizer: quay.io/k8scsi/csi-resizer:v0.5.0 #doesn't work with CSI 0.3.0 driver | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
#!/bin/bash | ||
helm delete --purge isilon | ||
helm version | grep "v3." --quiet | ||
if [ $? -eq 0 ] | ||
then | ||
echo "Uninstalling using helm version 3" | ||
helm delete -n isilon isilon | ||
else | ||
echo "Uninstalling using helm version 2" | ||
helm delete --purge isilon | ||
fi | ||
|
||
sleep 10 | ||
kubectl get pods -n isilon | ||
kubectl get volumesnapshotclass | grep isilon-snapclass --quiet | ||
if [ $? -eq 0 ]; | ||
then kubectl delete volumesnapshotclass isilon-snapclass | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.