From the course: Kubernetes: Microservices

Unlock the full course today

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

Microservices building blocks

Microservices building blocks - Kubernetes Tutorial

From the course: Kubernetes: Microservices

Start my 1-month free trial

Microservices building blocks

- [Instructor] The concerns that we will discuss in this section are ones that happen early in the development cycle and come up for architect when they're designing applications or for developers at build time. Let's dig in. First up, when we talk about codebases, we typically think of source control like GitHub or Perforce. In the container world, these are still important, but we mostly end up relying on container images that might be packaged by a continuous integration system. So if we're going to put this into a workflow, the first step would be to push your code into your source control repo. Next, we'd have an automated build kickoff and build your code and run your appropriate tests. Finally, once everything looks okay, we'll package the code into a container image and push it to a container repository. Docker Hub might be the de facto place to push your images if you're a startup, but larger enterprises might use private repositories, or an internal artifactory. In summary…

Contents