We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using .kubectl_version or .helm_version, the manager should install the binary version when detecting that's not installed.
.kubectl_version
.helm_version
The text was updated successfully, but these errors were encountered:
@alexppg at least for helm, I use the following script to add this behavior:
#! /usr/bin/env bash if [[ -f ".helm_version" ]]; then helmenv install "$(cat .helm_version)" helmenv use "$(cat .helm_version)" fi exec helm-wrapper "$@"
Just install the script above as /usr/local/bin/helm and left helm-wrapper and helmenv in the path.
/usr/local/bin/helm
helm-wrapper
helmenv
Sorry, something went wrong.
No branches or pull requests
When using
.kubectl_version
or.helm_version
, the manager should install the binary version when detecting that's not installed.The text was updated successfully, but these errors were encountered: