Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ ARGS:
[health-check.check-max-retries] Number of consecutive unsuccessful health checks after which the server will be considered dead
[health-check.mysql-config.user] MySQL user to use for the health check
[health-check.pgsql-config.user] PostgreSQL user to use for the health check
[health-check.http-config.uri] HTTP URI used for the health check
[health-check.http-config.uri] HTTP path used for the health check
[health-check.http-config.method] HTTP method used for the health check
[health-check.http-config.code] HTTP response code expected for a successful health check
[health-check.http-config.host-header] HTTP host header used for the health check
[health-check.https-config.uri] HTTP URI used for the health check
[health-check.https-config.uri] HTTP path used for the health check
[health-check.https-config.method] HTTP method used for the health check
[health-check.https-config.code] HTTP response code expected for a successful health check
[health-check.https-config.host-header] HTTP host header used for the health check
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ ARGS:
[check-send-proxy] Defines whether proxy protocol should be activated for the health check
[mysql-config.user] MySQL user to use for the health check
[pgsql-config.user] PostgreSQL user to use for the health check
[http-config.uri] HTTP URI used for the health check
[http-config.uri] HTTP path used for the health check
[http-config.method] HTTP method used for the health check
[http-config.code] HTTP response code expected for a successful health check
[http-config.host-header] HTTP host header used for the health check
[https-config.uri] HTTP URI used for the health check
[https-config.uri] HTTP path used for the health check
[https-config.method] HTTP method used for the health check
[https-config.code] HTTP response code expected for a successful health check
[https-config.host-header] HTTP host header used for the health check
Expand Down
8 changes: 4 additions & 4 deletions docs/commands/lb.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,11 @@ scw lb backend create [arg=value ...]
| health-check.check-max-retries | | Number of consecutive unsuccessful health checks after which the server will be considered dead |
| health-check.mysql-config.user | | MySQL user to use for the health check |
| health-check.pgsql-config.user | | PostgreSQL user to use for the health check |
| health-check.http-config.uri | | HTTP URI used for the health check |
| health-check.http-config.uri | | HTTP path used for the health check |
| health-check.http-config.method | | HTTP method used for the health check |
| health-check.http-config.code | | HTTP response code expected for a successful health check |
| health-check.http-config.host-header | | HTTP host header used for the health check |
| health-check.https-config.uri | | HTTP URI used for the health check |
| health-check.https-config.uri | | HTTP path used for the health check |
| health-check.https-config.method | | HTTP method used for the health check |
| health-check.https-config.code | | HTTP response code expected for a successful health check |
| health-check.https-config.host-header | | HTTP host header used for the health check |
Expand Down Expand Up @@ -522,11 +522,11 @@ scw lb backend update-healthcheck [arg=value ...]
| check-send-proxy | | Defines whether proxy protocol should be activated for the health check |
| mysql-config.user | | MySQL user to use for the health check |
| pgsql-config.user | | PostgreSQL user to use for the health check |
| http-config.uri | | HTTP URI used for the health check |
| http-config.uri | | HTTP path used for the health check |
| http-config.method | | HTTP method used for the health check |
| http-config.code | | HTTP response code expected for a successful health check |
| http-config.host-header | | HTTP host header used for the health check |
| https-config.uri | | HTTP URI used for the health check |
| https-config.uri | | HTTP path used for the health check |
| https-config.method | | HTTP method used for the health check |
| https-config.code | | HTTP response code expected for a successful health check |
| https-config.host-header | | HTTP host header used for the health check |
Expand Down
8 changes: 4 additions & 4 deletions internal/namespaces/lb/v1/lb_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ func lbBackendCreate() *core.Command {
},
{
Name: "health-check.http-config.uri",
Short: `HTTP URI used for the health check`,
Short: `HTTP path used for the health check`,
Required: false,
Deprecated: false,
Positional: false,
Expand Down Expand Up @@ -937,7 +937,7 @@ func lbBackendCreate() *core.Command {
},
{
Name: "health-check.https-config.uri",
Short: `HTTP URI used for the health check`,
Short: `HTTP path used for the health check`,
Required: false,
Deprecated: false,
Positional: false,
Expand Down Expand Up @@ -1517,7 +1517,7 @@ func lbBackendUpdateHealthcheck() *core.Command {
},
{
Name: "http-config.uri",
Short: `HTTP URI used for the health check`,
Short: `HTTP path used for the health check`,
Required: false,
Deprecated: false,
Positional: false,
Expand Down Expand Up @@ -1545,7 +1545,7 @@ func lbBackendUpdateHealthcheck() *core.Command {
},
{
Name: "https-config.uri",
Short: `HTTP URI used for the health check`,
Short: `HTTP path used for the health check`,
Required: false,
Deprecated: false,
Positional: false,
Expand Down
Loading