Files
kubevela/docs/examples/application/application-sample.yaml
2021-03-20 08:37:00 +08:00

25 lines
512 B
YAML

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