copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
How to trigger argo workflow from an API request? Use Argo Events Argo Events is a separate but closely-related project It can accept a variety of inputs (webhooks, pub sub messages, etc) and then trigger a Workflow Argo Events could make sense if, for example, you want an external record of all the workflows submitted Pub sub would give you that record Use the Kubernetes API or CLI
ArgoCD Ingress Kubernetes Too Many Redirects even With --insecure . . . A common solution when installing ArgoCD to solve that properly is adding the --insecure flag to true for the configmap yaml to populate the environment variables used by argo-server: apiVersion: v1 kind: ConfigMap metadata: labels: app kubernetes io name: argocd-cmd-params-cm app kubernetes io part-of: argocd name: argocd-cmd-params-cm data: server insecure: "true" # <-- this line need to be
Argo workflow stuck in pending due to liveness probe fail? My argo workflow ends up getting stuck in the pending state I say this because I check my orderer and peer logs but I see no movement in their logs I referenced Argo sample workflows stuck in the pending state and I start with getting the argo logs:
Argo-workflows install and run in specific namespace I am trying to solve a scenario where argo-cd is installed cluster-wide, and we have to install the argo-workflows application within a separate namespace Let's say team-1 has a namespace team-one
Getting a value from a ConfigMap in my Argo Workflow If I use item data bucket_url or item data['bucket_url'], it doesn't work and I get errors from Argo I tried to manipulate the output using sprig but I wasn't able to find a solution Basically I'm trying to fetch bucket_url to use in another template within this workflow Reproduce the issue yourself Run your Argo server Create a Workflow
How to uninstall ArgoCD from Kubernetes cluster? In my case, I wanted to delete argo support for one specific project, but not just remove argo completely Argo manages what is called rollouts You can use the following to see the list of rollouts and then delete them to get rid of one specific set of pods $ kubectl --context some-ctxt --namespace some-ns get rollouts NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE some-nm 6 338d As you can
Argo workflows template: using variable for name in valueFrom So I try to get the value from a configMap as input to a template in a Argo workflow template I want to use a variable in the name attribute, see example apiVersion: argoproj io v1alpha1 kind:
Argocd application resource stuck at deletion - Stack Overflow If your problem is that the namespace cannot be deleted, the following two solutions may help you: Check what resources are stuck in the deletion process, delete these resources, and then delete ns Edit the namespace of argocd, check if there is a finalizer field in the spec, delete that field and the content of the field Hopefully it helped you
argoproj - Trigger Argo Workflow with webhook - Stack Overflow I have a use case where I want to trigger a argo workflow when github push events occur So far from what I understand the following would be the steps of my approach, Create Github webhook and then