Go to file
Paul Banks d1810ba338 Make proxy only listen after initial certs are fetched 2018-06-25 12:25:40 -07:00
.github/ISSUE_TEMPLATE
acl acl: IntentionDefault => IntentionDefaultAllow 2018-06-14 09:41:55 -07:00
agent Make proxy only listen after initial certs are fetched 2018-06-25 12:25:40 -07:00
api Misc test fixes 2018-06-25 12:25:39 -07:00
bench
command Refactor to use embedded struct. 2018-06-25 12:25:39 -07:00
connect Make proxy only listen after initial certs are fetched 2018-06-25 12:25:40 -07:00
demo
ipaddr
lib Refactor to use embedded struct. 2018-06-25 12:25:39 -07:00
logger
scripts Update UI for beta3 2018-06-25 12:25:16 -07:00
sentinel
snapshot
terraform
test
testrpc
testutil Misc test fixes 2018-06-25 12:25:39 -07:00
tlsutil
types
ui
ui-v2 Fix linting typo, caused the selection of future services to break 2018-06-25 12:25:40 -07:00
vendor Remove go-diff vendor as assert.JSONEq output is way better for our case 2018-06-25 12:25:39 -07:00
version version: set the right version to beta3 2018-06-25 12:25:16 -07:00
watch Misc test fixes 2018-06-25 12:25:39 -07:00
website Add proxy telemetry to docs 2018-06-25 12:25:39 -07:00
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md Formatting change keeps coming up running make 2018-06-25 12:25:16 -07:00
GNUmakefile Remove temporary hacks from Makefile 2018-06-14 09:42:10 -07:00
INTERNALS.md
LICENSE
README.md
Vagrantfile
key.pem Working proxy config reload tests 2018-06-14 09:42:05 -07:00
main.go Abandon daemonize for simpler solution (preserving history): 2018-06-25 12:24:10 -07:00
main_test.go

README.md

This is a temporary README. We'll restore the old README prior to PR upstream.

Consul Connect

This repository is the forked repository for Consul Connect work to happen in private prior to public release. This README will explain how to safely use this fork, how to bring in upstream changes, etc.

Cloning

To use this repository, clone it into your GOPATH as usual but you must rename consul-connect to consul so that Go imports continue working as usual.

Important: Never Modify Master

NEVER MODIFY MASTER! NEVER MODIFY MASTER!

We want to keep the "master" branch equivalent to OSS master. This will make rebasing easy for master. Instead, we'll use the branch f-connect. All feature branches should branch from f-connect and make PRs against f-connect.

When we're ready to merge back to upstream, we can make a single mega PR merging f-connect into OSS master. This way we don't have a sudden mega push to master on OSS.

Creating a Feature Branch

To create a feature branch, branch from f-connect:

git checkout f-connect
git checkout -b my-new-branch

All merged Connect features will be in f-connect, so you want to work from that branch. When making a PR for your feature branch, target the f-connect branch as the merge target. You can do this by using the dropdowns in the GitHub UI when creating a PR.

Syncing Upstream

First update our local master:

# This has to happen on forked master
git checkout master

# Add upstream to OSS Consul
git remote add upstream https://github.com/hashicorp/consul.git

# Fetch it
git fetch upstream

# Rebase forked master onto upstream. This should have no changes since
# we're never modifying master.
git rebase upstream master

Next, update the f-connect branch:

git checkout f-connect
git rebase origin master