mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-16 06:16:52 +00:00
* add scale implementation * fine tune the logic and adjust e2e test * fix tests and fine tune logic * try to fix flaky verification * allow zero size step * fix scale down check
17 lines
401 B
YAML
17 lines
401 B
YAML
apiVersion: core.oam.dev/v1beta1
|
|
kind: Application
|
|
metadata:
|
|
name: test-rolling
|
|
annotations:
|
|
"app.oam.dev/rollout-template": "true"
|
|
spec:
|
|
components:
|
|
- name: metrics-provider
|
|
type: clonesetservice
|
|
properties:
|
|
cmd:
|
|
- ./podinfo
|
|
- stress-cpu=1
|
|
image: stefanprodan/podinfo:4.0.6
|
|
port: 8080
|
|
updateStrategyType: InPlaceIfPossible |