Remove composefiles lenght check on k8s RunDeploy..

The compose file(s) are already loaded at that point.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2018-07-02 15:00:19 +02:00
parent a2b4d30cd0
commit 847e0c22d4
No known key found for this signature in database
GPG Key ID: 083CC6FD6EB699A3
1 changed files with 0 additions and 5 deletions

View File

@ -8,16 +8,11 @@ import (
"github.com/docker/cli/cli/command/stack/options"
composetypes "github.com/docker/cli/cli/compose/types"
"github.com/morikuni/aec"
"github.com/pkg/errors"
)
// RunDeploy is the kubernetes implementation of docker stack deploy
func RunDeploy(dockerCli *KubeCli, opts options.Deploy, cfg *composetypes.Config) error {
cmdOut := dockerCli.Out()
// Check arguments
if len(opts.Composefiles) == 0 {
return errors.Errorf("Please specify only one compose file (with --compose-file).")
}
// Initialize clients
composeClient, err := dockerCli.composeClient()