How does Kubernetes and cloud deployment work?

Опубликовано: 21 Июль 2026
на канале: Video Developer
199
9

How kubernetes work and how does cloud deployment work? Today we have infrastructure as code meaning, we are in a declarative environment where we specify what resources we need and how those interact together. So how does that all work? How does Kubernetes then know up to put our application up and running? So basically works by API objects and resources that are defined in yaml/json in kubernetes files, and these can be definitions of the resources needed a container, the commands needed to execute the app in that container or the ports needed to be open in order for the users to connect to it. These files define for example an application namespace (where all the components pertaining to an application will live) that a set of resources belongs to. Apps are deployed in a continuous integration pattern where a modification to the code starts a process rebuilding the application or running the unit tests, then increasing the current version of the application in an infracode repository which specifies the k8s objects and resources and then deploys, again via ci/cd on a k8s cluster in cloud or on premises. Read full article here: https://videodeveloper.io/how-does-ku...