Deploy the Applications
Learn how to deploy applications in the namespaces.
We'll cover the following...
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.
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 follows.
Chart.yamltemplates
View the files
At first glance, this looks like a typical minimalistic Helm chart. Actually, it doesn't look like that. It's a Helm chart. What makes it “special” are the resources defined in the templates.
The output is as follows.
From the names, we can probably guess that those two files define two applications. Let’s take a look at one of those.
The output is as follows.
Note: We'll get hands-on experience with the concepts and commands discussed in this lesson in the project "Hands-on: Deploying Applications Using GitOps Principles" right after this chapter.
The definition is accomplishing a similar objective as the argocd app create command we ...