Added --build-repo in kompose up

In order to maintain symmetry between kompose up and kompose convert,
adding `--build-repo`
This commit is contained in:
Suraj Narwade 2017-09-26 16:34:20 +05:30
parent 4d4cc3b017
commit 6155698391

View File

@ -34,6 +34,7 @@ var (
UpOpt kobject.ConvertOptions
UpBuild string
UpBuildBranch string
UpBuildRepo string
)
var upCmd = &cobra.Command{
@ -58,6 +59,7 @@ var upCmd = &cobra.Command{
Namespace: UpNamespace,
InsecureRepository: UpInsecureRepo,
BuildBranch: UpBuildBranch,
BuildRepo: UpBuildRepo,
IsNamespaceFlag: cmd.Flags().Lookup("namespace").Changed,
}
@ -75,6 +77,7 @@ func init() {
upCmd.Flags().BoolVar(&UpInsecureRepo, "insecure-repository", false, "Use an insecure Docker repository for OpenShift ImageStream")
upCmd.Flags().StringVar(&UpNamespace, "namespace", "default", "Specify Namespace to deploy your application")
upCmd.Flags().StringVar(&UpBuild, "build", "local", `Set the type of build ("local"|"build-config" (OpenShift only)|"none")`)
upCmd.Flags().StringVar(&UpBuildRepo, "build-repo", "", "Specify source repository for buildconfig (default remote origin)")
upCmd.Flags().StringVar(&UpBuildBranch, "build-branch", "", "Specify repository branch to use for buildconfig (default master)")
// Deprecated