Questions tagged [argoproj]

Argoproj is a collection of tools that provide workflows and events for Kubernetes

Argoproj is a collection of tools for getting work done with Kubernetes:

  • Argo Workflows - Container-native Workflow Engine
  • Argo CD - Declarative GitOps Continuous Delivery
  • Argo Events - Event-based Dependency Manager
  • Argo CI - Simple CI based on GitHUb and Argo Workflows
96 questions
1
vote
2 answers

argo env parameters and inheritance

I wasn't really sure how to label this question, because i'll be good with any of the solutions above (inheritance of containers or defining parameters for the entire workflow without explicitly setting them in each step template). i am currently…
liormayn
  • 203
  • 3
  • 12
1
vote
1 answer

What is the best way to pass git config to argocd

I am running a argocd command argocd repo add https://gitlab..com/.git I get error and is known one. Now, to avoid this, I have o set ~/.gitconfig in argocd kubernetes pod as follows [http "https://gitlab..com"] proxy =…
Sanket Lad
  • 351
  • 1
  • 5
  • 15
1
vote
1 answer

Referencing output of previous step fails - why?

I'd like to reference the output of a previous step. But for some reason I get an error: 2021/03/09 16:39:35 Failed to create workflow template: templates.main.steps[1].s2 templates.s2-tmp: failed to resolve…
Raffael
  • 19,547
  • 15
  • 82
  • 160
1
vote
1 answer

Unable to install argo workflow cron as a helm chart

I wanted to install an argo workflow template and workflow cron job as a helm chart. helm install command says the chart is installed. But I see only workflow template got deployed and cron job isnt. Folder structure: Argo_helm |- templates …
saranya elumalai
  • 429
  • 2
  • 5
  • 14
1
vote
0 answers

Does Argo CronWorkflow support prometheus metrics?

I'm configuring a CronWorkflow and I'm having issues defining custom prometheus metrics. Running the argo cron lint command, it fails to parse the yaml because of the metrics field failed to parse: error unmarshaling JSON: while decoding JSON: json:…
1
vote
2 answers

How to update Argo CLI?

I want to use Argo v2.4.0 and I ran the following command: oc apply -n -f https://raw.githubusercontent.com/argoproj/argo/v2.4.0/manifests/install.yaml This did not change the output of argo version (v2.3.0) notibly because it is installing…
Aviral Srivastava
  • 4,058
  • 8
  • 29
  • 81
1
vote
1 answer

Mark Argo workflow step as skipped based on the step's own output

I know that I can refer the output of previous steps to skip another step. Is it possible in argo to mark a step as skipped based on its output? I am looking for something like this. This would not work but what would be an alternative? steps: - -…
lueenavarro
  • 528
  • 10
  • 20
1
vote
1 answer

How do you manually release a mutex for an argo workflow?

I have an argo workflow with a mutex e.g. kind: Workflow metadata: generateName: synchronization-wf-level- spec: entrypoint: whalesay synchronization: mutex: name: test templates: - name: whalesay container: …
user3893988
  • 330
  • 3
  • 6
1
vote
2 answers

Can argo be used without cluster-admin role?

We are users of a distributed multi-institution cluster who want to use Argo to facilitate workflows. We have a namespace in that cluster under which we create our jobs, which we currently do through kubectl. We do not have cluster-admin role, as…
David Parks
  • 30,789
  • 47
  • 185
  • 328
1
vote
1 answer

Can I get ingress live manifest information with ArgoCD CLI?

Can I get ingress live manifest information with ArgoCD CLI? How can I get this information in this picture info?
wonny
  • 11
  • 1
1
vote
0 answers

What Metrics Providers can be used with ArgoCD except Prometheus?

I'm trying to use AnalysisTemplate for Canary promotion and curious about may i use Stackdriver or Istio or Anthos as metric providers? Only Prometheus is mentioned in Official Documentation.
1
vote
1 answer

Argo artifact passing cant save output

I am trying to run the artifact passing example on Argoproj. However, I am getting the following error: failed to save outputs: verify serviceaccount platform:default has necessary privileges This error is appearing in the first step…
harshvardhan
  • 765
  • 13
  • 32
0
votes
0 answers

argo-events EventSource not detecting any update when using k8s object deployments

Event source logs show no error when deployed, but when we make changes on the k8s object deployments. There is nothing that happened in the logs, and the Sensor didn't get triggered. But when i use Webhook as the EventSource everything works…
0
votes
1 answer

Best way to dynamically submit 10000s of Argo Cron Workflows

I'm working on a project where I'm using Argo Workflows to automate time series forecasts. I have already written a basic cron workflow that fetches data for a single time series and produces the forecast. I now need to scale this process to…
Posionus
  • 57
  • 4
0
votes
1 answer

ArgoCD: How to deploy and target specific cluster in ArgoCD?

In ArgoCD how to target a deployment into a specific cluster or a group of clusters in a multi-cluster environment ?
Sam
  • 345
  • 3
  • 14