You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the kube-score packages name include the version number : kube-score_1.13.0_linux_amd64.tar.gz
The problem is that including the version number is the package's name, deny the user from downloading the latest version without knowing the actual latest version number.
The current syntax is not convenient for automation tools downloading automatically the last version (needs to GREP the latest version).
My proposal is to rename the package with a generic name like kube-score_linux_amd64.tar.gz instead of kube-score_<version-number>_linux_amd64.tar.gz as it is practiced on other Github repositories, to be able to fetch the latest version without having to know the latest version number.
That would really improve automation processes using this tool.
The text was updated successfully, but these errors were encountered:
Currently the kube-score packages name include the version number :
kube-score_1.13.0_linux_amd64.tar.gz
The problem is that including the version number is the package's name, deny the user from downloading the latest version without knowing the actual latest version number.
Impossible to download with this kind of syntax :
Instead, we must use this syntax :
The current syntax is not convenient for automation tools downloading automatically the last version (needs to GREP the latest version).
My proposal is to rename the package with a generic name like
kube-score_linux_amd64.tar.gz
instead ofkube-score_<version-number>_linux_amd64.tar.gz
as it is practiced on other Github repositories, to be able to fetch the latest version without having to know the latest version number.That would really improve automation processes using this tool.
The text was updated successfully, but these errors were encountered: