toy/kustomize/app/rollout.yaml
Ryan Cavicchioni 56292510e2
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m23s
Gitea Actions Demo / test (push) Successful in 1m17s
Gitea Actions Demo / release-image (push) Successful in 1m12s
Add Argo Rollout
2024-08-11 12:29:07 -05:00

39 lines
718 B
YAML

---
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: toy
image: git.kill0.net/ryanc/toy:latest
ports:
- name: web
containerPort: 4567
protocol: TCP
resources:
requests:
memory: 32Mi
cpu: 5m