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
flags.BoolVarP(&deployFlags.ForcePackageDownload.Value, deployFlags.ForcePackageDownload.Name, "", false, "Force re-download of packages")
163
170
flags.StringArrayVarP(&deployFlags.DeploymentTargets.Value, deployFlags.DeploymentTargets.Name, "", nil, "Deploy to this target (can be specified multiple times)")
164
171
flags.StringArrayVarP(&deployFlags.ExcludeTargets.Value, deployFlags.ExcludeTargets.Name, "", nil, "Deploy to targets except for this (can be specified multiple times)")
172
+
flags.StringArrayVarP(&deployFlags.DeploymentFreezeNames.Value, deployFlags.DeploymentFreezeNames.Name, "", nil, "Override this deployment freeze (can be specified multiple times)")
173
+
flags.StringVarP(&deployFlags.DeploymentFreezeOverrideReason.Value, deployFlags.DeploymentFreezeOverrideReason.Name, "", "", "Reason for overriding a deployment freeze")
Environments []string// multiple for untenanted deployment, only one entry for tenanted deployment
92
-
Tenants []string
93
-
TenantTags []string
94
-
ScheduledStartTimestring
95
-
ScheduledExpiryTimestring
96
-
ExcludedSteps []string
97
-
GuidedFailureModestring// ["", "true", "false", "default"]. Note default and "" are the same, the only difference is whether interactive mode prompts you
98
-
ForcePackageDownloadbool
99
-
DeploymentTargets []string
100
-
ExcludeTargets []string
101
-
Variablesmap[string]string
102
-
UpdateVariablesbool
89
+
ProjectNamestring// required
90
+
ReleaseVersionstring// the release to deploy
91
+
Environments []string// multiple for untenanted deployment, only one entry for tenanted deployment
92
+
Tenants []string
93
+
TenantTags []string
94
+
ScheduledStartTimestring
95
+
ScheduledExpiryTimestring
96
+
ExcludedSteps []string
97
+
GuidedFailureModestring// ["", "true", "false", "default"]. Note default and "" are the same, the only difference is whether interactive mode prompts you
0 commit comments