github.com/oam-dev/kubevela@v1.9.11/docs/examples/custom-trait/app.yaml (about)

     1  apiVersion: core.oam.dev/v1beta1
     2  kind: Application
     3  metadata:
     4    name: website
     5    namespace: default
     6  spec:
     7    components:
     8      - name: custom-component
     9        type: test-stateful
    10        properties:
    11          image: nginx:latest
    12          replicas: 1
    13        traits:
    14          - type: storageclass
    15            properties:
    16              volumeClaimTemplates:
    17                - name: test
    18                  requests: 10Gi
    19                  storageClassName: cbs
    20                  mountPath: /usr/share/nginx/html