guard around kube actions for endpoint inspect (#8430)

pull/8454/head
Matt Hook 2 years ago committed by GitHub
parent 2dddc1c6b9
commit e2168d21c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -52,8 +52,9 @@ func (handler *Handler) endpointInspect(w http.ResponseWriter, r *http.Request)
}
}
if endpointutils.IsKubernetesEndpoint(endpoint) {
isServerMetricsDetected := endpoint.Kubernetes.Flags.IsServerMetricsDetected
if endpointutils.IsKubernetesEndpoint(endpoint) && !isServerMetricsDetected && handler.K8sClientFactory != nil {
if !isServerMetricsDetected && handler.K8sClientFactory != nil {
endpointutils.InitialMetricsDetection(
endpoint,
handler.DataStore.Endpoint(),
@ -69,6 +70,7 @@ func (handler *Handler) endpointInspect(w http.ResponseWriter, r *http.Request)
handler.K8sClientFactory,
)
}
}
return response.JSON(w, endpoint)
}

Loading…
Cancel
Save