Questions tagged [argo-cron-workflows]

7 questions
4
votes
2 answers

Does deleting an argo cron workflow delete all argo workflows started by it as well

It looks like the case that when I delete an Argo cron workflow with argo cron delete, all the previous workflows (completed as well as still running ones) will also be deleted based on my observation. I'm not totally sure though and I haven't found…
zyxue
  • 7,904
  • 5
  • 48
  • 74
1
vote
0 answers

Argo Cron Workflow Not Running with emptyDir Specified

So I have been tasked with making an ETL Pipeline. My Code works with Docker Compose, and I have been able to make tables and inject the table with all of the data so far. Now I have to make a cron workflow that will schedule this task. I have two…
1
vote
1 answer

Access CronWorkflow name for metrics labels

I have a CronWorkflow that sends the following metric: apiVersion: argoproj.io/v1alpha1 kind: CronWorkflow metadata: name: my-cron-wf spec: schedule: "0 * * * *" suspend: false workflowSpec: metrics: prometheus: - name:…
Gabio
  • 9,126
  • 3
  • 12
  • 32
1
vote
1 answer

Argo workflow: schedule once at a specific time

I want to trigger an Argo workflow to start running at a specific time. I am currently using a workflowTemplate and the rest API to submit a workflow with this template. Is there a way to tell Argo to start the workflow at a specific time. I am…
Chayan Ghosh
  • 718
  • 5
  • 18
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:…
0
votes
2 answers

How to stop/terminate Argo cron workflow?

In our requirement we need to connect to ARGO instance and take necessary actions on the jobs. So we are consuming ARGO java apis to connect to argo instance and performing the actions like suspend,resume,retry.... But i am not able to find apis for…
0
votes
1 answer

Argo CronWorkflow is submitted immediately after resume

After resuming an Argo CronWorkflow, this workflow is submitted immediately even though the schedule is not due to run until a few hours later. Resuming the Argo CronWorkflow does not submit it immediately. I tried to change the Argo CronWorkflow…
pmareke
  • 1
  • 1