Argo CD - Declarative Continuous Delivery for Kubernetes. For more information https://argoproj.github.io/projects/argo-cd
Questions tagged [argocd]
483 questions
26
votes
8 answers
What is the default password of argocd?
I have installed argocd on aks using below command:
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/master/manifests/install.yaml
Then I change it to load balancer service.
kubectl edit…

uday
- 569
- 1
- 6
- 16
14
votes
2 answers
argocd - stuck at deleting but resources are already deleted
argoproj/argocd:v1.8.7
Have a helm chart (1 with ingress, 1 with deployment/service/cm).
It has sync policies of automated (prune and self-heal). When trying to delete them from the argocd dashboard, they are getting deleted (no more on the k8s…

lorraine batol
- 6,001
- 16
- 55
- 114
10
votes
3 answers
How to deploy helm charts which are stored in AWS ECR using argoCD
I want to deploy helm charts, which are stored in a repository in AWS ECR, in the kubernetes cluster using ArgoCD. But I am getting a 401 unauthorized issue. I have pasted the entire issue below
Unable to create application: application spec is…

Abhishek R
- 101
- 1
- 5
9
votes
1 answer
How to uninstall ArgoCD from Kubernetes cluster?
I've installed ArgoCD on my kubernetes cluster using
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
Now, how to remove it from the cluster totally?

Sparsh Jain
- 641
- 5
- 16
9
votes
2 answers
Argocd getting started guide getting FATA[0000] configmap "argocd-cm" not found error
I just tried to go over the getting started guide of Argocd found here https://argo-cd.readthedocs.io/en/stable/getting_started/.
I did steps 1 and 2 and then ran the command argocd login --core to skip steps 3-5 (as it said in the guide).
when…

gshabi
- 91
- 1
- 2
9
votes
3 answers
ArgoCD tracking subdirectories in a specified path
I'm using ArgoCD and I want to track files under different subdirectories. I've setted the path as ./root_directory, but I would like to track also files in the subdirectories of root_directory. For instance /root_directory/dir1,…

Stewe
- 119
- 1
- 1
- 8
8
votes
4 answers
ArgoCD: transport: Error while dialing dial tcp: lookup argocd-repo-server
I am configuring ArgoCD, and all the pods are Running state like below.
$ kubectl get pods -n argocd -o wide
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS…

Ellisein
- 878
- 6
- 17
8
votes
1 answer
custom environment variable - argocd
There are build environment variables (https://argoproj.github.io/argo-cd/user-guide/build-environment/) so can inject something like $ARGOCD_APP_NAME on the application/helm yaml file and it resolves to the actual value.
Is there a way we can set…

lorraine batol
- 6,001
- 16
- 55
- 114
8
votes
1 answer
json-patch wildcard usage in argocd manifest
Is it possible to replace this
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: elastic-operator
labels:
argocd.application.type: "system"
spec:
ignoreDifferences:
- group: admissionregistration.k8s.io
kind:…

carrotcakeslayer
- 809
- 2
- 9
- 33
7
votes
0 answers
App and environment config in separate repos in GitOps - how to handle config changes?
I've begun a GitOps journey with k8s and argoCD using separate repos for app source and deployment files (manifests, environment config, etc), and I'm trying to figure out, how I would ensure a succesful deployment, if an application source code…

Dynde
- 2,592
- 4
- 33
- 56
7
votes
1 answer
GitOps and database migrations
I'm trying to introduce GitOps in our company. Mostly we have microservices written in Django (However, it could be any other web framework). I have a conceptual problem with the database migrations. Forward migrations are easy: you run them as a…

sacherus
- 1,614
- 2
- 20
- 27
6
votes
2 answers
How do I set helm values (not files) in ArgoCD Application spec
I looked all over the ArgoCD docs for this but somehow I cannot seem to find an answer. I have an application spec like so:
apiVersion: argoproj.io/v1alpha1 …

tubensandwich
- 128
- 1
- 1
- 7
6
votes
1 answer
how to make argocd path to a branch instead of main in the git repo
I have the following:
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: crm
namespace: default
spec:
project: default
source:
repoURL:

pizza_pasta
- 87
- 1
- 7
6
votes
2 answers
ArgoCD & Traefik 2.x: How to configure argocd-server Deployment to run with TLS disabled (where to put --insecure flag)
We have a setup with Traefik as the Ingress Controller / CRD and ArgoCD. We installed ArgoCD into our EKS setup as described in the Argo getting stared guide:
kubectl create namespace argocd
kubectl apply -n argocd -f…

jonashackt
- 12,022
- 5
- 67
- 124
6
votes
1 answer
ArgoCD hooks- running a PreSync hook only when it has changed
We have some database migration jobs that we occationally want to run before deploy a new version of an app. The common approach for this in ArgoCD seems to be to use PreSync hooks, which I have tested and which seems to work, but I'm finding it a…

Cesar
- 2,027
- 2
- 18
- 29