docs: add missing Autopilot -min-quorum documentation (#7192)

This commit is contained in:
Michael Hofer 2020-02-03 10:59:53 +01:00 committed by GitHub
parent e158922615
commit 4ab3af0ede
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -42,7 +42,7 @@ func (c *cmd) init() {
"Controls the maximum number of log entries that a server can trail the "+ "Controls the maximum number of log entries that a server can trail the "+
"leader by before being considered unhealthy.") "leader by before being considered unhealthy.")
c.flags.Var(&c.minQuorum, "min-quorum", c.flags.Var(&c.minQuorum, "min-quorum",
"Sets the minimum number of of servers required in a cluster before autopilot "+ "Sets the minimum number of servers required in a cluster before autopilot "+
"is allowed to prune dead servers.") "is allowed to prune dead servers.")
c.flags.Var(&c.lastContactThreshold, "last-contact-threshold", c.flags.Var(&c.lastContactThreshold, "last-contact-threshold",
"Controls the maximum amount of time a server can go without contact "+ "Controls the maximum amount of time a server can go without contact "+

View File

@ -108,7 +108,7 @@ The table below shows this endpoint's support for
- `MaxTrailingLogs` `(int: 250)` specifies the maximum number of log entries - `MaxTrailingLogs` `(int: 250)` specifies the maximum number of log entries
that a server can trail the leader by before being considered unhealthy. that a server can trail the leader by before being considered unhealthy.
- `MinQuorum` `int: 0` - specifies the minimum number of servers needed before - `MinQuorum` `(int: 0)` - specifies the minimum number of servers needed before
Autopilot can prune dead servers. Autopilot can prune dead servers.
- `ServerStabilizationTime` `(string: "10s")` - Specifies the minimum amount of - `ServerStabilizationTime` `(string: "10s")` - Specifies the minimum amount of

View File

@ -71,6 +71,9 @@ from the leader before being considered unhealthy. Must be a duration value such
* `-max-trailing-logs` - Controls the maximum number of log entries that a server can trail * `-max-trailing-logs` - Controls the maximum number of log entries that a server can trail
the leader by before being considered unhealthy. the leader by before being considered unhealthy.
* `-min-quorum` - Sets the minimum number of servers required in a cluster
before autopilot is allowed to prune dead servers.
* `-server-stabilization-time` - Controls the minimum amount of time a server must be stable in * `-server-stabilization-time` - Controls the minimum amount of time a server must be stable in
the 'healthy' state before being added to the cluster. Only takes effect if all servers are the 'healthy' state before being added to the cluster. Only takes effect if all servers are
running Raft protocol version 3 or higher. Must be a duration value such as `10s`. running Raft protocol version 3 or higher. Must be a duration value such as `10s`.