Skip to content

Commit f5bec8d

Browse files
Merge pull request #12 from ianwoolf/fix-canary
fix not scale down for canary
2 parents d825021 + 9cf58cc commit f5bec8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

canary/native/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ $ curl $(minikube service my-app --url)
3131
# It will show you a better view on the progress
3232
$ watch kubectl get po
3333

34-
# Then deploy version 2 of the application
34+
# Then deploy version 2 of the application and scale down version 1 to 9 replicas at same time
3535
$ kubectl apply -f app-v2.yaml
36+
$ kubectl scale --replicas=9 deploy my-app-v1
3637

3738
# Only one pod with the new version should be running.
3839
# You can test if the second deployment was successful

0 commit comments

Comments
 (0)