Go to file
mkeeler 26b611dd9e Remove empty file 2018-06-25 20:30:43 +00:00
.github/ISSUE_TEMPLATE github: more tweaking of bug issue template 2018-05-10 17:29:50 -07:00
acl acl: IntentionDefault => IntentionDefaultAllow 2018-06-14 09:41:55 -07:00
agent Release v1.2.0 2018-06-25 19:45:20 +00:00
api revert go changes to hide rotation config 2018-06-25 12:26:18 -07:00
bench
build-support Add a npm configuration 2018-06-25 11:27:10 -04:00
command Refactor to use embedded struct. 2018-06-25 12:25:39 -07:00
connect Fix test broken by final telemetry PR change! 2018-06-25 12:25:40 -07:00
demo demo: Added udp port forwarding 2018-05-30 13:56:56 +09:00
ipaddr
lib Refactor to use embedded struct. 2018-06-25 12:25:39 -07:00
logger
sentinel
snapshot
terraform
test Update test certificates that expire this year to be way in the future 2018-05-12 10:15:45 +01:00
testrpc
testutil Misc test fixes 2018-06-25 12:25:39 -07:00
tlsutil
types
ui Remove upgrade banner html from v1 ui 2018-06-22 17:51:43 +01:00
ui-v2 Merge remote-tracking branch 'connect/f-connect' 2018-06-25 19:42:51 +00:00
vendor Merge remote-tracking branch 'connect/f-connect' 2018-06-25 19:42:51 +00:00
version Release v1.2.0 2018-06-25 19:45:20 +00:00
watch Misc test fixes 2018-06-25 12:25:39 -07:00
website Update Consul version for the website 2018-06-25 20:15:14 +00:00
.dockerignore Update the scripting 2018-06-14 21:42:47 -04:00
.gitattributes
.gitignore Update .gitignore - ignore some macos fs event notification stuff 2018-05-24 10:34:23 -04:00
.travis.yml
CHANGELOG.md Release v1.2.0 2018-06-25 19:45:20 +00:00
GNUmakefile Merge remote-tracking branch 'connect/f-connect' 2018-06-25 19:42:51 +00:00
INTERNALS.md
LICENSE
README.md Readme for Fork Instructions 2018-06-14 09:41:39 -07:00
Vagrantfile
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