From the course: Cloud Native Development with Node.js, Docker, and Kubernetes

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Deploy to Kubernetes

Deploy to Kubernetes

From the course: Cloud Native Development with Node.js, Docker, and Kubernetes

Start my 1-month free trial

Deploy to Kubernetes

- [Instructor] In the previous video we added a helm chart to our application, and we took the values.yaml file and edited it to add a repository of seabaylea/node server, which is the name of our docker image, along with a tag of 1.0.0, which is the tag that we gave it. This has now setup all of the configuration that Kubernetes needs in order to be able to deploy our application and run it. Now to do that we're going to use the Heml CLI. We're going to first go into our project directory, and then we're going to use helm with the install command. Now the helm install command also provides a --name option, and we can use this to name our deployment. So we're going to go ahead and call that node server. We then point it at our chart. And then we can hit enter. This is now going to take our docker image and deploy it to Kubernetes and start everything running. To see the status of our deployment we can use helm status and use the name of our deployment which was node server. This now…

Contents