mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-23 22:46:53 +00:00
add quick start for application CRD Update docs/en/quick-start.md Co-authored-by: Hongchao Deng <hongchaodeng1@gmail.com> Update docs/en/quick-start.md Co-authored-by: Hongchao Deng <hongchaodeng1@gmail.com>
18 lines
368 B
YAML
18 lines
368 B
YAML
apiVersion: core.oam.dev/v1alpha2
|
|
kind: Application
|
|
metadata:
|
|
name: first-vela-app
|
|
spec:
|
|
components:
|
|
- name: express-server
|
|
type: webservice
|
|
settings:
|
|
image: crccheck/hello-world
|
|
port: 8000
|
|
traits:
|
|
- name: ingress
|
|
properties:
|
|
domain: testsvc.example.com
|
|
http:
|
|
"/": 8000
|