Bug Description
The quickstart guide documents the following installation command for KServe v0.17.0 standard mode:
curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-standard-mode-full-install-with-manifests.sh" | bash
This URL returns a 404 because the directory install/v0.17.0/ does not exist in the repository. Only install/v0.17.0-rc0/ and install/v0.17.0-rc1/ exist under the v0.17.0 tag.
Steps to Reproduce
$ curl -s "https://raw.githubusercontent.com/kserve/kserve/refs/tags/v0.17.0/install/v0.17.0/kserve-standard-mode-full-install-with-manifests.sh" | bash
bash: line 1: 404:: command not found
Workaround
The script is available as a release asset and works correctly:
curl -sL "https://github.com/kserve/kserve/releases/download/v0.17.0/kserve-standard-mode-full-install-with-manifests.sh" | bash
Suggested Fix
Update the quickstart guide to point to the release asset URL, similar to the fix in #624.
Related issue: kserve/kserve#5349
Bug Description
The quickstart guide documents the following installation command for KServe v0.17.0 standard mode:
This URL returns a 404 because the directory
install/v0.17.0/does not exist in the repository. Onlyinstall/v0.17.0-rc0/andinstall/v0.17.0-rc1/exist under thev0.17.0tag.Steps to Reproduce
Workaround
The script is available as a release asset and works correctly:
Suggested Fix
Update the quickstart guide to point to the release asset URL, similar to the fix in #624.
Related issue: kserve/kserve#5349