mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-11 11:57:04 +00:00
28 lines
545 B
YAML
28 lines
545 B
YAML
apiVersion: core.oam.dev/v1beta1
|
|
kind: Application
|
|
metadata:
|
|
name: first-vela-app
|
|
spec:
|
|
components:
|
|
- name: express-server
|
|
type: webservice
|
|
properties:
|
|
image: crccheck/hello-world
|
|
port: 8000
|
|
traits:
|
|
- type: ingress
|
|
properties:
|
|
domain: testsvc.example.com
|
|
http:
|
|
"/": 8000
|
|
policies:
|
|
- name: my-policy
|
|
type: foopolicy
|
|
properties:
|
|
key: test
|
|
|
|
workflow:
|
|
- name: my-wf
|
|
type: foowf
|
|
properties:
|
|
key: test |