apiVersion: v1 kind: Service metadata: name: canary-demo-preview spec: ports: - port: 80 targetPort: http protocol: TCP name: http selector: app: canary-demo --- apiVersion: v1 kind: Service metadata: name: canary-demo spec: ports: - port: 80 targetPort: http protocol: TCP name: http selector: app: canary-demo --- apiVersion: argoproj.io/v1alpha1 kind: Rollout metadata: name: canary-demo spec: replicas: 5 revisionHistoryLimit: 1 selector: matchLabels: app: canary-demo template: metadata: labels: app: canary-demo spec: containers: - name: canary-demo image: argoproj/rollouts-demo:green imagePullPolicy: Always ports: - name: http containerPort: 8080 protocol: TCP resources: requests: memory: 32Mi cpu: 5m strategy: canary: canaryService: canary-demo-preview steps: - setWeight: 20 - pause: {} - setWeight: 40 - pause: { duration: 10 } - setWeight: 60 - pause: { duration: 10 } - setWeight: 80 - pause: { duration: 10 }