Closed uriyay closed 4 months ago
/kind support
The Kubernetes project currently lacks enough contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle rotten
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs.
This bot triages issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/reopen
/remove-lifecycle rotten
Please send feedback to sig-contributor-experience at kubernetes/community.
/close not-planned
@k8s-triage-robot: Closing this issue, marking it as "Not Planned".
Had the same issue as this When I tried to run:
kubectl krew install sniff
Digging into it, I saw that it tries to run:
git config --get remote.origin.url
from the folder %USERPROFILE%.krew\index\default. But since it was cloned by admin and not a regular user it returned nothing, and when I rangit remote -v
I got:Solved it by deleting %USERPROFILE%.krew\index\default and cloning it from a non admin user by:
git clone https://github.com/kubernetes-sigs/krew-index.git %USERPROFILE%\.krew\index\default
That solved this specific error, but later I got another error:
So I ran it with admin and it worked.
So I think that in the Windows section in the install guide there should be a guidance that
kubectl krew install <plugin>
should be done also by an admin user.