Olivier Gambier
417cd8a9d3
Merge pull request #2021 from dgageot/1974-fix-makefile
...
FIX #1974 in-container make test fails
2015-10-20 10:27:44 -07:00
David Gageot
94361315a8
Add tests to virtualbox driver
...
Signed-off-by: David Gageot <david@gageot.net>
2015-10-20 19:08:18 +02:00
Olivier Gambier
72fbf70899
Merge pull request #1990 from dgageot/1983-check-vtx-amdv
...
Host needs VT-x/AMD-v enabled for docker-machine to work on virtualbox
2015-10-20 10:01:22 -07:00
Olivier Gambier
e959f7f1df
Merge pull request #2026 from dgageot/fix-integration-tests
...
Fix Typos in integration tests
2015-10-20 09:47:23 -07:00
David Gageot
bd532747f1
FIX #2019 invalid env hints
...
Signed-off-by: David Gageot <david@gageot.net>
2015-10-20 17:58:35 +02:00
David Gageot
3ab5520ea3
Fix Typos in integration tests
...
Signed-off-by: David Gageot <david@gageot.net>
2015-10-20 17:56:27 +02:00
David Gageot
9c8b4e0da3
FIX #1974 in-container make test fails
...
Signed-off-by: David Gageot <david@gageot.net>
2015-10-20 14:56:07 +02:00
David Gageot
4a33fabe8b
Check that VT-X/AMD-v is enabled
...
Signed-off-by: David Gageot <david@gageot.net>
2015-10-20 09:56:43 +02:00
Nathan LeClaire
6cac8cc95f
Merge pull request #2015 from nathanleclaire/bump_0.5.0_rc2
...
Bump version to 0.5.0-rc2
2015-10-19 17:51:24 -07:00
Nathan LeClaire
f8491c8140
Bump version to 0.5.0-rc2
...
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-10-19 17:44:31 -07:00
Nathan LeClaire
950aa5cad2
Merge pull request #2014 from nathanleclaire/print_app_err_msg
...
Spit out at least some message when flag parsing etc. fails
2015-10-19 17:43:36 -07:00
Nathan LeClaire
56f457c2ef
Merge pull request #2013 from nathanleclaire/no_stdout_env_config
...
Ensure log writes only to os.Stderr for env and config command
2015-10-19 17:43:23 -07:00
Nathan LeClaire
5bba2b3a64
Merge pull request #2012 from nathanleclaire/forward_compat_configs
...
Add some small support for forward compatible configuration mistakes
2015-10-19 17:43:03 -07:00
Nathan LeClaire
c93b79abef
Spit out at least some message when flag parsing etc. fails
...
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-10-19 17:30:59 -07:00
Nathan LeClaire
17f0a32b79
Ensure log writes only to os.Stderr for env and config command
...
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-10-19 17:30:18 -07:00
Nathan LeClaire
7400a77b32
Add some small support for forward compatible configuration mistakes
...
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-10-19 17:29:17 -07:00
Nathan LeClaire
95f626ce21
Merge pull request #1999 from hairyhenderson/json-use-number-during-migrate-1998
...
Fixing JSON marshaling of large numbers during migration
2015-10-19 15:12:20 -07:00
Dave Henderson
486e359e63
Fixing JSON marshaling of large numbers during migration
...
- Added some context to an error message - it's useful to know _which_
plugin failed when invoking the binary failed
- Replaced `json.Umarshal` with a `json.Decoder`, so that the
`UseNumber` function can be called, which prevents large integers from
being interpreted as `float64`s.
- Fixed a couple `log.Warn` calls that should've been `log.Warnf`
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
2015-10-19 18:00:19 -04:00
Nathan LeClaire
447d262c06
Merge pull request #1939 from gmacario/fix-issue-1692
...
fix IPV6NetworkMaskPrefixLength value parsing
2015-10-19 14:17:51 -07:00
Nathan LeClaire
b818d3f7e8
Merge pull request #2000 from hairyhenderson/fix-non-logf-method-calls
...
💄 Fix log.* method calls which meant to be log.*f
2015-10-19 13:04:33 -07:00
Olivier Gambier
aebd037c46
Merge pull request #2003 from blaggacao/patch-1
...
Close #2001 / consistent hyperv internal naming
2015-10-19 11:40:15 -07:00
David Arnold
ab79c4d9c1
Close #2001 / consistent hyperv internal naming
...
Signed-off-by: David Arnold <dar@devco.co>
2015-10-18 11:53:39 -05:00
Dave Henderson
2a6e3dbf40
Fix log.* method calls which meant to be log.*f
...
Stuff like `log.Debug("foo bar: %s", baz)` really wants to be
`log.Debugf("foo bar: %s", baz)`...
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
2015-10-17 15:59:25 -04:00
Nathan LeClaire
43543d1579
Merge pull request #1997 from nathanleclaire/bump_for_rc
...
Bump version for release candidate
2015-10-16 18:00:23 -07:00
Nathan LeClaire
581198de1b
Bump version for release candidate
...
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-10-16 17:53:58 -07:00
Nathan LeClaire
8aa1572e0d
Merge pull request #1902 from nathanleclaire/plugins
...
Add Docker Machine driver plugins
2015-10-16 16:41:29 -07:00
Nathan LeClaire
c8edb33ecd
Move towards using external binaries / RPC plugins
...
- First RPC steps
- Work on some flaws in RPC model
- Remove unused TLS settings from Engine and Swarm options
- Add code to correctly encode data over the network
- Add client driver for RPC
- Rename server driver file
- Start to make marshal make sense
- Fix silly RPC method args and add client
- Fix some issues with RPC calls, and marshaling
- Simplify plugin main.go
- Move towards 100% plugin in CLI
- Ensure that plugin servers are cleaned up properly
- Make flag parsing for driver flags work properly
Includes some work carried from @dmp42 updating the build process and
tests to use the new method.
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-10-16 16:34:56 -07:00
Nathan LeClaire
a63f26f438
Merge pull request #1991 from dmp42/01-carry-on-build-tweaks
...
Add simpler make targets and fix Windows build
2015-10-15 16:43:01 -07:00
Nathan LeClaire
600ffb7d20
Merge pull request #1968 from cmouttet/1967-openstack_InstanceIpAddress_default
...
add default AddressType: Fixed
2015-10-15 14:19:54 -07:00
Olivier Gambier
3e2e3d0a59
Build system enhancements
...
- new simpler targets:
* make machine
* make plugins
* make cross
- fixed windows cross build to output .exe files
Signed-off-by: Olivier Gambier <olivier@docker.com>
2015-10-15 13:26:45 -07:00
Olivier Gambier
53ace516a4
Merge pull request #1960 from dgageot/1914-create-ignores-trailing-options
...
FIX #1914 Reject command lines with trailing flags
2015-10-14 10:28:38 -07:00
Olivier Gambier
4c12502605
Merge pull request #1977 from dgageot/1972-fix-google-driver-tags-no-tests
...
Fix broken google driver
2015-10-14 10:27:42 -07:00
David Gageot
264ca68902
Fix #1972 Google drive is broken because of tags
...
Signed-off-by: David Gageot <david@gageot.net>
2015-10-14 09:25:44 +02:00
Jean-Laurent de Morlhon
1bb6cae798
Merge pull request #1953 from bookerzzz/master
...
Explain how to prepare a Go 1.5 development environment
2015-10-14 09:20:05 +02:00
Nathan LeClaire
81923c0720
Merge pull request #1982 from moxiegirl/retooling-hugo-15
...
Hugo 15 support Markdown per GitHub; Removing seds
2015-10-13 19:39:42 -07:00
Nathan LeClaire
7f18deb79f
Merge pull request #1951 from nathanleclaire/windows_ssh
...
Fix Windows SSH issues
2015-10-13 17:53:18 -07:00
Nathan LeClaire
0ce345a8b5
Merge pull request #1965 from pragkent/master
...
Fix filenames of loggers.
2015-10-13 16:47:05 -07:00
Nathan LeClaire
998ada5303
Fix Windows SSH issues
...
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-10-13 16:42:08 -07:00
Mary Anthony
1e7e241d9e
Hugo 15 support Markdown per GitHub; Removing seds
...
Signed-off-by: Mary Anthony <mary@docker.com>
2015-10-13 16:00:08 -07:00
Olivier Gambier
d181f532c4
Merge pull request #1978 from dgageot/1974-fix-makefile
...
[WIP] Fix the Makefile
2015-10-13 14:17:33 -07:00
David Gageot
28656c0e42
Fix #1974 make clean after a make build-x#1974
...
Signed-off-by: David Gageot <david@gageot.net>
2015-10-13 17:24:08 +02:00
David Gageot
cd80b70d26
FIX #1914 Reject command lines with trailing flags
...
Signed-off-by: David Gageot <david@gageot.net>
2015-10-13 16:29:28 +02:00
gdm85
7fc4aedd1c
Simplify fetch process by using go get
...
Signed-off-by: Giuseppe Mazzotta <gdm85@users.noreply.github.com>
2015-10-13 11:21:01 +02:00
Kent Wang
da26cab450
Remove TerminalLogger.
...
Signed-off-by: Kent Wang <pragkent@gmail.com>
2015-10-13 11:31:46 +08:00
Nathan LeClaire
ebd45f5d9b
Merge pull request #1966 from MarcelHarkema/feature/vmwarefusion-driver-configdrive-fix
...
Fix config drive support in VMware Fusion driver
2015-10-12 11:19:24 -07:00
Olivier Gambier
9473210fb4
Merge pull request #1932 from hairyhenderson/upgrade-to-go-1.5.1
...
Updating CI builds to use Go 1.5.1
2015-10-12 11:06:28 -07:00
Dave Henderson
7a3f2ec446
Updating CI builds to use Go 1.5.1
...
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
2015-10-12 08:26:58 -04:00
gdm85
a82d2cd74d
Explain how to prepare a Go 1.5 development environment
...
Other minor documentation fixes
Signed-off-by: Giuseppe Mazzotta <gdm85@users.noreply.github.com>
2015-10-11 11:51:16 +02:00
Christian Mouttet
e256702c8c
add default AddressType: Fixed
...
Signed-off-by: Christian Mouttet <cmouttet@gmail.com>
2015-10-10 17:19:45 +02:00
Marcel Harkema
db9363ef46
Fix config drive support in VMware Fusion driver
...
Signed-off-by: Marcel Harkema <marcel@harkema.name>
2015-10-10 16:10:11 +02:00