CKA EXAM QS-10 2025
- Ingress now
- Oct 20
- 1 min read
Question 10:
Install argo CD in the cluster by performing the following tasks.
Add the official Argo CD Helm repository with the name argo.
The Argo CD CRD's have already been pre-installed in the cluster.
Generate a template of the Argo CD helm chart version 7.7.3 for the argocd namespace and save it to ~/argo-helm.yaml.
configure the chart to not install CRDS Install Argo CD using helm with release name argocd using the same version and configuration as used in the template 7.7.3. Install it in the argocd namespace and configure it to not install CRDS. You do not need to configure access to the Argo CD server UI. ====================================================
# 1. Create the namespace (if not already present)
kubectl get ns argocd || kubectl create namespace argocd
# 2. Add and update the Helm repo
helm repo add argo https://argoproj.github.io/argo-helm
helm repo update
# 3. Generate a rendered template (YAML output) of Argo CD v7.7.3 and save it
helm template argo/argo-cd --version 7.7.3 --set crds.install=false -n argocd > ~/argo-helm.yaml
# 4. Install Argo CD with Helm (release name = argocd)
# Use same version and disable CRD installation
helm install argocd argo/argo-cd --version 7.7.3 --set crds.install=false -n argocd
# 5. Verify pods
kubectl get pods -n argocd
Trick 1: Common Helm repo URLs ni gurtu pettuko
Tool | Official Helm Repo URL | Command |
Argo CD | helm repo add argo https://argoproj.github.io/argo-helm | |
Prometheus | helm repo add prometheus https://prometheus-community.github.io/helm-charts | |
Grafana | helm repo add grafana https://grafana.github.io/helm-charts | |
Nginx Ingress | helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx | |
Bitnami (many apps) | helm repo add bitnami https://charts.bitnami.com/bitnami | |
Cert-Manager | helm repo add jetstack https://charts.jetstack.io |




Comments