Deploy to Kubernetes
Prerequisites
- Download and install Docker Desktop as described in Get Docker.
- Work through containerizing an application in Part 2.
- Make sure that Kubernetes is turned on in Docker Desktop: If Kubernetes isn't running, follow the instructions in Orchestration to finish setting it up.
Introduction
Now that you've demonstrated that the individual components of your application run as stand-alone containers, it's time to arrange for them to be managed by an orchestrator like Kubernetes. Kubernetes provides many tools for scaling, networking, securing and maintaining your containerized applications, above and beyond the abilities of containers themselves.
In order to validate that your containerized application works well on Kubernetes, you'll use Docker Desktop's built in Kubernetes environment right on your development machine to deploy your application, before handing it off to run on a full Kubernetes cluster in production. The Kubernetes environment created by Docker Desktop is fully featured, meaning it has all the Kubernetes features your app will enjoy on a real cluster, accessible from the convenience of your development machine.
Describing apps using Kubernetes YAML
All containers in Kubernetes are scheduled as pods, which are groups of co-located containers that share some resources. Furthermore, in a realistic application you almost never create individual pods. Instead, most of your workloads are scheduled as deployments, which are scalable groups of pods maintained automatically by Kubernetes. Lastly, all Kubernetes objects can and should be described in manifests called Kubernetes YAML files. These YAML files describe all the components and configurations of your Kubernetes app, and can be used to create and destroy your app in any Kubernetes environment.
You already wrote a basic Kubernetes YAML file in the Orchestration overview part of this tutorial. Now, you can write a slightly more sophisticated YAML file to run and manage your Todo app, the container getting-started
image created in
Part 2 of the Quickstart tutorial. Place the following in a file called bb.yaml
:
apiVersion: apps/v1
kind: Deployment
metadata:
name: bb-demo
namespace: default
spec:
replicas: 1
selector:
matchLabels:
bb: web
template:
metadata:
labels:
bb: web
spec:
containers:
- name: bb-site
image: getting-started
imagePullPolicy: Never
---
apiVersion: v1
kind: Service
metadata:
name: bb-entrypoint
namespace: default
spec:
type: NodePort
selector:
bb: web
ports:
- port: 3000
targetPort: 3000
nodePort: 30001
In this Kubernetes YAML file, there are two objects, separated by the ---
:
- A
Deployment
, describing a scalable group of identical pods. In this case, you'll get just onereplica
, or copy of your pod, and that pod (which is described under thetemplate:
key) has just one container in it, based off of yourgetting-started
image from the previous step in this tutorial. - A
NodePort
service, which will route traffic from port 30001 on your host to port 3000 inside the pods it routes to, allowing you to reach your Todo app from the network.
Also, notice that while Kubernetes YAML can appear long and complicated at first, it almost always follows the same pattern:
- The
apiVersion
, which indicates the Kubernetes API that parses this object - The
kind
indicating what sort of object this is - Some
metadata
applying things like names to your objects - The
spec
specifying all the parameters and configurations of your object.
Deploy and check your application
In a terminal, navigate to where you created
bb.yaml
and deploy your application to Kubernetes:$ kubectl apply -f bb.yaml
You should see output that looks like the following, indicating your Kubernetes objects were created successfully:
deployment.apps/bb-demo created service/bb-entrypoint created
Make sure everything worked by listing your deployments:
$ kubectl get deployments
if all is well, your deployment should be listed as follows:
NAME READY UP-TO-DATE AVAILABLE AGE bb-demo 1/1 1 1 40s
This indicates all one of the pods you asked for in your YAML are up and running. Do the same check for your services:
$ kubectl get services NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE bb-entrypoint NodePort 10.106.145.116 <none> 3000:30001/TCP 53s kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 138d
In addition to the default
kubernetes
service, we see ourbb-entrypoint
service, accepting traffic on port 30001/TCP.Open a browser and visit your Todo app at
localhost:30001
. You should see your Todo application, the same as when you ran it as a stand-alone container in Part 2 of the tutorial.Once satisfied, tear down your application:
$ kubectl delete -f bb.yaml
Conclusion
At this point, you have successfully used Docker Desktop to deploy your application to a fully-featured Kubernetes environment on your development machine. You can now add other components to your app and taking advantage of all the features and power of Kubernetes, right on your own machine.
In addition to deploying to Kubernetes, you have also described your application as a Kubernetes YAML file. This simple text file contains everything you need to create your application in a running state. You can check it in to version control and share it with your colleagues. This let you distribute your applications to other clusters (like the testing and production clusters that probably come after your development environments).
Kubernetes references
Further documentation for all new Kubernetes objects used in this article are available here: