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
Scheduling on each worker node is disabled as the change is being applied.
65
-
+
66
-
When all nodes return to the `Ready` condition, you can use the following command to look in the Kubernetes Controller Manager to ensure it was applied:
67
-
+
68
-
[source,terminal]
69
-
----
70
-
$ oc get KubeControllerManager -o yaml | grep -i workerlatency -A 5 -B 5
71
-
----
72
-
+
73
-
.Example output
74
-
[source,terminal]
75
-
----
76
-
...
77
-
- lastTransitionTime: "2022-07-11T19:47:10Z"
78
-
reason: ProfileUpdated
79
-
status: "False"
80
-
type: WorkerLatencyProfileProgressing
81
-
- lastTransitionTime: "2022-07-11T19:47:10Z" <1>
82
-
message: all static pod revision(s) have updated latency profile
83
-
reason: ProfileUpdated
84
-
status: "True"
85
-
type: WorkerLatencyProfileComplete
86
-
- lastTransitionTime: "2022-07-11T19:20:11Z"
87
-
reason: AsExpected
88
-
status: "False"
89
-
type: WorkerLatencyProfileDegraded
90
-
- lastTransitionTime: "2022-07-11T19:20:36Z"
91
-
status: "False"
92
-
...
93
-
----
94
-
<1> Specifies that the profile is applied and active.
95
65
96
66
. Optional: Move to the low worker latency profile:
97
67
@@ -128,11 +98,43 @@ metadata:
128
98
spec:
129
99
workerLatencyProfile: LowUpdateSlowReaction <1>
130
100
131
-
...
101
+
# ...
132
102
----
133
103
<1> Specifies to use the low worker latency policy.
134
104
+
135
105
Scheduling on each worker node is disabled as the change is being applied.
136
106
107
+
.Verification
108
+
109
+
* When all nodes return to the `Ready` condition, you can use the following command to look in the Kubernetes Controller Manager to ensure it was applied:
110
+
+
111
+
[source,terminal]
112
+
----
113
+
$ oc get KubeControllerManager -o yaml | grep -i workerlatency -A 5 -B 5
114
+
----
115
+
+
116
+
.Example output
117
+
[source,terminal]
118
+
----
119
+
# ...
120
+
- lastTransitionTime: "2022-07-11T19:47:10Z"
121
+
reason: ProfileUpdated
122
+
status: "False"
123
+
type: WorkerLatencyProfileProgressing
124
+
- lastTransitionTime: "2022-07-11T19:47:10Z" <1>
125
+
message: all static pod revision(s) have updated latency profile
126
+
reason: ProfileUpdated
127
+
status: "True"
128
+
type: WorkerLatencyProfileComplete
129
+
- lastTransitionTime: "2022-07-11T19:20:11Z"
130
+
reason: AsExpected
131
+
status: "False"
132
+
type: WorkerLatencyProfileDegraded
133
+
- lastTransitionTime: "2022-07-11T19:20:36Z"
134
+
status: "False"
135
+
# ...
136
+
----
137
+
<1> Specifies that the profile is applied and active.
138
+
137
139
To change the low profile to medium or change the medium to low, edit the `node.config` object and set the `spec.workerLatencyProfile` parameter to the appropriate value.
0 commit comments