You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When I finish creating the argo rollout with the following file,cluster report “error creating canary ingress
canary-demo-canary-demo-canary
: ingresses.extensions "canary-demo-canary-demo-canary" is forbidden: service "canary-demo-canary" not found”,But my service(canary-demo-canary) has already been created,How can I do to fix thisapiVersion: argoproj.io/v1alpha1 kind: Rollout metadata: name: canary-demo labels: app: canary-demo spec: replicas: 1 selector: matchLabels: app: canary-demo template: metadata: labels: app: canary-demo spec: containers: - name: canary-demo image: argoproj/rollouts-demo:blue imagePullPolicy: Always ports: - name: http containerPort: 8080 protocol: TCP resources: requests: memory: 32Mi cpu: 5m strategy: canary: canaryService: canary-demo-canary stableService: canary-demo canaryMetadata: labels: deployment: canary stableMetadata: labels: deployment: stable trafficRouting: nginx: stableIngress: canary-demo additionalIngressAnnotations: canary-by-header: X-Canary steps: - setWeight: 20 - pause: {} - setWeight: 50 - pause: duration: 30s - setWeight: 70 - pause: duration: 30s
Beta Was this translation helpful? Give feedback.
All reactions