Find a file
Seth Vargo b20902b7e2
Parse values given to ?passing in the API
This PR fixes GH-2212 in the most backwards-compatible way I can think
of. If the user does not pass a value for `?passing`, it's assumed to be
true, which mirrors the current behavior. However, if the user passes
any value for passing, that value is parsed as a bool using strconv.

It's important to note that this is technically a breaking change.
Previously using `?passing=false` would return only passing nodes. While
this behavior is obviously incorrect, it was the previous behavior. We
should call this out very clearly in the CHANGELOG.
2017-06-09 14:36:00 -04:00
acl
api agent: support custom header and method for http checks (#3106) 2017-06-07 01:11:56 +02:00
bench
command Parse values given to ?passing in the API 2017-06-09 14:36:00 -04:00
consul Removes t.Parallel() on any consul package tests that use a test server. 2017-06-08 21:34:07 -07:00
contrib
demo/vagrant-cluster
ipaddr agent: move isAddrANY to separate package 2017-05-15 22:44:43 +02:00
lib
logger
scripts Removes obsolete Windows build scripts. 2017-06-09 01:13:28 -07:00
snapshot test: add helper for ioutil.TempDir/TempFile 2017-05-12 22:12:47 +02:00
terraform Update install.sh for Consul 0.8.3 2017-05-12 12:52:59 -04:00
test test: log exit code in cluster.bash 2017-06-08 14:06:10 +02:00
testrpc
testutil test: shutdown server properly 2017-05-31 00:29:22 +02:00
tlsutil Add a path for transitioning to TLS on an existing cluster (#3001) 2017-05-10 14:25:48 -07:00
types
ui Updates static assets to latest. 2017-06-07 21:16:59 -07:00
vendor vendor: Update github.com/shirou/gopsutil 2017-06-02 07:51:08 +02:00
version Puts the tree into 0.9.0 dev mode. 2017-06-09 08:27:15 -07:00
watch Merge pull request #2621 from alicebob/devwatch 2017-06-02 09:06:02 -07:00
website Bumps the website version to 0.8.4. 2017-06-09 08:03:24 -07:00
.gitattributes
.gitignore
.travis.yml Bumps Go version to 1.8.3. 2017-05-24 19:35:01 -07:00
CHANGELOG.md Puts the tree into 0.9.0 dev mode. 2017-06-09 08:27:15 -07:00
commands.go
GNUmakefile Makes test target fail based on return code from go test. 2017-06-02 15:09:07 -07:00
ISSUE_TEMPLATE.md
LICENSE
main.go
main_test.go
README.md Removes obsolete Windows batch file and instructions. 2017-06-09 01:11:38 -07:00

Consul Build Status Join the chat at https://gitter.im/hashicorp-consul/Lobby

Consul is a tool for service discovery and configuration. Consul is distributed, highly available, and extremely scalable.

Consul provides several key features:

  • Service Discovery - Consul makes it simple for services to register themselves and to discover other services via a DNS or HTTP interface. External services such as SaaS providers can be registered as well.

  • Health Checking - Health Checking enables Consul to quickly alert operators about any issues in a cluster. The integration with service discovery prevents routing traffic to unhealthy hosts and enables service level circuit breakers.

  • Key/Value Storage - A flexible key/value store enables storing dynamic configuration, feature flagging, coordination, leader election and more. The simple HTTP API makes it easy to use anywhere.

  • Multi-Datacenter - Consul is built to be datacenter aware, and can support any number of regions without complex configuration.

Consul runs on Linux, Mac OS X, FreeBSD, Solaris, and Windows.

Quick Start

An extensive quick start is viewable on the Consul website:

https://www.consul.io/intro/getting-started/install.html

Documentation

Full, comprehensive documentation is viewable on the Consul website:

https://www.consul.io/docs

Developing Consul

If you wish to work on Consul itself, you'll first need Go installed (version 1.8+ is required). Make sure you have Go properly installed, including setting up your GOPATH.

Next, clone this repository into $GOPATH/src/github.com/hashicorp/consul and then just type make. In a few moments, you'll have a working consul executable:

$ make
...
$ bin/consul
...

Note: make will build all os/architecture combinations. Set the environment variable CONSUL_DEV=1 to build it just for your local machine's os/architecture, or use make dev.

Note: make will also place a copy of the binary in the first part of your $GOPATH.

You can run tests by typing make test.

If you make any changes to the code, run make format in order to automatically format the code according to Go standards.

Vendoring

Consul currently uses govendor for vendoring.