docs(Support KB): How-to-check-the-behavior-of-retries-attribute.md#4815
docs(Support KB): How-to-check-the-behavior-of-retries-attribute.md#4815kong-kiransharma wants to merge 9 commits intomainfrom
Conversation
first article to test and document the end to end process
✅ Deploy Preview for kongdeveloper ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
kong-kiransharma
left a comment
There was a problem hiding this comment.
modified the format to see if the checks succeed
| tldr: | ||
| q: retries attribute of service object | ||
| a: | | ||
| The articles describe the end-to-end steps of working with service object | ||
|
|
There was a problem hiding this comment.
Think of this as a Question then an answer. So
Q: How do I check the behavior of the retries attribute
A: When an upstream is unreachable, Kong retries the connection up to the configured number of times (e.g., retries=5). You can observe this in debug logs.
| Below is an example of installing Kong on Docker. | ||
|
|
||
| Please install Kong on Docker by following the official guide: Kong Docker Installation . |
There was a problem hiding this comment.
This was copy and pasted from the original. Do you think we need it?
| ## 2. Does the service object only retry when an upstream object is set? | ||
|
|
||
| No, the service object can retry requests even if an upstream object has not been set. | ||
|
|
||
| ## 3. Does the service object retry on HTTP 4xx/5xx responses? | ||
|
|
||
| No, retries happen only for TCP connection errors. However, Kong can perform HTTP and TCP health checks using the upstream object. For more details, see the Health Checks and Circuit Breakers documentation . | ||
|
|
There was a problem hiding this comment.
You can add these to the front matter using the following syntax:
faqs:
- q: What happens when an admin doesn't have a role assigned?
a: If an admin is in a Workspace without a role, they can’t see or interact with anything. Admins can manage entities inside Workspaces, including users and their roles.
- q: What is a super admin?
a: A super admin is a role that has the ability to assign and modify RBAC roles and permissions. A generic admin without this role can't manage RBAC.
- q: How can I invite and manage admins in Kong Manager?
a: If you want to manage admins from the Kong Manager UI, go to Teams > Admins. From here, you can invite new admins, manage existing admins, and find invitation links for invited admins.
- q: Can admins manage multiple Workspaces?
a: No, each admin is specific to one Workspace.
kong-kiransharma
left a comment
There was a problem hiding this comment.
modified with the comments.
|
@Guaris I made the suggested changes but I don't think my rendering of faq section is right. I played around with spacing & new line but it wasn't getting any nicer. Perhaps you could look into this for me once. |
first article to test and document the end to end process.