Files
kubevela/docs/examples/application/application-sample.yaml
2021-03-26 19:14:07 +08:00

25 lines
513 B
YAML

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: application-sample
spec:
components:
- name: myweb
type: worker
properties:
image: "busybox"
cmd:
- sleep
- "1000"
traits:
- type: scaler
properties:
replicas: 10
- type: sidecar
properties:
name: "sidecar-test"
image: "nginx"
- type: kservice
properties:
http:
server: 80