From 3f8dcb8db399ee3b99a20a4c1477692109223f32 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Fri, 7 Sep 2018 21:28:48 -0400 Subject: [PATCH] Drop experimental tag for manifest commands Some of us working on Kubernetes have been using the docker manifest experimental commands to build images for some time now. The last problem we had was fixed by one of the commits a few months ago: https://github.com/docker/cli/commit/69e1743e3d05e487ad8fc6d665b75f5b5d28b76c Could we please promote these commands from experimental to GA Change-Id: Iaa3ac7e1b56e1b6b4f091d047bf50c6794fa3d65 Signed-off-by: Davanum Srinivas --- cli/command/manifest/cmd.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cli/command/manifest/cmd.go b/cli/command/manifest/cmd.go index 8cc4987accf7..bf19f3dd14e3 100644 --- a/cli/command/manifest/cmd.go +++ b/cli/command/manifest/cmd.go @@ -20,7 +20,6 @@ func NewManifestCommand(dockerCli command.Cli) *cobra.Command { Run: func(cmd *cobra.Command, args []string) { fmt.Fprintf(dockerCli.Err(), "\n"+cmd.UsageString()) }, - Annotations: map[string]string{"experimentalCLI": ""}, } cmd.AddCommand( newCreateListCommand(dockerCli),