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
fmt.Fprintf(o.errOut, "error: unable to mark service %s as idled: %v", serviceName.String(), err)
617
+
fmt.Fprintf(o.errOut, "error: unable to mark service %q as idled: %v", serviceName.String(), err)
611
618
hadError=true
612
619
continue
613
620
}
614
621
}
615
622
623
+
fmt.Fprintf(o.out, "The service %q has been marked as idled %s\n", serviceName.String(), dryRunText)
624
+
616
625
for_, scaleRef:=rangerefsWithScale {
617
-
fmt.Fprintf(o.out, "Marked service %s to unidle resource %s %s/%s (unidle to %v replicas)\n", serviceName.String(), scaleRef.Kind, serviceName.Namespace, scaleRef.Name, scaleRef.Replicas)
626
+
fmt.Fprintf(o.out, "The service will unidle %s \"%s/%s\"to %v replicas once it receives traffic %s\n", scaleRef.Kind, serviceName.Namespace, scaleRef.Name, scaleRef.Replicas, dryRunText)
618
627
}
619
628
}
620
629
621
630
// actually "idle" the scalable resources by scaling them down to zero
622
631
// (scale down to zero *after* we've applied the annotation so that we don't miss any traffic)
os::cmd::expect_success_and_text 'oc idle idling-echo'"Marked service ${project}/idling-echo to unidle resource DeploymentConfig ${project}/${dc_name} \(unidle to 2 replicas\)"
63
+
os::cmd::expect_success_and_text 'oc idle idling-echo'"The service will unidle DeploymentConfig \"${project}/${dc_name}\" to 2 replicas once it receives traffic"
64
64
os::cmd::expect_success_and_text "oc get endpoints idling-echo -o go-template='${idled_at_template}'"'.'
os::cmd::expect_success_and_text 'oc idle -l app=idling-echo'"Marked service ${project}/idling-echo to unidle resource DeploymentConfig ${project}/${dc_name} \(unidle to 2 replicas\)"
70
+
os::cmd::expect_success_and_text 'oc idle -l app=idling-echo'"The service will unidle DeploymentConfig \"${project}/${dc_name}\" to 2 replicas once it receives traffic"
71
71
os::cmd::expect_success_and_text "oc get endpoints idling-echo -o go-template='${idled_at_template}'"'.'
os::cmd::expect_success_and_text 'oc idle --all'"Marked service ${project}/idling-echo to unidle resource DeploymentConfig ${project}/${dc_name} \(unidle to 2 replicas\)"
77
+
os::cmd::expect_success_and_text 'oc idle --all'"The service will unidle DeploymentConfig \"${project}/${dc_name}\" to 2 replicas once it receives traffic"
78
78
os::cmd::expect_success_and_text "oc get endpoints idling-echo -o go-template='${idled_at_template}'"'.'
os::cmd::expect_success_and_text 'oc idle idling-echo'"Marked service ${project}/idling-echo to unidle resource DeploymentConfig ${project}/${dc_name} \(unidle to 2 replicas\)"
84
+
os::cmd::expect_success_and_text 'oc idle idling-echo'"The service will unidle DeploymentConfig \"${project}/${dc_name}\" to 2 replicas once it receives traffic"
85
85
os::cmd::expect_success_and_text "oc get dc ${dc_name} -o go-template='${prev_scale_template}'"'2'# we see the result of the initial scale as the previous scale
0 commit comments