mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
25 lines
485 B
YAML
25 lines
485 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Rollout
|
|
metadata:
|
|
name: rollout-sample
|
|
spec:
|
|
replicas: 2
|
|
strategy:
|
|
canary:
|
|
steps:
|
|
- setWeight: 20
|
|
selector:
|
|
matchLabels:
|
|
app: rollout-sample
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: rollout-sample
|
|
spec:
|
|
containers:
|
|
- name: init
|
|
image: init-container:v1
|
|
livenessProbe:
|
|
initialDelaySeconds: 10
|
|
- name: main
|
|
image: main-container:v1
|