Frank Schroeder
74859ff3c0
test: replace porter tool with freeport lib
...
This patch removes the porter tool which hands out free ports from a
given range with a library which does the same thing. The challenge for
acquiring free ports in concurrent go test runs is that go packages are
tested concurrently and run in separate processes. There has to be some
inter-process synchronization in preventing processes allocating the
same ports.
freeport allocates blocks of ports from a range expected to be not in
heavy use and implements a system-wide mutex by binding to the first
port of that block for the lifetime of the application. Ports are then
provided sequentially from that block and are tested on localhost before
being returned as available.
2017-10-21 22:01:09 +02:00
James Phillips
28c960f207
Adds a canary test to fail Consul's test w/o porter.
2017-10-20 17:05:25 -07:00
James Phillips
1fc174ff8c
Updates the change log.
2017-10-20 16:51:43 -07:00
Frank Schröder
d26b0406e4
dns: return NXDOMAIN if datacenter is invalid ( #3200 ) ( #3596 )
...
Queries to the DNS server can contain an optional datacenter
name in the query name. You can query for 'foo.service.consul'
or 'foo.service.dc.consul' to get a response for either the
default or a specific datacenter.
Datacenter names cannot have dots, therefore the datacenter
name can refer to only one element in the DNS query name.
The DNS server allowed extra labels between the optional
datacenter name and the domain and returned a valid response
instead of returning NXDOMAIN. For example, if the domain
is set to '.consul' then 'foo.service.dc1.extra.consul'
should return NXDOMAIN because of 'extra' being between
the datacenter name 'dc1' and the domain '.consul'.
Fixes #3200
2017-10-20 16:49:17 -07:00
Alex Dadgar
098d71c04d
Testutil falls back to random ports w/o porter ( #3604 )
...
* Testutil falls back to random ports w/o porter
This PR allows the testutil server to be used without porter.
* Adds sterner-sounding fallback comments.
2017-10-20 16:46:13 -07:00
preetapan
ea2e58bcc0
Merge pull request #3601 from hashicorp/serf_update
...
Serf update
2017-10-20 11:17:34 -05:00
Preetha Appan
d206639f83
REbase master serf
2017-10-20 10:33:59 -05:00
Preetha Appan
32b23575f0
Update CHANGELOG.md
2017-10-20 10:18:19 -05:00
Preetha Appan
09c51e3119
Vendor update serf to pick up fix for out of range ping periods in coordinate subsystem
2017-10-20 10:14:15 -05:00
Johan Brandhorst
3e0fd5ec2d
Fixed indentation in Script + Interval
...
Remove newlines which were causing the text to not be rendered under the intended bullet point.
2017-10-20 14:02:31 +02:00
James Phillips
60af465b4e
Updates documentation for consul validate.
...
This makes it clear that you need to pass the full configuration,
and that the command won't work with config fragments.
Closes #3591
2017-10-19 18:59:05 -07:00
Preetha Appan
bb23d44469
Update CHANGELOG.md
2017-10-19 12:59:12 -05:00
preetapan
39b6622075
Merge pull request #3595 from hashicorp/kms_doc_update
...
Documentation update for KMS support
2017-10-19 12:38:58 -05:00
Preetha Appan
5af8492172
Documentation update for KMS support
2017-10-19 11:39:14 -05:00
Preetha Appan
6f286dd9b8
Update autopilot documentation to mention correct Consul version that defaults raft protocol to 3.
2017-10-19 11:31:29 -05:00
Jay
dc903a4fb0
s/acesss/access ( #3593 )
...
Spell "access" correctly
2017-10-18 17:24:56 -07:00
Ryan Slade
7d698c0a10
Simplify string(buf.Bytes()) to buf.String() ( #3590 )
2017-10-18 13:26:09 -07:00
James Phillips
e6a4efa67b
Updates the change log.
2017-10-18 11:32:53 -07:00
James Phillips
3d52f42715
Fixes API client for ScriptArgs and updates documentation. ( #3589 )
...
* Updates the API client to support the current `ScriptArgs` parameter
for checks.
* Updates docs for checks to explain the `ScriptArgs` parameter issue.
* Adds mappings for "args" and "script-args" to give th API parity
with config.
* Adds checks on return codes.
* Removes debug logging that shows empty when args are used.
2017-10-18 11:28:39 -07:00
Kuba Tyszko
08fe453e2b
consul upgraded to 1.0.0 in terraform scripts ( #3588 )
2017-10-18 10:08:25 -07:00
Vladislav Mitov
2bae3b6c12
Update check.html.md
2017-10-18 13:43:32 +02:00
Frank Schroeder
2a2debcff8
porter: add better warning if missing
2017-10-18 09:58:58 +02:00
Frank Schroeder
3a5ac6f7cc
commands: add shorter helper vars to keep fmt sane
2017-10-18 02:39:10 +02:00
Frank Schroeder
4f6abf1e72
commands: cleanup init
2017-10-18 02:39:10 +02:00
James Phillips
f0f8612551
Adds a pointer to the /v1/txn API from the KV read docs.
...
Closes #3558
2017-10-17 17:07:45 -07:00
Matt McQuillan
63bd7cb687
Updating go-checkpoint lib to have a fixed timeout ( #3564 )
...
* Updating go-checkpoint lib to have a fixed timeout
* formatting vendor/vendor.json file per project spec
2017-10-17 17:01:23 -07:00
Kuba Tyszko
4a993fd9e3
upgrading ubuntu ami to 16.04, switching to systemd, allowing multiple AZ/subnets through subnets={} map, upgrading consul to 0.9.3 ( #3566 )
2017-10-17 16:59:34 -07:00
Christopher "Chief" Najewicz
bcbf2b0ed5
Update docs for retry_join cloud discovery to include snippet around ( #3577 )
...
using HTTP_PROXY, HTTPS_PROXY and NO_PROXY env vars when needed
2017-10-17 16:05:44 -07:00
Frank Schroeder
8f58a603ea
commands: get HTTP API flags for usage automatically
2017-10-18 00:08:45 +02:00
Frank Schroeder
cb8faa3559
commands: drop http server flags from reload command
2017-10-18 00:08:45 +02:00
Frank Schroeder
a00f8721fb
commands: drop http server flags from leave command
2017-10-18 00:08:45 +02:00
Frank Schroeder
c877b3001b
commands: drop http server flags from keyring command
2017-10-18 00:08:45 +02:00
Frank Schroeder
6032fe1407
commands: drop http server flags from force-leave command
2017-10-18 00:08:45 +02:00
Frank Schroeder
c10885f828
commands: run all tests in parallel (again)
2017-10-18 00:08:45 +02:00
Frank Schroeder
efab66e616
commands: cleanup help and synopsis.
...
* move Help and Synopsis to bottom
* make help and synopsis constants
* make sure help output is formatted
2017-10-18 00:08:45 +02:00
Frank Schroeder
a3a805d7b8
commands: do not run cmd tests in parallel
...
Package level parallelization is sufficient.
2017-10-18 00:08:45 +02:00
Frank Schroeder
a1a1a6971d
commands: add missing noTabs test
2017-10-18 00:08:45 +02:00
Frank Schroeder
a6d912adb4
commands: cleanup test names
2017-10-18 00:08:45 +02:00
Frank Schroeder
0e059248e7
commands: cleanup catalog list services tests
2017-10-18 00:08:45 +02:00
Frank Schroeder
915034da78
commands: cleanup catalog list nodes tests
2017-10-18 00:08:45 +02:00
Frank Schroeder
7d7281ab54
commands: simplify import names
2017-10-18 00:08:45 +02:00
Frank Schroeder
5a34eb1e52
commands: move operator subcommands to subdirs
2017-10-18 00:08:45 +02:00
Frank Schroeder
f09f6f2ec2
commands: move kv subcommands to subdirs
2017-10-18 00:08:45 +02:00
Frank Schroeder
0a9478b1f1
commands: move catalog subcommands to subdirs
2017-10-18 00:08:45 +02:00
Frank Schroeder
abd7c73627
commands: move snapshot subcommands to subdirs
2017-10-18 00:08:45 +02:00
Frank Schroeder
0fb4ea3a30
commands: simplify commands.go
2017-10-18 00:08:45 +02:00
Frank Schroeder
639bf6d8ec
commands: drop base command and utils
2017-10-18 00:08:45 +02:00
Frank Schroeder
a0b017d976
commands: move agent command to separate pkg
2017-10-18 00:08:45 +02:00
Frank Schroeder
127bd3d295
commands: move watch command to separate pkg
2017-10-18 00:08:45 +02:00
Frank Schroeder
3f7cfca203
add token and addr to http flags
2017-10-18 00:08:45 +02:00