forked from argoproj/argo-rollouts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Multiple VirtualService objects support for canary strategy of …
…Argo Rollouts fixes argoproj#1100
- Loading branch information
Darshan Hassan Shashikumar
committed
Jul 31, 2021
1 parent
3f3462f
commit 810a451
Showing
3 changed files
with
112 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: rollouts-demo-vsvc1 | ||
spec: | ||
gateways: | ||
- rollouts-demo-gateway | ||
hosts: | ||
- rollouts-demo-vsvc1.local | ||
http: | ||
- name: primary | ||
route: | ||
- destination: | ||
host: rollouts-demo-stable | ||
weight: 100 | ||
- destination: | ||
host: rollouts-demo-canary | ||
weight: 0 | ||
|
||
--- | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: rollouts-demo-vsvc2 | ||
spec: | ||
gateways: | ||
- rollouts-demo-gateway | ||
hosts: | ||
- rollouts-demo-vsvc2.local | ||
http: | ||
- name: primary | ||
route: | ||
- destination: | ||
host: rollouts-demo-stable | ||
weight: 100 | ||
- destination: | ||
host: rollouts-demo-canary | ||
weight: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters