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
apiVersion: argoproj.io/v1alpha1 # Changed from apps/v1kind: Rollout # Changed from Deployment# ----- Everything below this comment is the same as a deployment -----metadata:
name: example-rolloutspec:
replicas: 5selector:
matchLabels:
app: nginxtemplate:
metadata:
labels:
app: nginxspec:
containers:
- name: nginximage: nginx:1.15.4ports:
- containerPort: 80minReadySeconds: 30revisionHistoryLimit: 3strategy:
# ----- Everything above this comment are the same as a deployment -----canary: # A new field that used to provide configurable options for a Canary strategysteps:
- setWeight: 20
- pause: {}
$ kubectl apply --dry-run -f install.yaml
customresourcedefinition.apiextensions.k8s.io/analysisruns.argoproj.io created (dry run)
customresourcedefinition.apiextensions.k8s.io/analysistemplates.argoproj.io created (dry run)
customresourcedefinition.apiextensions.k8s.io/experiments.argoproj.io created (dry run)
customresourcedefinition.apiextensions.k8s.io/rollouts.argoproj.io created (dry run)
serviceaccount/argo-rollouts created (dry run)
role.rbac.authorization.k8s.io/argo-rollouts-role created (dry run)
clusterrole.rbac.authorization.k8s.io/argo-rollouts-aggregate-to-admin created (dry run)
clusterrole.rbac.authorization.k8s.io/argo-rollouts-aggregate-to-edit created (dry run)
clusterrole.rbac.authorization.k8s.io/argo-rollouts-aggregate-to-view created (dry run)
clusterrole.rbac.authorization.k8s.io/argo-rollouts-clusterrole created (dry run)
rolebinding.rbac.authorization.k8s.io/argo-rollouts-role-binding created (dry run)
clusterrolebinding.rbac.authorization.k8s.io/argo-rollouts-clusterrolebinding created (dry run)
service/argo-rollouts-metrics created (dry run)
deployment.apps/argo-rollouts created (dry run)
https://argoproj.github.io/argo-rollouts/getting-started/
rollout.yaml
service.yaml
The text was updated successfully, but these errors were encountered: