-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doctl/commands: Load Balancers updates (#1307)
* doctl/commands: move Load Balancers forwarding rules details to embedded file * doctl/commands: add UDP protocol to Load Balancer docs This has been released for a while. * doctl/commands: add HTTP/3 protocol to Load Balancer docs This is currently in beta. * doctl/commands: move Load Balancers details to embedded file Co-authored-by: Andrew Starr-Bochicchio <[email protected]>
- Loading branch information
1 parent
c0ae193
commit 076f589
Showing
3 changed files
with
36 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
- `entry_protocol`: The entry protocol used for traffic to the load balancer. Possible values are: `http`, `https`, `http2`, `http3`, `tcp`, or `udp`. | ||
- `entry_port`: The entry port used for incoming traffic to the load balancer. | ||
- `target_protocol`: The target protocol used for traffic from the load balancer to the backend Droplets. Possible values are: `http`, `https`, `http2`, `http3`, `tcp`, or `udp`. | ||
- `target_port`: The target port used to send traffic from the load balancer to the backend Droplets. | ||
- `certificate_id`: The ID of the TLS certificate used for SSL termination, if enabled. Can be obtained with `doctl certificate list` | ||
- `tls_passthrough`: Whether SSL passthrough is enabled on the load balancer. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
- The load balancer's ID | ||
- The load balancer's name | ||
- The load balancer's IP address | ||
- The load balancer's traffic algorithm. Must | ||
be either `round_robin` or `least_connections` | ||
- The current state of the load balancer. This can be `new`, `active`, or `errored`. | ||
- The load balancer's creation date, in ISO8601 combined date and time format. | ||
- The load balancer's forwarding rules. See `doctl compute load-balancer add-forwarding-rules --help` for a list. | ||
- The `health_check` settings for the load balancer. | ||
- The `sticky_sessions` settings for the load balancer. | ||
- The datacenter region the load balancer is located in. | ||
- The Droplet tag corresponding to the Droplets assigned to the load balancer. | ||
- The IDs of the Droplets assigned to the load balancer. | ||
- Whether HTTP request to the load balancer on port 80 will be redirected to HTTPS on port 443. | ||
- Whether the PROXY protocol is in use on the load balancer. |
This file contains 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