Complete the command to install ArgoCD in the Kubernetes cluster.
kubectl create namespace [1]The namespace argocd is the default namespace where ArgoCD is installed.
Complete the kubectl command to apply the ArgoCD installation manifest from the official URL.
kubectl apply -n argocd -f [1]The official ArgoCD installation manifest is hosted at the stable branch URL under the argoproj GitHub repository.
Fix the error in the command to get the ArgoCD server service details.
kubectl get svc -n argocd [1]The ArgoCD server service is named argocd-server in the argocd namespace.
Fill both blanks to create an ArgoCD application manifest snippet that syncs from a Git repo.
"apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: guestbook spec: source: repoURL: [1] path: guestbook destination: server: [2] namespace: default"
The repoURL should point to the official ArgoCD example apps repository. The destination.server is the internal Kubernetes API server URL https://kubernetes.default.svc.
Fill both blanks to complete the command to log into ArgoCD CLI with the admin password from the secret.
argocd login localhost:[1] --username admin --password $(kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | [2])
The ArgoCD server usually listens on port 8080 locally. The password is stored base64 encoded in the secret under .data.password and must be decoded with base64 --decode.