Skip to content

Commit

Permalink
Merge pull request #260 from dell/correct-broken-links-rel
Browse files Browse the repository at this point in the history
Corrected broken hyperlinks
  • Loading branch information
rajendraindukuri authored May 14, 2024
2 parents ea3875b + 826ad73 commit 64ad855
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dell-csi-helm-installer/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ function verify_k8s_versions() {
if [[ ${V} < ${MIN} ]]; then
error=1
found_warning "Kubernetes version ${V} is too old. Minimum required version is: ${MIN}"
found_warning "To ensure the driver is fully supported run cert-csi and make sure all tests pass. More details: https://dell.github.io/csm-docs/docs/cert-csi/"
found_warning "To ensure the driver is fully supported run cert-csi and make sure all tests pass. More details: https://dell.github.io/csm-docs/docs/support/cert-csi/"
fi
check_error error

Expand All @@ -209,7 +209,7 @@ function verify_k8s_versions() {
if [[ ${V} > ${MAX} ]]; then
error=1
found_warning "Kubernetes version ${V} is newer than the version that has been tested. Latest tested version is: ${MAX}"
found_warning "To ensure the driver is fully supported run cert-csi and make sure all tests pass. More details: https://dell.github.io/csm-docs/docs/cert-csi/"
found_warning "To ensure the driver is fully supported run cert-csi and make sure all tests pass. More details: https://dell.github.io/csm-docs/docs/support/cert-csi/"
fi
check_error error

Expand All @@ -233,7 +233,7 @@ function verify_openshift_versions() {
if (( ${V%%.*} < ${MIN%%.*} || ( ${V%%.*} == ${MIN%%.*} && ${V##*.} < ${MIN##*.} ) )) ; then
error=1
found_warning "OpenShift version ${V} is too old. Minimum required version is: ${MIN}"
found_warning "To ensure the driver is fully supported run cert-csi and make sure all tests pass. More details: https://dell.github.io/csm-docs/docs/cert-csi/"
found_warning "To ensure the driver is fully supported run cert-csi and make sure all tests pass. More details: https://dell.github.io/csm-docs/docs/support/cert-csi/"
fi
check_error error

Expand All @@ -244,7 +244,7 @@ function verify_openshift_versions() {
if (( ${V%%.*} > ${MAX%%.*} || ( ${V%%.*} == ${MAX%%.*} && ${V##*.} > ${MAX##*.} ) )) ; then
error=1
found_warning "OpenShift version ${V} is newer than the version that has been tested. Latest tested version is: ${MAX}"
found_warning "To ensure the driver is fully supported run cert-csi and make sure all tests pass. More details: https://dell.github.io/csm-docs/docs/cert-csi/"
found_warning "To ensure the driver is fully supported run cert-csi and make sure all tests pass. More details: https://dell.github.io/csm-docs/docs/support/cert-csi/"
fi
check_error error
}
Expand Down

0 comments on commit 64ad855

Please sign in to comment.