You've already forked devops-exercises
Add Datadog and ArgoCD questions
As well as exercises.
This commit is contained in:
15
topics/argo/exercises/argocd_helm_app/exercise.md
Normal file
15
topics/argo/exercises/argocd_helm_app/exercise.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# ArgoCD Helm App
|
||||
|
||||
## Requirements
|
||||
|
||||
1. Running Kubernetes cluster
|
||||
2. ArgoCD installed on the k8s cluster
|
||||
3. Repository of an Helm chart
|
||||
|
||||
## Objectives
|
||||
|
||||
1. Create a new app in ArgoCD that points to the repo of your Helm chart
|
||||
|
||||
## Solution
|
||||
|
||||
Click [here](solution.md) to view the solution
|
||||
23
topics/argo/exercises/argocd_helm_app/solution.md
Normal file
23
topics/argo/exercises/argocd_helm_app/solution.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# ArgoCD Helm App
|
||||
|
||||
## Requirements
|
||||
|
||||
1. Running Kubernetes cluster
|
||||
2. ArgoCD installed on the k8s cluster
|
||||
3. Repository of an Helm chart
|
||||
|
||||
## Objectives
|
||||
|
||||
1. Create a new app in ArgoCD that points to the repo of your Helm chart
|
||||
|
||||
## Solution
|
||||
|
||||
```
|
||||
argocd app create some-app \
|
||||
--project default \
|
||||
--repo https://repo-with-helm-chart
|
||||
--path "./helm" \
|
||||
--sync-policy auto \
|
||||
--dest-namespace default \
|
||||
--dest-server https://kubernetes.cluster
|
||||
```
|
||||
Reference in New Issue
Block a user