argocd - Dynamically set targetRevision - Stack Overflow │ └── argocd-configs yml <------ my appset is in here | └── unittests I have setup my AppSet to look into the subfolders of instances and deploy each of the Apps: apiVersion: argoproj io v1alpha1 kind: ApplicationSet metadata: name: appset namespace: argocd spec: generators: - git: directories: - path: instances dev * repoURL: *REPO*
argocd - restart deployment using dashboard UI - Stack Overflow I know that we can use the argocd cli to restart the deployment by using this command argocd app actions run my-app restart --kind Deployment --all Is there any way to use the ArgoCD dashboard to
What is the default password of argocd? - Stack Overflow kubectl -n argocd scale deployment argocd-server --replicas=0 once scaled-down, make sure to scale back up and wait a few minutes before kubectl -n argocd scale deployment argocd-server --replicas=1 New password of the ArgoCD will be your api-server pod name with the numbers at the end name (kubectl -n argocd get po >> to find pod name) i e login:
ArgoCD - what need be done after build a new image Now, developers will update the codes, after commit changes, a gitlab pipeline automatically runs and build a new image and override to tag latest with other tags and push to private docker registry So what's the next step in ArgoCD? How argocd know the application is changed, and need be redeployed, and the image:latest need be pull again?
How to manage dependencies with ArgoCD? - Stack Overflow How can I manage dependencies of my pods when deploying with ArgoCD? Why do I need this? I want to make sure, that first pod A is deployed and running successfully before pod B is deployed Flux of