Kubernetes set-up on ubuntu on Google compute -
can 1 me understanding error getting while trying set-up kubernetes. trying follow url , run command
$ curl -ss https://get.k8s.io | bash error: (gcloud.components.update) component manager disabled installation
i running command on google compute ubuntu machine. appreciate help
adding complete error ( ubunut 15.4), after full blown google sdk installation ............. unpacking kubernetes release v1.0.3 creating kubernetes on gce... starting cluster using provider: gce ... calling verify-prereqs cannot perform action because component manager has been disabled installation. if latest version of google cloud sdk, please see our main download page at:
https://developers.google.com/cloud/sdk/
error: (gcloud.components.update) component manager disabled installation cannot perform action because component manager has been disabled installation. if latest version of google cloud sdk, please see our main download page at:
https://developers.google.com/cloud/sdk/
error: (gcloud.components.update) component manager disabled installation cannot perform action because component manager has been disabled installation. if latest version of google cloud sdk, please see our main download page at:
https://developers.google.com/cloud/sdk/
error: (gcloud.components.update) component manager disabled installation ... calling kube-up
the problem ubuntu (and others) distro come google cloud sdk installed through local package manager, doesn't contain everything. kubectl example missing seen command:
gcloud components list
when try add needed component kubernetes with:
gcloud components install kubectl
you end error:
error: (gcloud.components.update) component manager disabled installation
it known issue on google cloud sdk issue tracker : issue 336: kubectl not installed google-cloud-sdk debian package, , not installable
unfortunately, provides poor experience first timer testing kubernetes it's hard find quick , clean step step solution.
here one:
sudo apt-get update sudo apt-get remove google-cloud-sdk curl https://sdk.cloud.google.com | bash exec -l $shell gcloud init gcloud components list gcloud components install kubectl gcloud components list
this last command should show kubectl installed , date.
Comments
Post a Comment