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

     1  ```yaml
     2  # vela-app.yaml
     3  apiVersion: core.oam.dev/v1beta1
     4  kind: Application
     5  metadata:
     6    name: first-vela-app
     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: gateway
    16            properties:
    17              domain: testsvc.example.com
    18              http:
    19                "/": 8000
    20  ```