From the course: Kubernetes: GitOps with ArgoCD
Unlock the full course today
Join today to access over 24,700 courses taught by industry experts.
Argo CD for continuous integration of infrastructure
From the course: Kubernetes: GitOps with ArgoCD
Argo CD for continuous integration of infrastructure
- Let's see how Argo CD works to give us continuous integration and continuous delivery of infrastructure. Here is a big picture overview. This overview gives us both the code pipeline, as well as the infrastructure automation pipeline. A developer writes code and then commits this code to see a git repository. A continuous integration pipeline picks up the changes that the developer makes and runs automated tests and builds images, which contain the final application. These images are typically stored in an image repository, such as Docker hub or the container registries of cloud platforms. Now the same developer or a release engineer will update the configuration that correspond to your infrastructure specification. A continuous integration pipeline can now be run on our infra as code specifications. Argo CD will be responsible for this continuous integration pipeline and all of your Kubernetes manifest specifications,…