You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- apiVersion: argoproj.io/v1alpha1
- kind: Workflow
- metadata:
- generateName: arguments-parameters-
- spec:
- entrypoint: whalesay
- # Parameters can be passed/overridden via the argo CLI.
- # To override the printed message, run `argo submit` with the -p option:
- # $ argo submit examples/arguments-parameters.yaml -p message="goodbye world"
- arguments:
- parameters:
- - name: message
- value: hello world
-
- templates:
- - name: whalesay
- inputs:
- parameters:
- - name: message
- container:
- image: ccr.ccs.tencentyun.com/somunslotus/huoshi-ubuntu-nginx:1.18-20.04_beta-arm64
- command: [echo]
- args: ["{{inputs.parameters.message}}"]
|