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

Corrected broken hyperlinks #260

Merged
merged 1 commit into from
May 14, 2024
Merged
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
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