Subindo!!

Ok, vamos subir nosso primeiro Kubernetes?

Minikube

Para fins de estudo, você pode usar o kubernets localmente na sua estação de trabalho. Para isso, utilize o projeto do minikube (Você deve já ter visto isso na seção anterior).

E como iniciar o minikube? Muito simples!!! Veja:

$ minikube start

Exemplo de retorno:

$ minikube start
Starting local Kubernetes v1.10.0 cluster...
Starting VM...
Getting VM IP address...
Moving files into cluster...
Setting up certs...
Connecting to cluster...
Setting up kubeconfig...
Starting cluster components...
Kubectl is now configured to use the cluster.
Loading cached images from config file.

Para verificar o status do cluster, execute o comando:

$ minikube status

Exemplo de retorno:

$ minikube status
minikube: Running
cluster: Running
kubectl: Correctly Configured: pointing to minikube-vm at 192.168.99.100

E para parar o minikube:

$ minikube stop

Exemplo de retorno:

$ minikube stop
Stopping local Kubernetes cluster...
Machine stopped.

Um recurso MUITO útil é o dashboard (web ui) nativo do Kubernetes. No caso do minikube, para iniciar e acessar o dashboard execute:

$ minikube dashboard

Você receberá um retorno parecido com esse:

$ minikube dashboard
Opening kubernetes dashboard in default browser...

No seu browser, será aberto o respectivo dashboard. Será algo semelhante a:

Resumindo

Last updated