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
i got error with verify-kube-binaries:
"... Starting cluster using provider: vagrant
... calling verify-prereqs
Skeleton Provider: verify-prereqs not implemented
... calling verify-kube-binaries
./cluster/kube-up.sh: line 65: verify-kube-binaries: command not found"
Also i got this problem with run:
"export KUBERNETES_PROVIDER=vagrant
curl -sS https://get.k8s.io | bash"
After that i`m try run v1.9.8 and got success with same command.
What you expected to happen:
Run k8s local in vagrant
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
Environment:
Kubernetes version (use kubectl version):
v1.10.3
Cloud provider or hardware configuration:
MacBook pro
OS (e.g. from /etc/os-release):
Kernel (e.g. uname -a):
Install tools:
Others:
The text was updated successfully, but these errors were encountered:
@duke66: There are no sig labels on this issue. Please add a sig label.
A sig label can be added by either:
mentioning a sig: @kubernetes/sig-<group-name>-<group-suffix>
e.g., @kubernetes/sig-contributor-experience-<group-suffix> to notify the contributor experience sig, OR
specifying the label manually: /sig <group-name>
e.g., /sig scalability to apply the sig/scalability label
Note: Method 1 will trigger an email to the group. See the group list.
The <group-suffix> in method 1 has to be replaced with one of these: bugs, feature-requests, pr-reviews, test-failures, proposals
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.
After a deep dive into the code of this repository, I realized that verify-kube-binaries is missing function which currently exists in ./cluster/common.sh.
solution:
# combine two scripts in one
cat cluster/common.sh cluster/kube-up.sh > cluster/kube-up-fixed.sh
# grant exec permission for the user owner
chmod u+x ./cluster/kube-up-fixed.sh
#Enjoy
chmod +x ./cluster/kube-up-fixed.sh
Is this a BUG REPORT or FEATURE REQUEST?:
/kind bug
What happened:
I am try to install kubernetes in vagrant local at macbook:
download https://github.com/kubernetes/kubernetes/releases/tag/v1.10.3 this and try to run:
KUBERNETES_PROVIDER=vagrant kubernetes/cluster/kube-up.sh
i got error with verify-kube-binaries:
"... Starting cluster using provider: vagrant
... calling verify-prereqs
Skeleton Provider: verify-prereqs not implemented
... calling verify-kube-binaries
./cluster/kube-up.sh: line 65: verify-kube-binaries: command not found"
Also i got this problem with run:
"export KUBERNETES_PROVIDER=vagrant
curl -sS https://get.k8s.io | bash"
After that i`m try run v1.9.8 and got success with same command.
What you expected to happen:
Run k8s local in vagrant
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
Environment:
kubectl version
):v1.10.3
MacBook pro
uname -a
):The text was updated successfully, but these errors were encountered: