Ok, you’ve run one of the getting started guides and you have successfully turned up a Kubernetes cluster. Now what? This guide will help you get oriented to Kubernetes and running your first containers on the cluster.
From this point onwards, it is assumed that kubectl
is on your path from one of the getting started guides.
The kubectl run
line below will create a Deployment
named my-nginx
, and
two nginx pods listening on port 80. The Deployment
will ensure that there are
always exactly two pod running as specified in its spec.
kubectl run my-nginx --image=nginx --replicas=2 --port=80
Once the pods are created, you can list them to see what is up and running:
kubectl get pods
You can also see the Deployment that was created:
kubectl get deployments
To stop the two replicated containers, delete the Deployment:
kubectl delete deployment my-nginx
On some platforms (for example Google Compute Engine) the kubectl command can integrate with your cloud provider to add a public IP address for the pods, to do this run:
kubectl expose deployment my-nginx --port=80 --type=LoadBalancer
This should print the service that has been created, and map an external IP address to the service. Where to find this external IP address will depend on the environment you run in. For instance, for Google Compute Engine the external IP address is listed as part of the newly created service and can be retrieved by running
kubectl get services
In order to access your nginx landing page, you also have to make sure that traffic from external IPs is allowed. Do this by opening a firewall to allow traffic on port 80.
Most people will eventually want to use declarative configuration files for creating/modifying their applications. A simplified introduction is given in a different document.