Questions tagged [argocd]

Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.

12 questions
4
votes
1 answer

Why does argocd keep re-syncing my Job?

I'm deploying an application using ArgoCD. The deployment manifests include a Job that performs some one-time initialization for the application. The Job resource looks like this: apiVersion: batch/v1 kind: Job metadata: labels: …
larsks
  • 47,453
1
vote
0 answers

ArgoCD RBAC granular permissions to rollback application

I have several applications on a Kubernetes cluster deployed using ArgoCD. One role needs to be able, among other things, to rollback a given application. I know that the line p, role:default, applications, update, */*, allow grants the rollback…
1
vote
1 answer

How to prevent orphan objects in argoCD apps?

In my configuration app folder I have 2 manifests: deployment.yaml and service.yaml. The argoCD app works fine, but at every update it creates a new replicaset, with a new pod and when the new pod is healthy, the old one dies. The problem is that…
1endell
  • 13
1
vote
2 answers

Unable to Access ArgoCD Web UI - Connection Issue

I'm having trouble accessing the ArgoCD web UI, and I'm seeking assistance to troubleshoot the issue. Here are the details: Problem Description: I have successfully installed ArgoCD on my Kubernetes cluster using Minikube. The ArgoCD server appears…
COMIX MASTER
  • 21
  • 1
  • 4
1
vote
2 answers

Serving ArgoCD behind Traefik in Kubernetes

I would like to run ArgoCD behind Traefik such that I can both access the ArgoCD web ui and interact with the API using the argocd command line tool. I have deployed ArgoCD into a Kubernetes cluster from the upstream manifests. I have deployed…
larsks
  • 47,453
0
votes
1 answer

RABBITMQ ArgoCD restart issue

I deployed rabbitmq in kubernetes using helm and argocd. Whenever there is any sync it is restarting. Is there any way to curb this behavior and I can manage it with argo without restarts.
0
votes
0 answers

How to best define in ArgoCD reusable ClusterRole for different namespaces and jobs?

I have the same Job as a bash script that needs to check for multiple different applications that need storage whether storage application is running already. What would be the best-practice be, with security in mind? This is my approach with an…
0
votes
0 answers

ArgoCD Kubernet set up for external access

I have 2 machines: My laptop (IP: 192.168.1.20) My home server (IP: 192.168.1.21) I installed ArgoCD and minikube on my home server and the installation was successful. When I use the forward command defined in the official document: kubectl…
Redplane
  • 101
0
votes
1 answer

How can I ensure that the deployment "foo" does not have the annotation "bar"?

How can I ensure that the deployment "foo" does not have the annotation "bar"? I want to define this in a manifest so that Flux enforces my desired state. Is that possible with the current Kubernetes Resource Model?
guettli
  • 3,811
0
votes
1 answer

argo applicationset conditional template for namespace

currently I have an application set using git generator that defines the destination namespace as: destination: server: https://kubernetes.default.svc namespace: '{{index .path.segments 1}}' That works fine, and all subdirectories in the…
Jose
  • 21
0
votes
1 answer

How can I determine the resource responsible for a specific APIService?

I'm new to k8s, so please forgive me if I use some definitions incorrectly. Every k8s cluster has a set of APIs available, some of which are part of k8s itself ("core", or "built-in"), but some of which are external or third-party. I would like to…
0
votes
0 answers

Cannot add cluster configuration for ArgoCD for Rancher kubernetes cluster

I have tried to add a Rancher kubernetes cluster in ArgoCD, but I get the following error from the ArgoCD CLI: ./argocd-linux-amd64 cluster add test01 --server=localhost:8080 --insecure WARNING: This will create a service account `argocd-manager` on…