Skip to content
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

[chore] Update FLB docs for defaultAlgo. #168

Merged
merged 2 commits into from
Jan 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/fsm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ The following table lists the configurable parameters of the fsm chart and their
| fsm.featureFlags.enableValidateTLSRouteHostnames | bool | `true` | Enable validate TLS route hostnames, enforce the hostname is DNS name not IP address |
| fsm.flb.baseUrl | string | `"http://localhost:1337"` | |
| fsm.flb.defaultAddressPool | string | `"default"` | |
| fsm.flb.defaultAlgo | string | `"rr"` | |
| fsm.flb.defaultAlgo | string | `"rr"` | Default algorithm for load balancing, default value is `"rr"`(Round Robin). Available optiosn are `"ch"`(Consistency Hash) and `"lc"`(Least Connections) |
| fsm.flb.enabled | bool | `false` | |
| fsm.flb.k8sCluster | string | `"UNKNOWN"` | |
| fsm.flb.password | string | `"admin"` | |
Expand Down
3 changes: 2 additions & 1 deletion charts/fsm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1070,6 +1070,7 @@ fsm:
password: admin
k8sCluster: "UNKNOWN"
defaultAddressPool: default
# -- Default algorithm for load balancing, default value is `"rr"`(Round Robin). Available optiosn are `"ch"`(Consistency Hash) and `"lc"`(Least Connections)
defaultAlgo: rr

#
Expand Down Expand Up @@ -1168,4 +1169,4 @@ clusterSet:
zone: default
group: default
name: local
controlPlaneUID: ""
controlPlaneUID: ""
Loading