You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deployLatestCmd.Flags().StringArray("buildvar", []string{}, "Add one or more build variables to deployment (--buildvar KEY1=VALUE1 [--buildvar KEY2=VALUE2])")
309
309
310
310
deployBranchCmd.Flags().StringP("branch", "b", "", "Branch name to deploy")
311
-
deployBranchCmd.Flags().StringP("branchRef", "r", "", "Branch ref to deploy")
deployBranchCmd.Flags().StringArray("buildvar", []string{}, "Add one or more build variables to deployment (--buildvar KEY1=VALUE1 [--buildvar KEY2=VALUE2])")
314
314
315
315
deployPromoteCmd.Flags().StringP("destination", "d", "", "Destination environment name to create")
316
316
deployPromoteCmd.Flags().StringP("source", "s", "", "Source environment name to use as the base to deploy from")
deployPromoteCmd.Flags().StringArray("buildvar", []string{}, "Add one or more build variables to deployment (--buildvar KEY1=VALUE1 [--buildvar KEY2=VALUE2])")
deployPullrequestCmd.Flags().StringArray("buildvar", []string{}, "Add one or more build variables to deployment (--buildvar KEY1=VALUE1 [--buildvar KEY2=VALUE2])")
updateProjectCmd.Flags().StringP("pullrequests", "m", "", "Which Pull Requests should be deployed")
714
714
updateProjectCmd.Flags().StringP("production-environment", "E", "", "Which environment(the name) should be marked as the production environment")
715
715
updateProjectCmd.Flags().String("standby-production-environment", "", "Which environment(the name) should be marked as the standby production environment")
716
-
updateProjectCmd.Flags().StringP("openshift-project-pattern", "o", "", "Pattern of OpenShift Project/Namespace that should be generated")
716
+
updateProjectCmd.Flags().StringP("deploytarget-project-pattern", "o", "", "Pattern of Deploytarget(Kubernetes) Project/Namespace that should be generated")
717
717
updateProjectCmd.Flags().StringP("build-image", "", "", "Build Image for the project. Set to 'null' to remove the build image")
718
718
updateProjectCmd.Flags().StringP("availability", "", "", "Availability of the project")
719
719
@@ -722,7 +722,7 @@ func init() {
722
722
updateProjectCmd.Flags().UintP("auto-idle", "a", 0, "Auto idle setting of the project")
723
723
updateProjectCmd.Flags().UintP("storage-calc", "C", 0, "Should storage for this environment be calculated")
724
724
updateProjectCmd.Flags().UintP("development-environments-limit", "L", 0, "How many environments can be deployed at one time")
725
-
updateProjectCmd.Flags().UintP("openshift", "S", 0, "Reference to OpenShift Object this Project should be deployed to")
725
+
updateProjectCmd.Flags().UintP("deploytarget", "S", 0, "Reference to Deploytarget(Kubernetes) this Project should be deployed to")
726
726
updateProjectCmd.Flags().UintP("deployments-disabled", "", 0, "Admin only flag for disabling deployments on a project, 1 to disable deployments, 0 to enable")
727
727
728
728
updateProjectCmd.Flags().UintP("facts-ui", "", 0, "Enables the Lagoon insights Facts tab in the UI. Set to 1 to enable, 0 to disable")
@@ -738,12 +738,12 @@ func init() {
738
738
addProjectCmd.Flags().StringP("pullrequests", "m", "", "Which Pull Requests should be deployed")
739
739
addProjectCmd.Flags().StringP("production-environment", "E", "", "Which environment(the name) should be marked as the production environment")
740
740
addProjectCmd.Flags().String("standby-production-environment", "", "Which environment(the name) should be marked as the standby production environment")
741
-
addProjectCmd.Flags().StringP("openshift-project-pattern", "o", "", "Pattern of OpenShift Project/Namespace that should be generated")
741
+
addProjectCmd.Flags().StringP("deploytarget-project-pattern", "", "", "Pattern of Deploytarget(Kubernetes) Project/Namespace that should be generated")
742
742
743
743
addProjectCmd.Flags().UintP("auto-idle", "a", 0, "Auto idle setting of the project")
744
744
addProjectCmd.Flags().UintP("storage-calc", "C", 0, "Should storage for this environment be calculated")
745
745
addProjectCmd.Flags().UintP("development-environments-limit", "L", 0, "How many environments can be deployed at one time")
746
-
addProjectCmd.Flags().UintP("openshift", "S", 0, "Reference to OpenShift Object this Project should be deployed to")
746
+
addProjectCmd.Flags().UintP("deploytarget", "S", 0, "Reference to Deploytarget(Kubernetes) target this Project should be deployed to")
747
747
addProjectCmd.Flags().StringP("build-image", "", "", "Build Image for the project")
748
748
addProjectCmd.Flags().Bool("owner", false, "Add the user as an owner of the project")
749
749
addProjectCmd.Flags().StringP("organization-name", "O", "", "Name of the Organization to add the project to")
0 commit comments