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

Adding k8 28 support #220

Merged
merged 1 commit into from
Aug 16, 2023
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.build
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ LABEL vendor="Dell Inc." \
name="csi-powermax" \
summary="CSI Driver for Dell PowerMax" \
description="CSI Driver for provisioning persistent storage from Dell PowerMax" \
version="2.7.0" \
version="2.8.0" \
license="Apache-2.0"
COPY csi-powermax/licenses /licenses
2 changes: 1 addition & 1 deletion csireverseproxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ LABEL vendor="Dell Inc." \
name="csipowermax-reverseproxy" \
summary="CSI PowerMax Reverse Proxy" \
description="CSI PowerMax Reverse Proxy which helps manage connections with Unisphere for PowerMax" \
version="2.6.0" \
version="2.7.0" \
license="Apache-2.0"
COPY licenses /licenses
# Import from builder.
Expand Down
2 changes: 1 addition & 1 deletion csireverseproxy/manifests/revproxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
containers:
- name: powermax-revproxy
# Replace this with the built image name
image: dellemc/csipowermax-reverseproxy:v2.6.0
image: dellemc/csipowermax-reverseproxy:v2.7.0
imagePullPolicy: Always
env:
- name: X_CSI_REVPROXY_CONFIG_DIR
Expand Down
2 changes: 1 addition & 1 deletion dell-csi-helm-installer/csi-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ PROG="${0}"
NODE_VERIFY=1
VERIFY=1
MODE="install"
DEFAULT_DRIVER_VERSION="v2.7.0"
DEFAULT_DRIVER_VERSION="v2.8.0"
WATCHLIST=""

# export the name of the debug log, so child processes will see it
Expand Down
2 changes: 1 addition & 1 deletion dell-csi-helm-installer/verify-csi-powermax.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

# verify-csi-powermax method
function verify-csi-powermax() {
verify_k8s_versions "1.24" "1.27"
verify_k8s_versions "1.25" "1.28"
verify_openshift_versions "4.12" "4.13"
verify_helm_values_version "${DRIVER_VERSION}"
verify_namespace "${NS}"
Expand Down
Loading