如何使 WorkflowTemplate 中的步骤/任务显示在 Argo 工作流 UI 中?

时间:2021-02-28 21:46:22

标签: kubernetes yaml argo-workflows

should be three dot but I only see one 为什么工作流以向下的箭头结束?

apiVersion: argoproj.io/v1alpha1
kind: WorkflowTemplate
metadata:
  name: workflow-template-whalesay-template
spec:
  templates:
  - name: whalesay-template
    inputs:
      parameters:
      - name: message
    container:
      image: docker/whalesay
      command: [cowsay]

这是我正在使用的工作流模板。我在下一步之前将其应用于 k8s。

apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
  name: workflow-template-dag-diamond
  generateName: workflow-template-dag-diamond-
spec:
  entrypoint: diamond
  templates:
  - name: diamond
    dag:
      tasks:
      - name: A
        templateRef:
          name: workflow-template-whalesay-template
          template: whalesay-template
        arguments:
          parameters:
          - name: message
            value: A

此工作流程参考了上一步。工作流正在做它应该做的事情,但我看不到 UI 上的绿点。

0 个答案:

没有答案