top of page
Search

CKA EXAM QS-10 2025

Question 10:

Install argo CD in the cluster by performing the following tasks.


  1. Add the official Argo CD Helm repository with the name argo.


  1. The Argo CD CRD's have already been pre-installed in the cluster.

  2. Generate a template of the Argo CD helm chart version 7.7.3 for the argocd namespace and save it to ~/argo-helm.yaml.

  3. 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 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


 
 
 

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page