mirror of https://github.com/status-im/consul.git
Address more review comments
This commit is contained in:
parent
d4fb271a3d
commit
7e58245d4d
|
@ -12,15 +12,15 @@ This guide describes critical aspects of operating a Consul cluster that's run i
|
|||
## Consul Official Docker Image
|
||||
Consul's official Docker images are tagged with version numbers. For example, `docker pull consul:0.9.0` will pull the 0.9.0 Consul release image.
|
||||
|
||||
For major releases, make sure to read our [upgrade guides](/docs/upgrade-specific.html) before upgrading your cluster.
|
||||
For major releases, make sure to read our [upgrade guides](/docs/upgrade-specific.html) before upgrading a cluster.
|
||||
|
||||
To get a development mode consul instance running the latest version, run `docker run consul`.
|
||||
To get a development mode Consul instance running the latest version, run `docker run consul`.
|
||||
|
||||
More instructions on how to get started using this image are available at the [official Docker repository page](https://store.docker.com/images/consul)
|
||||
|
||||
## Data Directory Persistence
|
||||
|
||||
The container exposes its data directory, `/consul/data`, as a [volume](https://docs.docker.com/engine/tutorials/dockervolumes/). This is where Consul will place its persisted state.
|
||||
The container exposes its data directory, `/consul/data`, as a [volume](https://docs.docker.com/engine/tutorials/dockervolumes/). This is where Consul will store its persisted state.
|
||||
|
||||
For clients, this stores some information about the cluster and the client's health checks in case the container is restarted. If the volume on a client disappears, it doesn't affect cluster operations.
|
||||
|
||||
|
@ -35,23 +35,23 @@ Note that the configuration directory is not exposed as a volume, and will not p
|
|||
|
||||
Configuration can also be added by passing the configuration JSON via environment variable CONSUL_LOCAL_CONFIG. Example:
|
||||
|
||||
```
|
||||
docker run \
|
||||
-d \
|
||||
-e CONSUL_LOCAL_CONFIG='{
|
||||
"datacenter":"us_west",
|
||||
"server":true,
|
||||
"enable_debug":true
|
||||
}' \
|
||||
consul agent -server -bootstrap-expect=3
|
||||
```sh
|
||||
$ docker run \
|
||||
-d \
|
||||
-e CONSUL_LOCAL_CONFIG='{
|
||||
"datacenter":"us_west",
|
||||
"server":true,
|
||||
"enable_debug":true
|
||||
}' \
|
||||
consul agent -server -bootstrap-expect=3
|
||||
```
|
||||
|
||||
## Networking
|
||||
When run inside a container, Consul's IP addresses need to be setup properly. Consul has to be configured with an appropriate _cluster address_ as well as a _client address._ In some cases, it might also require configuring an _advertise_address_.
|
||||
When running inside a container, Consul must be configured with an appropriate _cluster address_ and _client address_. In some cases, it may also require configuring an _advertise address_.
|
||||
|
||||
* **Cluster Address** - The address at which other Consul agents may contact a given agent. This is also referred to as the bind address.
|
||||
|
||||
* **Client Address** - The address where other processes on the host contact Consul in order to make HTTP or DNS requests.
|
||||
* **Client Address** - The address where other processes on the host contact Consul in order to make HTTP or DNS requests. Consider setting this to localhost or `127.0.0.1` to only allow processes on the same container to make http/DNS requests.
|
||||
|
||||
* **Advertise Address** - The advertise address is used to change the address that we advertise to other nodes in the cluster. This defaults to the bind address. Consider using this if you use NAT tables in your environment, or in scenarios where you have a routable address that cannot be bound
|
||||
|
||||
|
@ -59,37 +59,55 @@ You will need to tell Consul what its cluster address is when starting so that i
|
|||
|
||||
1. Environment Variables: Use the `CONSUL_CLIENT_INTERFACE` and `CONSUL_BIND_INTERFACE` environment variables. In the following example `eth0` is the network interface of the container.
|
||||
|
||||
```
|
||||
docker run \
|
||||
-d \
|
||||
-e CONSUL_CLIENT_INTERFACE='eth0' \
|
||||
-e CONSUL_BIND_INTERFACE='eth0' \
|
||||
consul agent -server -bootstrap-expect=3
|
||||
```sh
|
||||
$ docker run \
|
||||
-d \
|
||||
-e CONSUL_CLIENT_INTERFACE='eth0' \
|
||||
-e CONSUL_BIND_INTERFACE='eth0' \
|
||||
consul agent -server -bootstrap-expect=3
|
||||
```
|
||||
2. Address Templates: You can declaratively specify the client and cluster addresses using the formats described in the [go-socketaddr](https://github.com/hashicorp/go-sockaddr) library.
|
||||
In the following example, the client and bind addresses are declaratively specified for the container network interface 'eth0'
|
||||
|
||||
```
|
||||
docker run \
|
||||
consul agent -server \
|
||||
-client='{{ GetInterfaceIP "eth0" }}' \
|
||||
-bind='{{ GetInterfaceIP "eth0" }}' \
|
||||
-bootstrap-expect=3
|
||||
```sh
|
||||
$ docker run \
|
||||
consul agent -server \
|
||||
-client='{{ GetInterfaceIP "eth0" }}' \
|
||||
-bind='{{ GetInterfaceIP "eth0" }}' \
|
||||
-bootstrap-expect=3
|
||||
```
|
||||
|
||||
## Stopping and Restarting Containers
|
||||
Consul containers can be stopped using the `docker stop <container_id>` command and restarted using `docker start <container_id>`. As long as there are enough servers in the cluster to maintain [quorum](/docs/internals/consensus.html#deployment-table), Consul's [Autopilot](/docs/guides/autopilot.html) feature will handle removing servers whose containers were stopped. Autopilot's default settings are already configured correctly. If you override them, make sure that the following [settings](/docs/agent/options.html#autopilot) are appropriate.
|
||||
The official Consul container supports stopping, starting, and restarting. To stop a container, run `docker stop`:
|
||||
|
||||
```sh
|
||||
$ docker stop <container_id>
|
||||
```
|
||||
|
||||
To start a container, run `docker start`:
|
||||
|
||||
```sh
|
||||
$ docker start <container_id>
|
||||
```
|
||||
|
||||
To do an in-memory reload, send a SIGHUP to the container:
|
||||
|
||||
```sh
|
||||
$ docker kill --signal=HUP <container_id>
|
||||
```
|
||||
|
||||
As long as there are enough servers in the cluster to maintain [quorum](/docs/internals/consensus.html#deployment-table), Consul's [Autopilot](/docs/guides/autopilot.html) feature will handle removing servers whose containers were stopped. Autopilot's default settings are already configured correctly. If you override them, make sure that the following [settings](/docs/agent/options.html#autopilot) are appropriate.
|
||||
|
||||
* `cleanup_dead_servers` must be set to true to make sure that a stopped container is removed from the cluster.
|
||||
* `last_contact_threshold` should be reasonably small, so that dead servers are removed quickly.
|
||||
* `server_stabilization_time`should be sufficiently large( on the order of several seconds) so that unstable servers are not added to the cluster until they stabilize.
|
||||
|
||||
If a container that was running a leader is stopped, leader election will be triggered causing another server in the cluster to assume leadership.
|
||||
If the container running the currently-elected Consul server leader is stopped, a leader election will trigger. This event will cause a new Consul server in the cluster to assume leadership.
|
||||
|
||||
When a previously stopped server container is restarted using `docker start <container_id>`, and it is configured to obtain a new IP, Autopilot will add it back to the set of Raft peers with the same node-id and the new IP address, after which it can participate as a server again.
|
||||
|
||||
## Known Issues
|
||||
**Consul does not currently gracefully handle the situation where all nodes in the cluster running inside a container are restarted at the same time, and they all obtain new IP addresses.** This is because the underlying Raft layer persists the IP address and needs it for leader election operations. Operators must carefully orchestrate restarts of Consul containers that have ephemeral IP addresses to do restarts in small numbers, so that they can gracefully leave the cluster and re-join with their new IP address.
|
||||
|
||||
**Snapshot close error** Due to a [known issue](https://github.com/docker/libnetwork/issues/1204) with half close support in Docker, you will see an error message `[ERR] consul: Failed to close snapshot: write tcp <source>-><destination>: write: broken pipe` when saving snapshots. This doesn't affect saving and restoring snapshots when running in Docker.
|
||||
**Snapshot close error** Due to a [known issue](https://github.com/docker/libnetwork/issues/1204) with half close support in Docker, you will see an error message `[ERR] consul: Failed to close snapshot: write tcp <source>-><destination>: write: broken pipe` when saving snapshots. This does not affect saving and restoring snapshots when running in Docker.
|
||||
|
||||
|
|
Loading…
Reference in New Issue