Nick Ethier
56fb3de0ed
executor: run exec commands in netns if set ( #6405 )
...
executor: run exec commands in netns if set
2019-10-01 14:45:43 -04:00
Nick Ethier
149578ca1e
executor: rename wrapNetns to withNetworkIsolation
2019-09-30 21:38:31 -04:00
Nick Ethier
e6ce6d2c2b
comment wrapNetns
2019-09-30 12:06:52 -04:00
Nick Ethier
159b911820
executor: removed unused field from exec_utils.go
2019-09-30 11:57:34 -04:00
Nick Ethier
2f16eb9640
executor: run exec commands in netns if set
2019-09-30 11:50:22 -04:00
Tim Gross
d94e301219
driver/java: pass task network isolation to executor
...
Without passing the network isolation configuration to the executor,
java tasks are not placed in the same network namespace as the other
processes in their task group, which breaks Consul Connect.
2019-09-27 08:26:54 -04:00
Tim Gross
e17901d667
driver/networking: don't recreate existing network namespaces
2019-09-25 14:58:17 -04:00
Nick Ethier
c36fe98198
driver: set correct network isolation caps for exec and java dr… ( #6368 )
2019-09-25 11:48:14 -04:00
rpramodd
a555ce8686
utils: add missing error info in case of cmd failure ( #6355 )
2019-09-24 09:33:27 -04:00
Mahmood Ali
8c29de2032
docker: remove containers on creation failures
...
The docker creation API calls may fail with http errors (e.g. timeout)
even if container was successfully created.
Here, we force remove container if we got unexpected failure. We
already do this in some error handlers, and this commit updates all
paths.
I stopped short from a more aggressive refactoring, as the code is ripe
for refactoring and would rather do that in another PR.
2019-09-18 08:45:59 -04:00
Mahmood Ali
b5b445c101
add exponential backoff for docker api calls
2019-09-18 08:12:54 -04:00
Mahmood Ali
d5051687b8
retry transient docker errors within function
2019-09-13 15:25:31 -04:00
Mahmood Ali
2f47a6d86c
docker: defensive against failed starts
...
This handles a bug where we may start a container successfully, yet we
fail due to retries and startContainer not being idempotent call.
Here, we ensure that when starting a container fails with 500 error,
the retry succeeds if container was started successfully.
2019-09-13 13:02:35 -04:00
Mahmood Ali
bd6bbc9ca8
fix qemu and update docker with tests
2019-09-04 11:27:51 -04:00
Jasmine Dahilig
6190443d79
fix portmap envvars in docker driver
2019-09-04 11:26:13 -04:00
Michael Schurter
f02c163532
Merge pull request #6000 from Iqoqo/docker-convert-host-paths-to-host-native
...
driver/docker: convert host bind path to os native
2019-09-03 09:34:56 -07:00
Danielle Lancashire
86838dbc02
docker: Fix driver spec
...
hclspec.NewLiteral does not quote its values, which caused `3m` to be
parsed as a nonsensical literal which broke the plugin loader during
initialization. By quoting the value here, it starts correctly.
2019-09-03 08:53:37 +02:00
Zhiguang Wang
e7eede5f74
Add default value "3m" to image_delay, making it consistent with docs.
2019-09-02 16:40:00 +08:00
Mahmood Ali
8b688cc70e
tests: enable raw_exec driver
2019-08-29 20:26:50 -04:00
Mahmood Ali
e14619da45
raw_exec: be defensive when disabled
...
Ensure that no raw_exec task can run on a client where it's disabled,
even if a flaw lead to client being assigned a raw_exec task
unexpectedly.
2019-08-29 09:09:40 -04:00
Danielle Lancashire
a921c21c8e
docker: Fix issue where an exec may never timeout
2019-08-16 15:40:03 +02:00
Michael Schurter
f189f1f250
docker: reword FromSlash(hostPath) comment
2019-08-12 14:38:31 -07:00
ilya guterman
0f47a7daba
Update utils.go
2019-08-12 19:31:34 +03:00
Ilya Guterman
360ad287e7
add comment
2019-08-12 19:31:33 +03:00
Ilya Guterman
9bfff00345
driver/docker: convert host bind path to os native
...
relative mounting can be specified using backslashes or forward slashes.
so no prior knowledge of host OS is needed for relative volumes mounting
2019-08-12 19:31:33 +03:00
Michael Schurter
dca40b5737
Merge pull request #5999 from Iqoqo/use-default-network-for-docker
...
driver/docker: use default network mode
2019-08-01 09:58:12 -07:00
Ilya Guterman
7beee87618
driver/docker: support unix destination mount path in windows
...
This reverts commit a6c96eade5 .
2019-08-01 19:54:08 +03:00
Ilya Guterman
d4919cebdc
driver/docker: use default network mode
...
fallback to docker default network mode instead of explicit bridge for linux
or nat for windows
2019-07-31 21:07:46 +03:00
Nick Ethier
cf65bbe47c
docker: allow configuration of infra image
2019-07-31 01:04:07 -04:00
Nick Ethier
1ff85f09f3
executor: cleanup netns handling in executor
2019-07-31 01:04:05 -04:00
Nick Ethier
d28d865100
executor: support network namespacing on universal executor
2019-07-31 01:03:58 -04:00
Nick Ethier
4fdb0dab1c
docker: add nil check on network isolation spec
2019-07-31 01:03:21 -04:00
Nick Ethier
c8c1ad748e
docker: fix driver test from changed func args
2019-07-31 01:03:20 -04:00
Nick Ethier
67ea2e9305
docker: add additional commens
2019-07-31 01:03:20 -04:00
Nick Ethier
51b69601ab
docker: support shared network namespaces
2019-07-31 01:03:20 -04:00
Nick Ethier
e26192ad49
Driver networking support
...
Adds support for passing network isolation config into drivers and
implements support in the rawexec driver as a proof of concept
2019-07-31 01:03:20 -04:00
Nick Ethier
da3978b377
plugins/driver: make DriverNetworkManager interface optional
2019-07-31 01:03:19 -04:00
Nick Ethier
4a8a96fa1a
ar: initial driver based network management
2019-07-31 01:03:17 -04:00
Michael Schurter
a6c96eade5
Revert "driver/docker: support unix destination mount path in windows"
2019-07-29 09:09:54 -07:00
Michael Schurter
164d166507
Merge pull request #6001 from Iqoqo/allow-unix-container-path-in-lcow
...
driver/docker: support unix destination mount path in windows
2019-07-29 09:09:41 -07:00
Lang Martin
c7cd018655
executor_universal_linux log a link to the docs on cgroup error
2019-07-24 12:37:33 -04:00
Ilya Guterman
e30a24edf1
driver/docker: support unix destination mount path in windows
2019-07-24 11:57:28 +03:00
Lang Martin
cab04997f0
executor_universal_linux raw_exec cgroup failure is not fatal
2019-07-22 15:16:36 -04:00
Lang Martin
7bd881cbf7
default e.getAllPids in executor_basic
2019-07-18 10:57:27 -04:00
Lang Martin
ab3e6259d0
executor_unix and _windows stub getAllPids ByScanning
2019-07-17 17:34:06 -04:00
Lang Martin
1a9c598fc2
executor_universal_linux getAllPids chooses cgroup when available
2019-07-17 17:33:55 -04:00
Lang Martin
3834616691
executor use e.getAllPids()
2019-07-17 17:33:11 -04:00
Lang Martin
d3ef456bd7
resource_container_linux new getAllPidsByCgroup
2019-07-17 17:31:36 -04:00
Lang Martin
412997f566
pid_collector getAllPids -> getAllPidsByScanning
2019-07-17 17:31:20 -04:00
Jasmine Dahilig
3fdb3cbe33
Merge pull request #5846 from hashicorp/f-docker-log-constraints
...
add log rotation to docker driver log defaults
2019-07-03 10:17:19 -07:00