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

CSI-Powerscale 2.2 changes #39

Merged
merged 1 commit into from
Dec 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion Dockerfile.podman
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ LABEL vendor="Dell Inc." \
name="csi-isilon" \
summary="CSI Driver for Dell EMC PowerScale" \
description="CSI Driver for provisioning persistent storage from Dell EMC PowerScale" \
version="2.1.0" \
version="2.2.0" \
license="Apache-2.0"

COPY ./licenses /licenses
4 changes: 2 additions & 2 deletions dell-csi-helm-installer/verify-csi-isilon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
#
# verify-csi-isilon method
function verify-csi-isilon() {
verify_k8s_versions "1.20" "1.22"
verify_k8s_versions "1.21" "1.23"
verify_openshift_versions "4.8" "4.9"
verify_namespace "${NS}"
verify_required_secrets "${RELEASE}-creds"
verify_optional_secrets "${RELEASE}-certs"
verify_alpha_snap_resources
verify_snap_requirements
verify_helm_3
verify_helm_values_version "2.1.0"
verify_helm_values_version "2.2.0"
verify_authorization_proxy_server
}
4 changes: 2 additions & 2 deletions helm/csi-isilon/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: csi-isilon
version: 2.1.0
appVersion: 2.1.0
version: 2.2.0
appVersion: 2.2.0
description: |
PowerScale CSI (Container Storage Interface) driver Kubernetes
integration. This chart includes everything required to provision via CSI as
Expand Down
2 changes: 1 addition & 1 deletion helm/csi-isilon/driver-image.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# IT IS RECOMMENDED YOU DO NOT CHANGE THE IMAGES TO BE DOWNLOADED.
images:
# "images.driver" defines the container images used for the driver container.
driver: dellemc/csi-isilon:v2.1.0
driver: dellemc/csi-isilon:v2.2.0
2 changes: 1 addition & 1 deletion helm/csi-isilon/k8s-1.21-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ images:

# "images.registrar" defines the container images used for the csi registrar
# container.
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.4.0

# "images.resizer" defines the container images used for the csi resizer
# container.
Expand Down
2 changes: 1 addition & 1 deletion helm/csi-isilon/k8s-1.22-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ images:

# "images.registrar" defines the container images used for the csi registrar
# container.
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.4.0

# "images.resizer" defines the container images used for the csi resizer
# container.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
kubeversion: "v1.20"
kubeversion: "v1.23"

# IT IS RECOMMENDED YOU DO NOT CHANGE THE IMAGES TO BE DOWNLOADED.
images:
Expand All @@ -15,7 +15,7 @@ images:

# "images.registrar" defines the container images used for the csi registrar
# container.
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
registrar: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.4.0

# "images.resizer" defines the container images used for the csi resizer
# container.
Expand Down
4 changes: 0 additions & 4 deletions helm/csi-isilon/templates/csidriver.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{{- if or (eq .Capabilities.KubeVersion.Minor "17") (eq .Capabilities.KubeVersion.Minor "17+")}}
apiVersion: storage.k8s.io/v1beta1
{{- else }}
apiVersion: storage.k8s.io/v1
{{- end }}
kind: CSIDriver
metadata:
name: csi-isilon.dellemc.com
Expand Down
2 changes: 1 addition & 1 deletion helm/csi-isilon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
########################
# version: version of this values file
# Note: Do not change this value
version: "2.1.0"
version: "2.2.0"

# CSI driver log level
# Allowed values: "error", "warn"/"warning", "info", "debug"
Expand Down