Questions tagged [argocd]

Argo CD - Declarative Continuous Delivery for Kubernetes. For more information https://argoproj.github.io/projects/argo-cd

483 questions
3
votes
1 answer

ArgoCD with Sealed Secrets and Kustomize

I am trying to configure Bitnami SealedSecrets with ArgoCD and Kustomize. I have managed to encrypt the secrets using the kubeseal CLI, these are already deployed on the Kubernetes cluster as Sealed secrets and can be unsealed by the Sealed Secret…
Attila
  • 3,206
  • 2
  • 31
  • 44
3
votes
0 answers

How to debug slow argocd refreshing

On K8S 1.19 , argoCD 2.1.1, on-premise. We see very long refresh / reconcilation operations. How to debug this to find the issue? CPU/Memory usage is fine git sub modules are disabled 150 argocd applications git projects hosted on the same…
Thomas Decaux
  • 21,738
  • 2
  • 113
  • 124
3
votes
0 answers

What is the default ArgoCD ignored differences

I need to know the ArgoCD list of changes in k8s object yamls that is by default ignored - meaning that, when this k8s key:value is changed in yaml the argocd will remain synced.
Edcel Cabrera Vista
  • 1,087
  • 1
  • 9
  • 29
3
votes
2 answers

Can't change Helm zookeeper's storageClass in Sentry charts values.yaml

We want to use Sentry for error logging (on-prem for our use case) but since we use k8s for everything we chose the Sentry Kubernetes charts. We are using a cloud provider where leaving the storageClass for PVC blank/empty does not create PVCs and…
tech4242
  • 2,348
  • 2
  • 23
  • 33
3
votes
1 answer

Argo Workflow Stuck in Progressing

I've created a test Argo Workflow to help me understand how I can CI/CD approach to deploy an Ansible Playbook. When I create the app in Argo CD, it syncs fine, but then it just gets stuck on Progressing and never gets out of that state. I tried…
xil3
  • 16,305
  • 8
  • 63
  • 97
3
votes
1 answer

argo-cd how to test configuration in a "development" cluster before going live

I have a single argocd repository which contains all the configuration for the Kubernetes cluster. Now I want to work with PRs and only want to merge things which were tested on our continuous integration system before they can be merged. To do so,…
lony
  • 6,733
  • 11
  • 60
  • 92
3
votes
0 answers

ArgoCD use sha short as docker tag

In my project, the docker images are getting tagged with git commit short sha. When the deployment gets triggered via argocd, how can I instruct it to take the latest commit and use it as an image tag while deployment?
razortech
  • 63
  • 3
3
votes
2 answers

kustomize: how to pass `newTag` as Label

I am using https://kustomize.io/ have below is my kustomization.yaml file, I would like to pass newTag image version to labels on deployment.yaml when i use ArgoCD to apply this file. Does anyone have any idea without using shell script to sed the…
エック
  • 65
  • 2
  • 7
3
votes
1 answer

How to login to ArgoCD CLI non-interactive in CI like GitHub Actions?

We have a full-blown setup using AWS EKS with Tekton installed and want to use ArgoCD for application deployment. As the docs state we installed ArgoCD on EKS in GitHub Actions with: - name: Install ArgoCD run: | echo "--- Create argo…
jonashackt
  • 12,022
  • 5
  • 67
  • 124
3
votes
0 answers

ArgoCD with Terraform to delete all applications when deleting the namespace argocd

I am installing argocd into my Kubernetes clusters with helm in Terraform like so: resource "kubernetes_namespace" "ns_argocd" { metadata { annotations = { name = "argocd" } name = "argocd" } } resource "helm_release" "argocd"…
everspader
  • 1,272
  • 14
  • 44
3
votes
1 answer

ArgoCD app-of-apps create the child app but doesn't deploy the manifests inside the app

I want to use the App-of-apps practice with ArgoCD. So I created a simple folder structure like the one below. Then I created a project called dev and I created an app that will look inside the folder apps, so when new Application manifests are…
everspader
  • 1,272
  • 14
  • 44
3
votes
1 answer

argocd cli json output

I'm trying to make argocd cli output yaml/json to prep it for script ingestion. According to this PR: https://github.com/argoproj/argo-cd/pull/2551 It should be available but I can't find the option in cli help nor in documentation. #argocd version:…
Vano
  • 1,416
  • 1
  • 13
  • 26
3
votes
1 answer

Starting/Stopping applications in ArgoCD

How to Stop/Start application deployed in the ArgoCD? I see only Delete or Sync or deploy/redeploy options. I got running server applications and I'd like to stop (shutdown) temporarily their functionality in the cluster. Or I'm missing something in…
3
votes
1 answer

Kubernetes VolumeMount Path contains Timestamp

I'm using the following tech: helm argocd k8s I created a secret: ╰ kubectl create secret generic my-secret --from-file=my-secret=/Users/superduper/project/src/main/resources/config-file.json --dry-run=client -o yaml apiVersion: v1 data: …
j will
  • 3,747
  • 11
  • 41
  • 64
3
votes
2 answers

How to "reuse" randomly generated passwords in Helm and ArgoCD?

I'm using ArgoCD to manage my app deployments. My apps are Helm charts and I'm using "randAlphaNum" to generate a random password. Unfortunately a new password is generated each time I'm syncing my app. So I was trying to use something like…
Nrgyzer
  • 783
  • 1
  • 14
  • 38