Kong route versioning #13593
Unanswered
namanjain98
asked this question in
Help
Replies: 1 comment
-
We have a canary plugin (https://docs.konghq.com/hub/kong-inc/canary/) for this, but it only works for Kong Enterprise. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have deployed a version of a proxy in my Kong cluster, which is currently working well. Now, I want to introduce some changes to the proxy and enable a canary traffic deployment. Specifically, I want version 1 of the proxy, which was previously deployed, to continue receiving 90% of the traffic, while version 2, which includes the new changes, should receive the remaining 10% of the traffic.
Example:
I initially deployed a proxy named proxy_1 (version 1).
After making changes to the Lua code, I deployed the updated proxy as proxy_1 (version 2).
Now, I need to configure traffic routing such that x% of the traffic is directed to proxy_1 (version 1), while (100-x)% of the traffic goes to proxy_1 (version 2).
Beta Was this translation helpful? Give feedback.
All reactions