Search⌘ K
AI Features

Deploy the Applications

Explore how to deploy applications following GitOps principles using Argo CD and Helm charts. Understand namespace setup, application manifests, automated sync policies, and self-healing features to maintain desired states in Kubernetes. Gain practical knowledge for managing production deployments effectively.

Create the production namespace

Now that we've established we’ll allow the apps in the Argo CD production project to be deployed to the production namespace, we should probably create it.

Shell
kubectl create namespace production

Next, let’s take a look at the manifests that will define our applications. They're located in the helm directory.

ls -1 helm

The output is as ...

Chart.yaml
templates
Files in the helm directory

View

...