-
Notifications
You must be signed in to change notification settings - Fork 70
[Update] NodeBalancer Config with ProxyProtocol #317
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
[Update] NodeBalancer Config with ProxyProtocol #317
Conversation
enough for it to be considered unhealthy and taken out of rotation. | ||
example: true | ||
x-linode-cli-display: 6 | ||
proxy_protocol: |
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.
@hzoppetti it accepts "v1"
, "v2"
, and "none"
, so it is not nullable
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.
updated enum
openapi.yaml
Outdated
enables the termination of TCP connections. | ||
|
||
|
||
Linode NodeBalancers supports two versions, `v1` and `v2`. `v1` is human readable |
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.
Another comment. Comparing this to other descriptions in the same section (e.g. stickiness
) , this is better be formatted as
- If set to
none
NodeBalancer doesn't send any auxiliary data over TCP connections - If set to
v1
the version 1 (human readable) of ProxyProtocol is used - If set to
v2
the version 2 (binary) of ProxyProtocol is used
|
||
If ommited from the configuration, the default is `none`. | ||
type: string | ||
enum: |
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.
none
should come first (compare with other items, e.g., stickiness
)
…os-0.21.1 Bump axios from 0.19.0 to 0.21.1
updated NodeBalancer config to include ProxyProtocol