Questions tagged [argo-events]
44 questions
0
votes
1 answer
Argo Events: passing variables from workflow through event payload to triggered workflow
I'm looking to setup argo-events to trigger a data-logging workflow when a "regular" workflow is submitted.
Following the resource event source docs, I can do this, but I cannot find how to encode and extract variables as is done using the webhook…

DoctorSoup
- 141
- 7
0
votes
1 answer
Define key value pair for Argo-Events sensor trigger payload
I'm trying to fill the Argo-Events Sensor Nats trigger payload with custom key value pairs. These values are not part of the dependency. Anyone knows a way to do this?
From docs:
Payload is the list of key-value extracted from an event payload to…

nice_pink
- 435
- 1
- 3
- 16
0
votes
1 answer
Notify completion of argo workflow
I have a use case where I am triggering argo workflow from a python application. However, I need a mechanism from argo workflow that it should notify my python application when the workflow execution is completed. I am already using a pub sub…

Manik Sidana
- 2,005
- 2
- 18
- 29
0
votes
1 answer
Argo Workflow + Performance evaluation + Metrics
We are evaluating the Argo workflow performance and trying to benchmark the same. For sure the number of components involved in Argo is less than that of Airflow, yet we would like to understand various potential bottlenecks when run at…

Gurupraveen
- 181
- 1
- 13
0
votes
0 answers
Why Argo event is always in state Pending?
I've followed example here https://argoproj.github.io/argo-events/sensors/triggers/argo-workflow/ in minikube and after curl post i just get events in state pending with argo list -n argo-events. Could someone please point me what might be the…

xeLL
- 487
- 2
- 9
- 24
0
votes
1 answer
How to trigger an existing Argo cronworkflow?
I have tried many versions of this template below
apiVersion: argoproj.io/v1alpha1
kind: Sensor
metadata:
name: tibco-events-sensor
spec:
template:
metadata:
annotations:
sidecar.istio.io/inject: 'false'
serviceAccountName:…

Salsa Steve
- 89
- 3
- 10
0
votes
1 answer
Argo events Authorization to eventbus internal NATS
I am trying to connect Argo event source to internal Argo eventbus NATS server. I configured event source
spec:
nats:
subtask-create:
url: nats://eventbus-default-stan-svc:4222
jsonBody: true
subject: task-create-finished
…

Eduard Nickel
- 135
- 1
- 2
- 13
0
votes
2 answers
Argo workflow wait pod is not showing processes with command docker ps on GKE
I am running Argo Workflow in GKE and workflow does not show container id while running following command
docker ps --all --no-trunc --format={{.Status}}|{{.Label \"io.kubernetes.container.name\"}}|{{.ID}}|{{.CreatedAt}}
Because of this wait…
user13865394
0
votes
1 answer
AMQP - Argo-events: argo-workflow not triggered
I am trying to run an argo-workflow triggered by event-source that listens to messages published on RabbitMQ. I followed the exact steps in here: AMQP-Argo Events
The RabbitMQ controller pod is running:
eventbus-controller-7b5bd8b7fd-nggrc 1/1…

natt010
- 43
- 4
0
votes
1 answer
How to configure Argo EventSource for AWS SFTP file creation event?
I have AWS SFTP server, Argo Workflow and Argo Events configure. My use case is I want to watch over SFTP to see if new file is created/uploaded and trigger one workflow if yes.
New file upload in SFTP -> Argo EventSource -> Argo Sensor ->…

Aman
- 193
- 2
- 15
0
votes
2 answers
I am getting permission issue (cannot create resource \"Job\" in API group \"batch) while creating jobs via sensors of argo-events
I am trying to trigger a job creation from a sensor but I am getting the error below:
Job.batch is forbidden: User \"system:serviceaccount:samplens:sample-sa\" cannot create resource \"Job\" in API group \"batch\" in the namespace…

TruckDriver
- 1,383
- 13
- 28
0
votes
0 answers
How to put an Argo webhook trigger parameter into an artifact?
I want to be able to POST a big piece of data to a webhook in Argo. In my Sensor definition I get the data from the request and put it into a "raw" artifact on the Workflow. Since the data is base64 encoded, I use a Sprig template to decode the…

niekoost
- 151
- 2
- 5
0
votes
1 answer
Restarting a kubernetes pod from another pod
I'm trying to use argo events to trigger a workflow where I push changes to a database, then I have to restart certain pods so that changes are taken into consideration. I know how to use argo to create kubernetes objects, but I don't know how I can…

Reda Drissi
- 1,532
- 3
- 20
- 32
0
votes
3 answers
Triggering steps in argo workflow using argo events
We were poc-ing different wf tools, and argo stands out given wide range of feature and it being k8s native, but we have use cases of long-running steps and we want an event based system to trigger next step or retry previous step based on the…

Sandeep
- 131
- 1
- 9