github.com/oam-dev/kubevela@v1.9.11/docs/examples/advanced-cue/app1.yaml (about) 1 apiVersion: core.oam.dev/v1beta1 2 kind: Application 3 metadata: 4 name: testapp 5 spec: 6 components: 7 - name: express-server 8 properties: 9 cmd: 10 - node 11 - server.js 12 image: oamdev/testapp:v1 13 port: 8080 14 traits: 15 - type: ingress 16 properties: 17 domain: test.my.domain 18 http: 19 "/api": 8080 20 type: webservice