copyright: years: 2025, 2025 lastupdated: "2025-09-03"
keywords: , nhc005, calico degraded, tigera operator
subcollection: openshift
content-type: troubleshoot
Why does the Network status show an NHC005
error?
Virtual Private Cloud Classic infrastructure
When you check the status of your cluster's health by running the ibmcloud oc cluster health issues --cluster <CLUSTER_ID>
, you see an error similar to the following example.
ID Component Severity Description
NHC005 Network Warning Tigera operator is reporting that Calico is in 'degraded' state.
This warning indicates that the Tigera operator, which manages Calico in IBM Cloud Kubernetes Service, has detected that Calico is in a degraded state. This could impact network policies, pod networking, or other network-related features.
Check the logs of the Tigera operator and Calico components to investigate the cause of the degradation.
-
Check Tigera status custom resources and conditions and look for
"conditions"
with"Progressing": true
.kubectl get tigerastatus -o yaml
kubectl get tigerastatus calico -o yaml
-
Check Calico and Calico-typha components status by listing the Calico pods in
calico-system
namespace:kubectl get pods -n calico-system
-
Check the rollout status of deployments and daemonset.
kubectl rollout status deployment/calico-kube-controllers -n calico-system kubectl rollout status deployment/calico-typha -n calico-system kubectl rollout status daemonset/calico-node -n calico-system
-
If pods are not ready or stuck in
Init
orCrashLoopBackOff
, get the pod logs.kubectl logs <pod-name> -n calico-system
-
Look for any configuration errors, networking issues, or crash loops in logs.
-
After resolving any identified issues, wait a few minutes and recheck the network health.
-
For more information, see Controlling traffic with network policies and Debugging Calico components
-
If the issue persists, contact support for further assistance. Open a support case. In the case details, be sure to include any relevant log files, error messages, or command outputs.