Merge pull request #347 from surajssd/up_down_no_validation_needed

Flag validation called on up and down
This commit is contained in:
Suraj Deshmukh 2016-12-27 17:55:02 +05:30 committed by GitHub
commit 0370d66357
4 changed files with 3 additions and 7 deletions

View File

@ -17,11 +17,12 @@ limitations under the License.
package cmd
import (
"strings"
"github.com/kubernetes-incubator/kompose/pkg/app"
"github.com/kubernetes-incubator/kompose/pkg/kobject"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"strings"
)
var (

View File

@ -43,9 +43,6 @@ var downCmd = &cobra.Command{
Provider: strings.ToLower(GlobalProvider),
EmptyVols: DownEmptyVols,
}
// Validate before doing anything else. Use "bundle" if passed in.
app.ValidateFlags(GlobalBundle, args, cmd, &DownOpt)
},
Run: func(cmd *cobra.Command, args []string) {
app.Down(DownOpt)

View File

@ -43,9 +43,6 @@ var upCmd = &cobra.Command{
Provider: strings.ToLower(GlobalProvider),
EmptyVols: UpEmptyVols,
}
// Validate before doing anything else. Use "bundle" if passed in.
app.ValidateFlags(GlobalBundle, args, cmd, &UpOpt)
},
Run: func(cmd *cobra.Command, args []string) {
app.Up(UpOpt)

View File

@ -18,6 +18,7 @@ package cmd
import (
"fmt"
"github.com/spf13/cobra"
)