f1f31abbe5
Add support for running a CLI plugin
...
Also includes the scaffolding for finding a validating plugin candidates.
Argument validation is moved to RunE to support this, so `noArgs` is removed.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-30 13:44:04 +00:00
e96240427f
Add basic framework for writing a CLI plugin
...
That is, the helper to be used from the plugin's `main`.
Also add a `helloworld` plugin example and build integration.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-29 11:26:40 +00:00
8cf946d1bc
Unit test for WithContentTrustFromEnv
...
I authored this for `contentTrustEnabled` prior to 7f207f3f95 , so this now
tests the funcation argument version.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-29 11:26:40 +00:00
eab40a5974
cli/config: Add a helper to resolve a file within the config dir
...
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-29 11:26:40 +00:00
20c19830a9
Move versioning variables to a separate package.
...
This helps to avoid circular includes, by separating the pure data out from the
actual functionality in the cli subpackage, allowing other code which is
imported to access the data.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-29 11:26:40 +00:00
c5168117af
Push setup of opts and default flagset into SetupRootCommand
...
I'm shortly going to add a second user (plugins) which want to share some
behaviour.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-29 11:26:21 +00:00
38645ca44a
Refactor common bits of SetupRootCommand
...
I'm shortly going to add a second user to setup plugins, which will want to
reuse the common bits.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-29 11:26:21 +00:00
ccef1598b1
Move disableFlagsInUseLine from main into our cli library
...
... and expose. I would like to use this from another site.
This implies also moving (and exposing) the `visitAll` helper.
Unit test them while I'm here.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-29 11:26:21 +00:00
158a766886
Fold dockerPreRun into DockerCli.Initialize
...
All of the current callers follow the pattern:
dockerPreRun(opts)
err := dockerCli.Initialize(opts) ...
So there is no semantic change into merging the content of `dockerPreRun` into the head of `Initialize`.
I'm about to add a new caller outside of the `cmd/docker` package and this
seems preferable exporting `DockerPreRun`.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-29 11:26:21 +00:00
a17f67e456
Merge pull request #1628 from simonferquel/context-switch-plugin-and-desktop
...
Context switch - Plugin and Docker Desktop integration
2019-01-29 12:20:46 +01:00
3126920af1
Add context store config options and expose context commands
...
This will allow plugins to have custom typed endpoints, as well as
create/remove/update contexts with the exact same results as the main
CLI (thinking of things like `docker ee login https://my-ucp-server
--context ucp-prod)`
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com >
2019-01-29 11:19:54 +01:00
a3a30faffd
Merge pull request #1619 from albers/completion-context
...
Bash completion for `docker context` command family
2019-01-29 11:04:11 +01:00
cf6c238660
Merge pull request #1615 from simonferquel/handle-v1alpha3
...
Handle v1alpha3 of Compose on Kubernetes API
2019-01-28 21:02:51 +01:00
f95ca8e1ba
Merge pull request #1633 from silvin-lubecki/refactor-docker-cli-construction
...
Introduce functional arguments to NewDockerCli for a more stable API.
2019-01-28 15:39:34 +01:00
7f207f3f95
Introduce functional arguments to NewDockerCli for a more stable API.
...
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com >
2019-01-28 14:52:58 +01:00
eb0ba4f8d5
Extract streams helpers from command package to their own package to remove a cyclic dependency from command to internal/containerizedengine
...
Aliasing old types
* streams.InStream -> streams.In
* streams.NewInStream -> streams.NewIn
* streams.OutStream -> streams.Out
* streams.NewOutStream -> streams.NewOut
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com >
2019-01-28 14:36:00 +01:00
81e7426e11
Merge pull request #1507 from arcenik/fix/better-error-msg-for-ssh-addr
...
Updates ssh connhelper error messages
2019-01-28 13:48:14 +01:00
a07637ae31
Updates ssh connhelper error messages
...
Signed-off-by: François Scala <arcenik@github.com >
2019-01-25 23:42:13 +01:00
080f30a60f
Merge pull request #1638 from ijc/separate-client-system-info
...
Separate client infomation in `docker system info`
2019-01-25 17:32:07 +01:00
bcb06b5f58
Rework docker info output to be more like docker version
...
That is, reindent the two sections by one space.
While the code was done by hand the `.golden` files had the extra space
inserted with emacs' `string-insert-rectangle` macro to (try to) avoid possible
manual errors. The docs were edited the same way.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-25 14:46:26 +00:00
c9e60ae17a
Allow prettyPrintInfo to return multiple errors
...
This allows it to print what it can, rather than aborting half way when a bad
security context is hit.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-25 14:40:33 +00:00
62ed1c0c5b
Separate client and daemon info in docker system info
...
Right now the only client side info we have is whether debug is enabled, but we
expect more in the future.
We also preemptively prepare for the possibility of multiple errors when
gathering both daemon and client info.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-25 14:38:04 +00:00
7913fb6a5e
Check json output in existing docker info unit tests.
...
This is in addition to the more specific `formatInfo` unit tests added
previously.
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-25 11:55:54 +00:00
eb714f7c0e
Add unit test for formatInfo.
...
Signed-off-by: Ian Campbell <ijc@docker.com >
2019-01-25 11:55:52 +00:00
820b6f1742
Added stack conversion tests
...
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com >
2019-01-25 09:58:31 +01:00
2e5981d613
Handle version v1alpha3
...
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com >
2019-01-24 20:24:45 +01:00
ffa55abe9c
Merge pull request #1636 from thaJeztah/bump_golang_1.11.5
...
Bump Golang 1.11.5 (CVE-2019-6486)
2019-01-24 14:28:32 +01:00
c863dbabf7
Vendoring update for v1alpha3
...
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com >
2019-01-24 11:43:52 +01:00
ebb121ee2d
Merge pull request #1611 from simonferquel/stack-children-atomic
...
Make child resource creation atomic when creating a k8s stack
2019-01-24 11:34:29 +01:00
0e9d1d3b07
Bump Golang 1.11.5 (CVE-2019-6486)
...
See the milestone for details;
https://github.com/golang/go/issues?q=milestone%3AGo1.11.5+label%3ACherryPickApproved
Signed-off-by: Sebastiaan van Stijn <github@gone.nl >
2019-01-24 02:50:10 +01:00
4d5f8ea8c7
Merge pull request #1519 from silvin-lubecki/export-stack-commands
...
Export stack commands
2019-01-23 10:35:16 +01:00
884d0783bd
Add bash completion for global --context|-c option
...
Signed-off-by: Harald Albers <github@albersweb.de >
2019-01-22 22:27:01 +01:00
e16a875408
Make child resource creation atomic when creating a k8s stack
...
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com >
2019-01-22 11:25:41 +01:00
01a591477c
Merge pull request #1444 from filipjares/master
...
Improve `docker image rm` documentation
2019-01-21 16:02:09 +01:00
37af67fea8
Merge pull request #1624 from JoeWrightss/patch-2
...
Fix some typos in manifest.md
2019-01-21 11:35:09 +01:00
afa178deae
Merge pull request #1627 from StefanScherer/update-windows10-process-isolation
...
Update process isolation description for older Windows 10 versions
2019-01-21 11:34:04 +01:00
fec5a52188
Merge pull request #1614 from simonferquel/context-docs-alignment
...
Context Switch: documentation alignment
2019-01-21 09:51:15 +01:00
005578e317
Context Switch: documentation alignment
...
Last batch of modifications to the context switch implementation missed
some documentation updates. This is an update to the CLI reference and
the store implementation Godoc.
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com >
2019-01-21 09:24:12 +01:00
7229920e2e
Update process isolation description for older Windows 10 versions
...
Signed-off-by: Stefan Scherer <scherer_stefan@icloud.com >
2019-01-21 08:27:07 +01:00
41bd8dad8c
Add bash completion for the context command family
...
Signed-off-by: Harald Albers <github@albersweb.de >
2019-01-20 21:10:33 +01:00
abe1bb9757
Fix some typos in manifest.md
...
Signed-off-by: zhoulin xie <zhoulin.xie@daocloud.io >
2019-01-20 01:20:34 +08:00
cf0271ace4
Expose all stack commands to be used by downstream projects.
...
Factorize orchestrator switch among stack commands.
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com >
2019-01-16 14:47:50 +01:00
48bd4c6deb
Merge pull request #1501 from simonferquel/use-context-commands
...
Fast context switch: commands
2019-01-15 18:11:38 +01:00
af98c738dd
Merge pull request #1610 from vdemeester/update-code-owners
...
Remove myself from codeowners 😅
2019-01-15 17:34:37 +01:00
a6e37bd666
Merge pull request #1595 from JoeWrightss/patch-1
...
Fix some spelling errors
2019-01-13 14:55:11 +01:00
355a441712
Merge pull request #1603 from thaJeztah/fix_makefile_help
...
Fix some missing targets in "make help"
2019-01-11 09:53:08 +01:00
9c9ce7f4c2
Fix some spelling errors
...
Signed-off-by: zhoulin xie <zhoulin.xie@daocloud.io >
2019-01-11 15:49:02 +08:00
591385a1d0
Fast Context Switch: commands
...
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com >
2019-01-10 22:25:43 +01:00
d054d47dbe
Remove myself from codeowners 😅
...
Signed-off-by: Vincent Demeester <vincent@sbr.pm >
2019-01-10 17:32:07 +01:00
f5280d60ee
Merge pull request #1430 from AkihiroSuda/non-recursive-bind
...
support --mount type=bind,bind-nonrecursive,...
2019-01-10 16:37:11 +01:00