shlogg · Early preview
Daniel Pepuho @danielcristho

Setting Up Local Kubernetes With K3D And Deploying Apps With ArgoCD

Setting up a local cluster with K3D & deploying apps with ArgoCD in 4 easy steps: Install K3D, deploy ArgoCD, configure it for your cluster, and verify app deployment.

Intro

ArgoCD is a GitOps tool with a straightforward but powerful objective: to declaratively deploy applications to Kubernetes by managing application resources directly from version control systems, such as Git repositories. Every commit to the repository represents a change, which ArgoCD can apply to the Kubernetes cluster either manually or automatically. This approach ensures that deployment processes are fully controlled through version-controlled files, fostering an explicit and auditable release process.
For example, releasing a new application version involves updating the image tag...