open-nomad/website/source/docs/commands/operator/autopilot-set-config.html.md.erb

59 lines
2 KiB
Plaintext
Raw Normal View History

2017-12-18 21:16:33 +00:00
---
layout: "docs"
page_title: "Commands: operator autopilot set-config"
sidebar_current: "docs-commands-operator-autopilot-set-config"
description: >
Modify the current Autopilot configuration.
---
2018-03-22 20:39:18 +00:00
# Command: operator autopilot set-config
2017-12-18 21:16:33 +00:00
The Autopilot operator command is used to set the current Autopilot configuration. See the
2018-06-22 20:46:35 +00:00
[Autopilot Guide](/guides/operations/autopilot.html) for more information about Autopilot.
2017-12-18 21:16:33 +00:00
## Usage
```
nomad operator autopilot set-config [options]
```
## General Options
<%= partial "docs/commands/_general_options" %>
## Set Config Options
* `-cleanup-dead-servers` - Specifies whether to enable automatic removal of dead servers
upon the successful joining of new servers to the cluster. Must be one of `[true|false]`.
* `-last-contact-threshold` - Controls the maximum amount of time a server can go without contact
from the leader before being considered unhealthy. Must be a duration value such as `200ms`.
* `-max-trailing-logs` - Controls the maximum number of log entries that a server can trail
the leader by before being considered unhealthy.
* `-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
running Raft protocol version 3 or higher. Must be a duration value such as `10s`.
* `-disable-upgrade-migration` - (Enterprise-only) Controls whether Nomad will avoid promoting
new servers until it can perform a migration. Must be one of `[true|false]`.
2018-04-13 01:04:53 +00:00
* `-redundancy-zone-tag`- (Enterprise-only) Controls the
2018-06-22 20:46:35 +00:00
[`redundancy_zone`](/docs/configuration/server.html#redundancy_zone)
2018-04-13 01:04:53 +00:00
used for separating servers into different redundancy zones.
* `-upgrade-version-tag` - (Enterprise-only) Controls the
2018-06-22 20:46:35 +00:00
[`upgrade_version`](/docs/configuration/server.html#upgrade_version) to
2018-04-13 01:04:53 +00:00
use for version info when performing upgrade migrations. If left blank, the
Nomad version will be used.
2017-12-18 21:16:33 +00:00
The output looks like this:
```
Configuration updated!
```
The return code will indicate success or failure.