Skip to content

Commit

Permalink
Merge pull request #642 from typeid/patch-1
Browse files Browse the repository at this point in the history
fix: resize control plane alternative service log post suggestion
  • Loading branch information
openshift-merge-bot[bot] authored Dec 13, 2024
2 parents 7612e92 + deff4b1 commit 285bb32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cluster/resize/controlplane_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ func (o *controlPlane) runWithCPMS(ctx context.Context) error {
// Wait infinitely
log.Println("Waiting for control plane resize to complete - this normally takes around 30 minutes per machine/90 minutes total")
log.Println("If this command terminates before completing, please remember to send a service log manually")
log.Printf("osdctl servicelog post %s -t %s -p INSTANCE_TYPE=%s JIRA_ID=${JIRA_ID} JUSTIFICATION=${JUSTIFICATION}", o.clusterID, resizeControlPlaneServiceLogTemplate, o.newMachineType)
log.Printf("osdctl servicelog post %s -t %s -p INSTANCE_TYPE=%s -p JIRA_ID=${JIRA_ID} -p JUSTIFICATION=${JUSTIFICATION}", o.clusterID, resizeControlPlaneServiceLogTemplate, o.newMachineType)
if err := wait.PollUntilContextCancel(ctx, 3*time.Minute, false, func(ctx context.Context) (bool, error) {
cpms := &machinev1.ControlPlaneMachineSet{}
if err := o.client.Get(ctx, client.ObjectKey{Namespace: cpmsNamespace, Name: cpmsName}, cpms); err != nil {
Expand Down

0 comments on commit 285bb32

Please sign in to comment.