mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-03-30 13:28:46 +02:00
26 lines
485 B
YAML
26 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
|