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
Hi Ashley,
Thx for switching to goreleaser :)
I found some issues with the new installation procedure:
export BINARY=kubeconfig-cleanup_1.0.1_Linux_x86_64.tar.gz curl -LO -o cleanup https://github.com/ashleyschuett/kubeconfig-cleanup/releases/download/v1.0.1/$BINARY && \ curl -LO https://raw.githubusercontent.com/ashleyschuett/kubeconfig-cleanup/v1.0.1/plugin.yaml && \ mkdir ~/.kube/plugins/kubeconfig-cleanup && mv cleanup plugin.yaml
error: fork/exec ./cleanup: exec format error
chmod +x
error: fork/exec ./cleanup: permission denied
curl -LO -o
-o
-O
mkdir
-p
mv
mv cleanup plugin.yaml ~/.kube/plugins/kubeconfig-cleanup
Will file PR :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Ashley,
Thx for switching to goreleaser :)
I found some issues with the new installation procedure:
error: fork/exec ./cleanup: exec format error
)chmod +x
), otherwiseerror: fork/exec ./cleanup: permission denied
curl -LO -o
does not work because-o
has no effect here (just remove-O
to fix)mkdir
should use option-p
to not error out when plugins does not exist or when kubeconfig-cleanup already exists (e.g. upgrade)mv
needs a target folder, i.e.mv cleanup plugin.yaml ~/.kube/plugins/kubeconfig-cleanup
Will file PR :)
The text was updated successfully, but these errors were encountered: