github.com/oam-dev/kubevela@v1.9.11/docs/examples/imagepulljob/basic_image_pull.yaml (about)

     1  apiVersion: core.oam.dev/v1beta1
     2  kind: Application
     3  metadata:
     4    name: pullimage-sample
     5    namespace: default
     6  spec:
     7    components:
     8      - name: nginx
     9        type: webservice
    10        properties:
    11          image: nginx:1.9.1
    12          port: 80
    13    workflow:
    14      steps:
    15        - name: pullimage
    16          type: predownloadimage
    17          properties:
    18            image: nginx:1.9.1
    19            parallel: 3
    20            kvs:
    21              kubernetes.io/os: linux
    22        - name: deploy-remaining
    23          type: apply
    24          properties:
    25            component: nginx
    26  
    27