How to trigger a workflow from UI? #7038
-
Hi guys, apart from cli, I would like to trigger a workflow (ClusterWorkflowTemplate) from the UI... but how can I do it? when I select the workflow and click on but actually I specified some parameters: ...
spec:
templates:
- name: go-pipeline-tmpl
inputs:
parameters:
- name: repo_url
- name: context_path
- name: base_path
- name: revision
- name: checkout_sha
- name: dockerfile_path
- name: container_image_registry
- name: container_image_tag_revision
... thanks in advance for any help or tip! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
you can use |
Beta Was this translation helpful? Give feedback.
-
@sarabala1979 thanks, but as I mentioned in the question I don't see any parameter I specified in the workflow definition. |
Beta Was this translation helpful? Give feedback.
-
Sorry I forgot to mention the version of argo workflows I run: 3.1.3 |
Beta Was this translation helpful? Give feedback.
-
Only Spec level (global) parameters will be displayed in UI. apiVersion: argoproj.io/v1alpha1
kind: ClusterWorkflowTemplate
metadata:
name: cluster-workflow-template-submittable
spec:
entryPoint: whalesay-template
arguments:
parameters:
- name: message
value: hello world |
Beta Was this translation helpful? Give feedback.
Only Spec level (global) parameters will be displayed in UI.