Go to file
Kyle Havlovitz d1265bc38b
Rename some of the CA structs/files
2018-06-14 09:42:15 -07: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 Rename some of the CA structs/files 2018-06-14 09:42:15 -07:00
api agent: change connect command paths to be slices, not strings 2018-06-14 09:42:08 -07:00
bench
command command/connect/proxy: set ACL token based on proxy token flag 2018-06-14 09:42:14 -07:00
connect command/connect/proxy: set proxy ID from env var if set 2018-06-14 09:42:14 -07:00
demo
ipaddr
lib lib/file: add tests for WriteAtomic 2018-06-14 09:42:12 -07:00
logger
scripts Release v1.1.0 2018-05-11 14:12:40 -04:00
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 TLS watching integrated into Service with some basic tests. 2018-06-14 09:42:07 -07:00
tlsutil
types
ui v1.1.0 UI Build 2018-05-11 17:05:20 +01:00
ui-v2 Merge pull request #4225 from hashicorp/bugfix/hide-anon-acl-delete 2018-06-14 16:58:07 +01:00
vendor Add missing vendor dep github.com/stretchr/objx 2018-06-14 09:42:13 -07:00
version Put version.go back in dev mode 2018-05-22 10:16:59 -04:00
watch TLS watching integrated into Service with some basic tests. 2018-06-14 09:42:07 -07:00
website Client: add metric for failed RPC calls to server 2018-06-13 12:35:45 +01:00
.gitattributes
.gitignore Update .gitignore - ignore some macos fs event notification stuff 2018-05-24 10:34:23 -04:00
.travis.yml
CHANGELOG.md Update CHANGELOG.md 2018-06-13 10:36:48 -04:00
GNUmakefile Remove temporary hacks from Makefile 2018-06-14 09:42:10 -07:00
INTERNALS.md
LICENSE
README.md Readme for Fork Instructions 2018-06-14 09:41:39 -07:00
Vagrantfile
key.pem Working proxy config reload tests 2018-06-14 09:42:05 -07:00
main.go
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