-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Canary Deployment feature of Istio #116 #117
base: master
Are you sure you want to change the base?
Conversation
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: api-gateway | ||
spec: | ||
hosts: | ||
- api-gateway | ||
gateways: | ||
- captivate-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: api-gateway |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the purpose of this ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be removed if we don't want to define traffic rules for this service
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: session-management | ||
spec: | ||
hosts: | ||
- session-management | ||
gateways: | ||
- captivate-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: session-management | ||
|
||
--- | ||
|
||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: user-management | ||
spec: | ||
hosts: | ||
- user-management | ||
gateways: | ||
- captivate-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: user-management |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May I know why we need these ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be removed if we don't want to define traffic rules for these services
Implemented and tested canary deployment facility provided by Istio on the UI service