We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Calendar sensor with Schedule: @every 30s triggers only once
To Reproduce create sensor with following config:
apiVersion: argoproj.io/v1alpha1 kind: Sensor metadata: name: inline-example namespace: playground labels: sensors.argoproj.io/controller-instanceid: axis spec: signals: - name: time calendar: schedule: "@every 30s" triggers: - name: inline-workflow-trigger resource: namespace: playground group: argoproj.io version: v1alpha1 kind: Workflow source: inline: | apiVersion: argoproj.io/v1alpha1 kind: Workflow metadata: generateName: job-hello-world- spec: entrypoint: whalesay templates: - container: args: - "hello world" command: - cowsay image: "docker/whalesay:latest" name: whalesay
specifying schedule: "@every 30s" i expect it to repeat every 30 seconds; sensor triggers once and transitions to Phase: Complete
schedule: "@every 30s"
Phase: Complete
The text was updated successfully, but these errors were encountered:
This issue is being addressed in #92
Sorry, something went wrong.
VaibhavPage
No branches or pull requests
Describe the bug
Calendar sensor with Schedule: @every 30s triggers only once
To Reproduce
create sensor with following config:
apiVersion: argoproj.io/v1alpha1
kind: Sensor
metadata:
name: inline-example
namespace: playground
labels:
sensors.argoproj.io/controller-instanceid: axis
spec:
signals:
- name: time
calendar:
schedule: "@every 30s"
triggers:
- name: inline-workflow-trigger
resource:
namespace: playground
group: argoproj.io
version: v1alpha1
kind: Workflow
source:
inline: |
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: job-hello-world-
spec:
entrypoint: whalesay
templates:
-
container:
args:
- "hello world"
command:
- cowsay
image: "docker/whalesay:latest"
name: whalesay
specifying
schedule: "@every 30s"
i expect it to repeat every 30 seconds;sensor triggers once and transitions to
Phase: Complete
The text was updated successfully, but these errors were encountered: