Search⌘ K
AI Features

Summary

Explore the foundational concepts of Kubernetes by deploying an nginx application using a manifest file and kubectl commands. Understand how Kubernetes manages desired states by continuously reconciling actual states to match your configurations, setting the stage for more complex deployments.

We'll cover the following...

Recap

Let’s look back and see what we covered in this chapter.

  1. We created a manifest file called nginx.yaml, saying we wanted to run the nginx docker image.
  2. We sent this manifest to Kubernetes using kubectl.
  3. After we confirmed
...