Michael Schurter
180cbc4f5a
Fix AgentSelf, AgentMembers, and KeyringOperations
2017-10-09 16:12:28 -07:00
Michael Schurter
e50acae1a9
ForceLeave endpoint must use Server.ResolveToken
...
The ForceLeaveRequest endpoint may only be called on servers, but the
code was using a Client to resolve tokens. This would cause a panic when
an agent wasn't both a Server and a Client.
2017-10-09 15:49:04 -07:00
Michael Schurter
492c861419
/v1/client/agent/* ACL enforcement
2017-10-09 12:18:54 -07:00
Michael Schurter
04adc987ed
/v1/client/allocation/./{stats,gc} ACL enforcement
2017-10-09 12:13:52 -07:00
Michael Schurter
84d82d79bb
/v1/client/stats ACL enforcement
2017-10-09 12:02:32 -07:00
Michael Schurter
8a125759ae
Refactor as there's no need for an ACL helper
2017-10-09 11:19:25 -07:00
Michael Schurter
260b66bf52
Test all fs endpoints in a loop
2017-10-09 11:19:14 -07:00
Michael Schurter
a7450c8633
FS HTTP API ACL enforcement
...
ACL enforcement for the filesystem HTTP APIs on clients.
2017-10-09 11:06:34 -07:00
Michael Schurter
69bcfe78ba
/v1/client/gc ACL enforcement
2017-10-06 14:50:16 -07:00
Michael Schurter
fd9d09e290
Rename TestAgent.Token to TestAgent.RootToken
2017-10-06 14:35:14 -07:00
James Rasell
4628637b54
Update agent CLI to include Consul config option flags.
...
This update introduces command line flags for all Consul options
thus allowing users to both use a config file and CLI options to
configure Consul.
Website documentation has also been updated.
Closes #3304
2017-10-05 14:26:26 +01:00
Alex Dadgar
4173834231
Enable more linters
2017-09-26 15:26:33 -07:00
Chelsea Holland Komlo
907c4da351
fixups from code review
2017-09-25 19:42:03 +00:00
Chelsea Holland Komlo
3966a27c87
update acl token
2017-09-25 15:54:06 +00:00
Alex Dadgar
fb1ceabad6
generated code
2017-09-19 12:17:16 -05:00
Alex Dadgar
f16167b5e1
always gzip
2017-09-19 10:37:49 -05:00
Alex Dadgar
2a09c51840
handle errors when streaming logs
2017-09-19 10:37:49 -05:00
Alex Dadgar
460815f27c
fix test
2017-09-19 10:28:23 -05:00
Alex Dadgar
e5ec915ac3
sync
2017-09-19 10:08:23 -05:00
Michael Schurter
f92ffe5af5
Merge pull request #3105 from hashicorp/f-876-restart-unhealthy
...
Restart unhealthy tasks
2017-09-17 19:38:32 -07:00
Chelsea Holland Komlo
c0f490988a
add command to cli
...
add extra verification test
2017-09-17 18:45:32 +00:00
Chelsea Holland Komlo
eac317e2aa
add acl token info
2017-09-17 18:45:32 +00:00
Chelsea Holland Komlo
8c04423c63
small fixups
2017-09-17 18:17:53 +00:00
Chelsea Holland Komlo
2561f17669
acl policy info
2017-09-17 18:17:17 +00:00
Chelsea Holland Komlo
6d4156e706
fixups
2017-09-17 05:15:25 +00:00
Chelsea Holland Komlo
ee3de65f7d
add acl policy delete command
2017-09-17 04:36:08 +00:00
Chelsea Holland Komlo
ea52e2f5b9
update documentation
2017-09-16 00:31:11 +00:00
Chelsea Holland Komlo
632f6ccebb
fix up test data
2017-09-16 00:26:44 +00:00
Chelsea Holland Komlo
60f6a89db8
fixup helptext for acl cli delete
2017-09-16 00:26:44 +00:00
Chelsea Holland Komlo
80e810e09b
adds ACL token delete
2017-09-16 00:26:44 +00:00
Chelsea Holland Komlo
e2dc75d853
update comment to use from other commands
2017-09-15 23:33:43 +00:00
Chelsea Holland Komlo
e0594a307a
fixups from code review
2017-09-15 23:33:43 +00:00
Chelsea Holland Komlo
fdf6120987
add acl token as meta flag
...
add API test for job ACL
2017-09-15 23:33:43 +00:00
Michael Schurter
a844fba8d2
Fix comments: task -> check
2017-09-15 15:19:53 -07:00
Michael Schurter
bd3f517f2f
Test converting CheckRestart from api->structs
2017-09-15 15:01:56 -07:00
Chelsea Holland Komlo
972914b7ea
embed acl subcommands
2017-09-15 20:11:37 +00:00
Chelsea Holland Komlo
18e658c94d
fix up comments
2017-09-15 18:12:17 +00:00
Chelsea Holland Komlo
aa7cc445be
fixups from code review
2017-09-15 18:08:46 +00:00
Armon Dadgar
a6370a433b
command: document CLI flags
2017-09-14 21:59:36 -07:00
Armon Dadgar
08da937cf0
command: Adding acl token create
2017-09-14 21:55:25 -07:00
Armon Dadgar
7efb311bc5
command: Adding intermediate command for help text
2017-09-14 21:31:05 -07:00
Armon Dadgar
a51d5e0b5b
command: Adding acl policy apply test
2017-09-14 21:19:56 -07:00
Michael Schurter
0f2a3dcec9
Test check watch updates
2017-09-14 16:48:39 -07:00
Michael Schurter
847fe080f6
Rename unhealthy var and fix test indeterminism
2017-09-14 16:48:39 -07:00
Michael Schurter
573a0df03d
Watched -> TriggersRestart
...
Watched was a silly name
2017-09-14 16:48:39 -07:00
Michael Schurter
4ea19baa52
Handle multiple failing checks on a single task
...
Before this commit if a task had 2 checks cause restarts at the same
time, both would trigger restarts of the task! This change removes all
checks for a task whenever one of them is restarted.
2017-09-14 16:48:39 -07:00
Michael Schurter
73fb71ca10
RestartDelay isn't needed as checks are re-added on restarts
...
@dadgar made the excellent observation in #3105 that TaskRunner removes
and re-registers checks on restarts. This means checkWatcher doesn't
need to do *any* internal restart tracking. Individual checks can just
remove themselves and be re-added when the task restarts.
2017-09-14 16:48:39 -07:00
Michael Schurter
448ad3945f
Simplify from 2 select loops to one
2017-09-14 16:48:39 -07:00
Michael Schurter
550e631eea
Wrap check watch updates in a struct
...
Reusing checkRestart for both adds/removes and the main check restarting
logic was confusing.
2017-09-14 16:48:39 -07:00
Michael Schurter
d299d42089
Canonicalize and Merge CheckRestart in api
2017-09-14 16:48:39 -07:00