Files
wyike 11103b31bb Docs: rollout demo (#2348)
delete useless file
2021-09-24 16:31:39 +08:00

46 lines
993 B
YAML

apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: canary-test
namespace: default
spec:
components:
- name: canarydemo
type: webservice
properties:
image: docker.io/barnett/canarydemo:v1
port: 8090
traits:
- type: canary-traffic
properties:
port:
- 8090
- type: rollout
properties:
targetSize: 2
# This means to rollout two more replicas in two batches.
rolloutBatches:
- replicas: 2
- name: gateway
type: webservice
properties:
image: docker.io/barnett/canarydemo-gateway:v2
port: 8091
traits:
- type: expose
properties:
port:
- 8091
- type: istio-gateway
properties:
hosts:
- "*"
gateway: ingressgateway
match:
- exact: /server
port: 8091