github.com/oam-dev/kubevela@v1.9.11/docs/examples/app-with-volumes/app-aws-ebs-volume.yaml (about)

     1  apiVersion: core.oam.dev/v1beta1
     2  kind: Application
     3  metadata:
     4    name: app-worker
     5  spec:
     6    components:
     7      - name: myworker
     8        type: worker
     9        properties:
    10          image: "busybox"
    11          cmd:
    12            - sleep
    13            - "1000"
    14        traits:
    15          - type: aws-ebs-volume
    16            properties:
    17              name: "my-ebs"
    18              mountPath: "/myebs"
    19              volumeID: "my-ebs-id"