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

     1  ```yaml
     2  apiVersion: core.oam.dev/v1beta1
     3  kind: Application
     4  metadata:
     5    name: resource-app
     6  spec:
     7    components:
     8      - name: express-server
     9        type: webservice
    10        properties:
    11          image: crccheck/hello-world
    12          ports:
    13            - port: 8000
    14        traits:
    15          - type: resource
    16            properties:
    17              cpu: 2
    18              memory: 2Gi
    19              requests:
    20                cpu: 2
    21                memory: 2Gi
    22              limits:
    23                cpu: 4
    24                memory: 4Gi
    25  ```