Stefan Prodan
9a9baadf0e
Merge pull request #311 from andrewjjenkins/mirror
...
Add traffic mirroring for Istio service mesh
2019-10-05 10:34:25 +03:00
Andrew Jenkins
a21e53fa31
Document traffic mirroring in the FAQ
2019-10-03 14:33:49 -06:00
Andrew Jenkins
61f8aea7d8
add Traffic Mirroring to Blue/Green deployments
...
Traffic mirroring for blue/green will mirror traffic for the entire
canary analysis phase of the blue/green deployment.
2019-10-03 14:33:49 -06:00
Andrew Jenkins
e384b03d49
Add Traffic Mirroring for Istio Service Mesh
...
Traffic mirroring is a pre-stage for canary deployments. When mirroring
is enabled, at the beginning of a canary deployment traffic is mirrored
to the canary instead of shifted for one canary period. The service
mesh should mirror by copying the request and sending one copy to the
primary and one copy to the canary; only the response from the primary
is sent to the user. The response from the canary is only used for
collecting metrics.
Once the mirror period is over, the canary proceeds as usual, shifting
traffic from primary to canary until complete.
Added TestScheduler_Mirroring unit test.
2019-10-03 14:33:49 -06:00
Stefan Prodan
0c60cf39f8
Merge pull request #323 from weaveworks/prep-0.18.6
...
Release v0.18.6
0.18.6
2019-10-03 15:19:51 +03:00
stefanprodan
268fa9999f
Release v0.18.6
2019-10-03 15:00:12 +03:00
stefanprodan
ff7d4e747c
Update Linkerd to v2.5.0
2019-10-03 14:48:26 +03:00
stefanprodan
121fc57aa6
Update Prometheus to v2.12.0
2019-10-03 14:46:34 +03:00
Stefan Prodan
991fa1cfc8
Merge pull request #322 from weaveworks/appmesh-acceptance-testing
...
Add support for acceptance testing when using App Mesh
2019-10-03 14:31:51 +03:00
stefanprodan
fb2961715d
Add App Mesh acceptance tests example to docs
2019-10-03 12:11:11 +03:00
stefanprodan
74c1c2f1ef
Add App Mesh request duration metric check to docs
...
Fix : #143 depend on App Mesh Envoy >1.11
2019-10-03 11:52:56 +03:00
stefanprodan
4da6c1b6e4
Create canary virtual service during App Mesh reconciliation
...
Allows the canary pods to be accessed from inside the mesh during the canary analysis for conformance and load testing
2019-10-03 11:43:47 +03:00
Stefan Prodan
fff03b170f
Merge pull request #320 from bvwells/json-tag
...
Fix JSON tag on virtual node condition
2019-10-03 11:07:05 +03:00
Stefan Prodan
434acbb71b
Merge pull request #319 from weaveworks/appmesh-docs
...
Update App Mesh install docs
2019-10-03 10:55:45 +03:00
Ben Wells
01962c32cd
Fix JSON tag on virtual node condition
2019-10-03 08:46:39 +01:00
stefanprodan
6b0856a054
Update App Mesh Envoy ingress to v1.11.1
2019-10-03 10:02:58 +03:00
stefanprodan
708dbd6bbc
Use official App Mesh Helm charts in docs
2019-10-03 09:52:42 +03:00
Stefan Prodan
e3801cbff6
Merge pull request #318 from bvwells/notifier-fields
...
Fix slack/teams notification fields
2019-10-03 09:50:25 +03:00
Ben Wells
fc68635098
Fix slack/teams notification of fields
2019-10-02 22:35:16 +01:00
Stefan Prodan
6706ca5d65
Merge pull request #317 from weaveworks/appmesh-kustomize
...
Add Kustomize installer for App Mesh
2019-10-02 21:40:04 +03:00
stefanprodan
44c2fd57c5
Add App Mesh Kustomize installer to docs
2019-10-02 20:12:04 +03:00
stefanprodan
a9aab3e3ac
Add Kustomize installer for App Mesh
2019-10-02 20:05:52 +03:00
Stefan Prodan
6478d0b6cf
Merge pull request #316 from weaveworks/prep-0.18.5
...
Release v0.18.5
0.18.5
2019-10-02 18:10:01 +03:00
stefanprodan
958af18dc0
Add changelog for v0.18.5
2019-10-02 17:51:06 +03:00
stefanprodan
54b8257c60
Release v0.18.5
2019-10-02 16:51:08 +03:00
Stefan Prodan
e86f62744e
Merge pull request #315 from nilscan/appmesh-init
...
Skip primary check for appmesh
2019-10-02 09:17:08 +03:00
nilscan
0734773993
Skip primary check for appmesh
2019-10-02 14:29:48 +13:00
Stefan Prodan
888cc667f1
Merge pull request #314 from weaveworks/podinfo-updates
...
Update podinfo to v3.1.0 and go to v1.13
2019-09-27 17:20:52 +03:00
stefanprodan
053d0da617
Remove thrift replace from go.mod
2019-09-27 16:59:15 +03:00
stefanprodan
7a4e0bc80c
Update go mod to 1.13
2019-09-27 16:53:55 +03:00
stefanprodan
7b7306584f
Update alpine to 3.10
2019-09-27 16:33:56 +03:00
stefanprodan
d6027af632
Update go to 1.13 in CI
2019-09-27 16:33:06 +03:00
stefanprodan
761746af21
Update podinfo to v3.1.0
2019-09-27 15:52:30 +03:00
stefanprodan
510a6eaaed
Add JWT token issuing test to podinfo chart
2019-09-27 15:19:03 +03:00
Andrew Jenkins
655df36913
Extend test SetupMocks() to take arbitrary Canary resources
...
SetupMocks() currently takes a bool switch that tells it to configure
against either a shifting canary or an A-B canary. I'll need a third
canary that has mirroring turned on so I changed this to an interface
that just takes the canary to configure (and configs the default
shifting canary if you pass nil).
2019-09-24 16:15:45 -06:00
Andrew Jenkins
2e079ba7a1
Add mirror to router interface and implement for istio router
...
The mirror option will be used to tell routers to configure traffic
mirroring. Implement mirror for GetRoutes and SetRoutes for Istio. For
other routers, GetRoutes always returns mirror == false, and SetRoutes
ignores mirror.
After this change there is no behavior change because no code sets
mirror true (yet).
Enhanced TestIstioRouter_SetRoutes and TestIstioRouter_GetRoutes.
2019-09-24 16:15:45 -06:00
Stefan Prodan
9df6bfbb5e
Merge pull request #310 from weaveworks/canary-promotion
...
Canary promotion improvements
2019-09-24 14:19:43 +03:00
stefanprodan
2ff86fa56e
Fix canary weight max value
2019-09-24 10:16:22 +03:00
stefanprodan
1b2e0481b9
Add promoting phase to status condition
2019-09-24 09:57:42 +03:00
stefanprodan
fe96af64e9
Add canary phases tests
2019-09-23 22:24:40 +03:00
stefanprodan
77d8e4e4d3
Use the promotion phase in A/B testing and Blue/Green
2019-09-23 22:14:44 +03:00
stefanprodan
800b0475ee
Run the canary promotion on a separate stage
...
After the analysis finishes, Flagger will do the promotion and wait for the primary rollout to finish before routing all the traffic back to it. This ensures a smooth transition to the new version avoiding dropping in-flight requests.
2019-09-23 21:57:24 +03:00
stefanprodan
b58e13809c
Add promoting phase to canary status conditions
2019-09-23 21:48:09 +03:00
Stefan Prodan
9845578cdd
Merge pull request #307 from weaveworks/confirm-promotion
...
Implement confirm-promotion hook
2019-09-23 12:32:52 +03:00
stefanprodan
96ccfa54fb
Add confirm-promotion hook example to docs
2019-09-22 14:14:35 +03:00
stefanprodan
b8a64c79be
Add confirm-promotion webhook to e2e tests
2019-09-22 13:44:55 +03:00
stefanprodan
4a4c261a88
Add confirm-promotion webhook type to CRD
2019-09-22 13:36:07 +03:00
stefanprodan
8282f86d9c
Implement confirm-promotion hook
...
The confirm promotion hooks are executed right before the promotion step. The canary promotion is paused until the hooks return HTTP 200. While the promotion is paused, Flagger will continue to run the metrics checks and load tests.
2019-09-22 13:23:19 +03:00
Stefan Prodan
2b6966d8e3
Merge pull request #306 from weaveworks/e2e-updates
...
Update end-to-end tests to Istio 1.3.0
2019-09-22 12:37:05 +03:00
stefanprodan
c667c947ad
Istio e2e: update job names
2019-09-22 12:12:06 +03:00