Last active
March 20, 2019 22:14
-
-
Save gwthm-in/f1d7d2c639d226d614e1f59106838f71 to your computer and use it in GitHub Desktop.
Deploying Weaver to Kubernetes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ minikube start | |
There is a newer version of minikube available (v0.34.1). Download it here: | |
https://github.com/kubernetes/minikube/releases/tag/v0.34.1 | |
To disable this notification, run the following: | |
minikube config set WantUpdateNotification false | |
Starting local Kubernetes v1.13.2 cluster... | |
Starting VM... | |
Getting VM IP address... | |
Moving files into cluster... | |
Setting up certs... | |
Connecting to cluster... | |
Setting up kubeconfig... | |
Stopping extra container runtimes... | |
Machine exists, restarting cluster components... | |
Verifying kubelet health ... | |
Verifying apiserver health .... | |
Kubectl is now configured to use the cluster. | |
Loading cached images from config file. | |
Everything looks great. Please enjoy minikube! | |
# Check status to ensure that everthing is good | |
$ minikube status | |
host: Running | |
kubelet: Running | |
apiserver: Running | |
kubectl: Correctly Configured: pointing to minikube-vm at 192.168.99.106 | |
# Installing helm and tiller | |
> helm init | |
$HELM_HOME has been configured at /Users/GowthamSai/.helm. | |
Warning: Tiller is already installed in the cluster. | |
(Use --client-only to suppress this message, or --upgrade to upgrade Tiller to the current version.) | |
Happy Helming! | |
$ minikube dashboard | |
Enabling dashboard ... | |
Verifying dashboard health ... | |
Launching proxy ... | |
Verifying proxy health ... | |
Opening http://127.0.0.1:53927/api/v1/namespaces/kube-system/services/http:kubernetes-dashboard:/proxy/ in your default browser... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment