• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.changelog/H03-May-2022-

.circleci/H15-Jul-2021-

.github/H15-Jul-2021-

acl/H15-Jul-2021-

agent/H15-Jul-2021-

api/H15-Jul-2021-

bench/H03-May-2022-

build-support/H15-Jul-2021-

command/H15-Jul-2021-

connect/H15-Jul-2021-

contributing/H15-Jul-2021-

demo/H15-Jul-2021-

grafana/H15-Jul-2021-

internal/H15-Jul-2021-

ipaddr/H15-Jul-2021-

lib/H15-Jul-2021-

logging/H15-Jul-2021-

proto/H15-Jul-2021-

sdk/H15-Jul-2021-

sentinel/H15-Jul-2021-

service_os/H15-Jul-2021-

snapshot/H15-Jul-2021-

terraform/H15-Jul-2021-

test/H03-May-2022-

testrpc/H15-Jul-2021-

tlsutil/H15-Jul-2021-

types/H15-Jul-2021-

ui/H15-Jul-2021-

vendor/H03-May-2022-

version/H15-Jul-2021-

website/H03-May-2022-

.dockerignoreH A D15-Jul-202115

.gitignoreH A D15-Jul-20211.1 KiB

.golangci.ymlH A D15-Jul-20212 KiB

.hashibot.hclH A D15-Jul-20211.8 KiB

CHANGELOG.mdH A D15-Jul-2021294.7 KiB

GNUmakefileH A D15-Jul-202114.4 KiB

INTERNALS.mdH A D15-Jul-202137

LICENSEH A D15-Jul-202115.6 KiB

NOTICE.mdH A D15-Jul-2021236

README.mdH A D15-Jul-20212.9 KiB

VagrantfileH A D15-Jul-20211.4 KiB

codecov.ymlH A D15-Jul-20211.2 KiB

go.modH A D15-Jul-20214.3 KiB

go.sumH A D15-Jul-202169.7 KiB

main.goH A D15-Jul-20211.1 KiB

main_test.goH A D15-Jul-202113

package-lock.jsonH A D15-Jul-20219.1 KiB

README.md

1# Consul [![CircleCI](https://circleci.com/gh/hashicorp/consul/tree/main.svg?style=svg)](https://circleci.com/gh/hashicorp/consul/tree/main) [![Discuss](https://img.shields.io/badge/discuss-consul-ca2171.svg?style=flat)](https://discuss.hashicorp.com/c/consul)
2
3* Website: https://www.consul.io
4* Tutorials: [HashiCorp Learn](https://learn.hashicorp.com/consul)
5* Forum: [Discuss](https://discuss.hashicorp.com/c/consul)
6
7Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
8
9Consul provides several key features:
10
11* **Multi-Datacenter** - Consul is built to be datacenter aware, and can
12  support any number of regions without complex configuration.
13
14* **Service Mesh/Service Segmentation** - Consul Connect enables secure service-to-service
15  communication with automatic TLS encryption and identity-based authorization. Applications
16  can use sidecar proxies in a service mesh configuration to establish TLS
17  connections for inbound and outbound connections without being aware of Connect at all.
18
19* **Service Discovery** - Consul makes it simple for services to register
20  themselves and to discover other services via a DNS or HTTP interface.
21  External services such as SaaS providers can be registered as well.
22
23* **Health Checking** - Health Checking enables Consul to quickly alert
24  operators about any issues in a cluster. The integration with service
25  discovery prevents routing traffic to unhealthy hosts and enables service
26  level circuit breakers.
27
28* **Key/Value Storage** - A flexible key/value store enables storing
29  dynamic configuration, feature flagging, coordination, leader election and
30  more. The simple HTTP API makes it easy to use anywhere.
31
32Consul runs on Linux, Mac OS X, FreeBSD, Solaris, and Windows. A commercial
33version called [Consul Enterprise](https://www.hashicorp.com/products/consul)
34is also available.
35
36**Please note**: We take Consul's security and our users' trust very seriously. If you
37believe you have found a security issue in Consul, please [responsibly disclose](https://www.hashicorp.com/security#vulnerability-reporting) by
38contacting us at security@hashicorp.com.
39
40## Quick Start
41
42A few quick start guides are available on the Consul website:
43
44* **Standalone binary install:** https://learn.hashicorp.com/tutorials/consul/get-started-install
45* **Minikube install:** https://learn.hashicorp.com/tutorials/consul/kubernetes-minikube
46* **Kind install:** https://learn.hashicorp.com/tutorials/consul/kubernetes-kind
47* **Kubernetes install:** https://learn.hashicorp.com/tutorials/consul/kubernetes-deployment-guide
48
49## Documentation
50
51Full, comprehensive documentation is available on the Consul website:
52
53https://www.consul.io/docs
54
55## Contributing
56
57Thank you for your interest in contributing! Please refer to [CONTRIBUTING.md](https://github.com/hashicorp/consul/blob/main/.github/CONTRIBUTING.md) for guidance.
58