Add Argo Rollout
This commit is contained in:
parent
b6f05b475f
commit
c344306da5
@ -5,5 +5,6 @@ namespace: toy
|
||||
resources:
|
||||
- secret.yaml
|
||||
- deployment.yaml
|
||||
- rollout.yaml
|
||||
- services.yaml
|
||||
- ingress.yaml
|
||||
|
38
kustomize/app/rollout.yaml
Normal file
38
kustomize/app/rollout.yaml
Normal file
@ -0,0 +1,38 @@
|
||||
---
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Rollout
|
||||
metadata:
|
||||
name: toy
|
||||
spec:
|
||||
replicas: 5
|
||||
strategy:
|
||||
canary:
|
||||
steps:
|
||||
- setWeight: 20
|
||||
- pause: {}
|
||||
- setWeight: 40
|
||||
- pause: {duration: 10}
|
||||
- setWeight: 60
|
||||
- pause: {duration: 10}
|
||||
- setWeight: 80
|
||||
- pause: {duration: 10}
|
||||
revisionHistoryLimit: 2
|
||||
selector:
|
||||
matchLabels:
|
||||
app: toy
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: toy
|
||||
spec:
|
||||
containers:
|
||||
- name: rollouts-demo
|
||||
image: git.kill0.net/ryanc/toy:latest
|
||||
ports:
|
||||
- name: web
|
||||
containerPort: 4567
|
||||
protocol: TCP
|
||||
resources:
|
||||
requests:
|
||||
memory: 32Mi
|
||||
cpu: 5m
|
Loading…
Reference in New Issue
Block a user