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.
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 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
.
ls -1 helm/templates
The output is as follows.
devops-paradox.yamldevops-toolkit.yaml
From the names, we can probably guess that those two files define two applications. Let’s take a look at one of those.
cat helm/templates/devops-toolkit.yaml
The output is as follows.
apiVersion: argoproj.io/v1alpha1kind: Applicationmetadata:name: devops-toolkitnamespace: argocdfinalizers:- resources-finalizer.argocd.argoproj.iospec:project: productionsource:path: helmrepoURL: https://github.com/vfarcic/devops-toolkit.gittargetRevision: HEADhelm:values: |image:tag: latestingress:host: devopstoolkitseries.comversion: v3destination:namespace: productionserver: https://kubernetes.default.svcsyncPolicy:automated:selfHeal: trueprune: true
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 ...