2

我在 argoproj 工作流程中编写了一个工作流程,我想每隔 1 小时执行一次。在平面 k8s 中,我会使用 CronJob 类型来完成这项任务。我应该使用什么?

4

1 回答 1

2

Argo 2.5引入了一个新的“CronWorkflow”类型

他们的示例工作流程的这种细微变化将每小时运行一次:

apiVersion: argoproj.io/v1alpha1
kind: CronWorkflow
metadata:
  name: test-cron-wf
spec:
  schedule: "0 * * * *"
  concurrencyPolicy: "Replace"
  startingDeadlineSeconds: 0
  workflowSpec:
    entrypoint: whalesay
    templates:
    - name: whalesay
      container:
        image: alpine:3.6
        command: [sh, -c]
        args: ["date; sleep 90"]
于 2020-02-28T15:42:09.007 回答