github.com/oam-dev/kubevela@v1.9.11/references/docgen/def-doc/workflowstep/apply-application.eg.md (about)

     1  ```yaml
     2  apiVersion: core.oam.dev/v1beta1
     3  kind: Application
     4  metadata:
     5    name: first-vela-workflow
     6    namespace: default
     7  spec:
     8    components:
     9    - name: express-server
    10      type: webservice
    11      properties:
    12        image: oamdev/hello-world
    13        port: 8000
    14      traits:
    15      - type: ingress
    16        properties:
    17          domain: testsvc.example.com
    18          http:
    19            /: 8000
    20    workflow:
    21      steps:
    22        - name: express-server
    23          type: apply-application
    24  ```