We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcdb7ac commit d43f3d1Copy full SHA for d43f3d1
rust/operator-binary/src/restart_controller/pod.rs
@@ -211,7 +211,7 @@ async fn report_result(
211
Error::EvictPod {
212
source: evict_pod_error,
213
},
214
- pod,
+ pod_ref,
215
)) = &result
216
{
217
const TOO_MANY_REQUESTS_HTTP_CODE: u16 = StatusCode::TOO_MANY_REQUESTS.as_u16();
@@ -230,7 +230,7 @@ async fn report_result(
230
231
if error_message == EVICT_ERROR_MESSAGE {
232
tracing::info!(
233
- %pod,
+ k8s.object_ref = %pod_ref,
234
error = %evict_pod_error,
235
"Tried to evict Pod, but wasn't allowed to do so, as it would violate the Pod's disruption budget. Retrying later"
236
);
0 commit comments