Open
Conversation
npolshakova
reviewed
Apr 1, 2026
artberger
reviewed
Apr 7, 2026
npolshakova
reviewed
Apr 8, 2026
npolshakova
reviewed
Apr 8, 2026
| namespace: default | ||
| labels: | ||
| app: httpbun | ||
| spec: |
Contributor
There was a problem hiding this comment.
I think we want to add replicas: 2 to work with the canary and stable example you have.
npolshakova
reviewed
Apr 8, 2026
npolshakova
reviewed
Apr 8, 2026
| name: httpbun-stable-service | ||
| namespace: default | ||
| labels: | ||
| app: httpbun |
Contributor
There was a problem hiding this comment.
Let's add a version: v1 label
npolshakova
reviewed
Apr 8, 2026
| {{< /tabs >}} | ||
|
|
||
| Congratulations, you successfully rolled out a new version of your app without downtime by using the HTTP gateway that is managed by kgateway v2. After a rollout, you typically perform tasks such as the following: | ||
| 5. Check that the `httpbun` Pod is running the `latest` image. |
Contributor
There was a problem hiding this comment.
I think before this step, let's show the traffic split.
Something like:
❯ kubectl get httproute httpbun-http-route -o jsonpath='{.spec.rules[0].backendRefs}' | jq
[
{
"group": "",
"kind": "Service",
"name": "httpbun-stable-service",
"port": 3090,
"weight": 70
},
{
"group": "",
"kind": "Service",
"name": "httpbun-canary-service",
"port": 3090,
"weight": 30
}
]
npolshakova
reviewed
Apr 8, 2026
npolshakova
reviewed
Apr 8, 2026
Co-authored-by: Nina Polshakova <ninapolshakova@gmail.com>
Co-authored-by: Nina Polshakova <ninapolshakova@gmail.com>
Co-authored-by: Nina Polshakova <ninapolshakova@gmail.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is part of kgateway-dev/kgateway.dev#606