Difference between revisions of "Accessing a Kubernetes cluster"

From MyWiki
Jump to: navigation, search
Line 4: Line 4:
 
* curl with the right credentials to access the cluster via APIs
 
* curl with the right credentials to access the cluster via APIs
  
$ minikube dashboard
+
$ kubectl config view <br>
 +
$ kubectl cluster-info <br>
 +
$ kubectl cluster-info dump <br>
 +
 
 +
 
 +
$ minikube dashboard <br>

Revision as of 22:05, 21 September 2019

We access a Kubernetes cluster by three methods:

  • kubectl, the CLI tool
  • Kubernetes Dashboard
  • curl with the right credentials to access the cluster via APIs

$ kubectl config view
$ kubectl cluster-info
$ kubectl cluster-info dump


$ minikube dashboard