Skip to content

Commit 32a7289

Browse files
cleanup
1 parent 9c82d6f commit 32a7289

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

test/extended/machine_config/helpers.go

-6
Original file line numberDiff line numberDiff line change
@@ -485,9 +485,6 @@ func getMCNConditionStatus(mcn *v1alpha1.MachineConfigNode, conditionType string
485485
for _, condition := range conditions {
486486
if condition.Type == conditionType {
487487
framework.Logf("MCN %s condition %s status is %s", mcn.Name, conditionType, condition.Status)
488-
// TODO: remove
489-
framework.Logf("MCN %s condition %s reason is %s", mcn.Name, conditionType, condition.Reason)
490-
framework.Logf("MCN %s condition %s message is %s", mcn.Name, conditionType, condition.Message)
491488
return condition.Status
492489
}
493490
}
@@ -581,9 +578,6 @@ func restoreDesiredConfig(oc *exutil.CLI, node corev1.Node) error {
581578

582579
// Update desired config to be equal to current config
583580
framework.Logf("Node: %s is restoring desiredConfig value to match currentConfig value: %s", node.Name, currentConfig)
584-
// oc patch mcp/master --patch '{"spec": {"paused":true}}' --type=merge
585581
configErr := oc.Run("patch").Args(fmt.Sprintf("node/%v", node.Name), "--patch", fmt.Sprintf(`{"metadata":{"annotations":{"machineconfiguration.openshift.io/desiredConfig":"%v"}}}`, currentConfig), "--type=merge").Execute()
586-
// fmt.Sprintf("{\"metadata\":{\"annotations\":{\"machineconfiguration.openshift.io/desiredConfig\":\"%v\"", currentConfig)).Execute()
587-
// configErr := oc.Run("merge").Args(fmt.Sprintf("{\"metadata\":{\"annotations\":{\"machineconfiguration.openshift.io/desiredConfig\":\"%v\"", currentConfig)).Execute()
588582
return configErr
589583
}

0 commit comments

Comments
 (0)