copyright: years: 2025, 2025 lastupdated: "2025-07-09"
keywords: , nhc010, exceeded security group rules quota
subcollection: openshift
content-type: troubleshoot
Why does the Network status show an NHC010
error?
Virtual Private Cloud
When you check the status of your cluster's network components by running the ibmcloud ocks cluster health issues --cluster <CLUSTER_ID>
, you see an error similar to the following example.
ID Component Severity Description
NHC010 Network Error Exceeded security group rules related quota.
IBM Cloud enforces a limit of 15 remote security group rules per security group in production environments. If this limit is exceeded, it can prevent your cluster from creating or updating required security group rules. This might also block adding more resources, such as worker nodes.
Review and adjust your cluster's security group rules.
-
Each cluster has a dedicated security group named
kube-<CLUSTER_ID>
. First, retrieve your cluster's security group ID (SECURITY_GROUP_ID) by running:ibmcloud is security-groups <VPC_ID> --output json | jq -r '.[] | select(.name=="kube-<CLUSTER_ID>") | .id'
-
Count how many remote security group rules are associated with this group:
ibmcloud is security-group-rules <SECURITY_GROUP_ID> | grep -c <CLUSTER_ID>
-
If the count reaches 15, you are at the quota limit. To resolve this:
- Reduce the number of individual rules by combining them where possible, for example by using CIDR ranges.
- Remove duplicate rules that point to the same remote group or IP addresses.
- Review and clean up any unnecessary rules.
-
For IBM Cloud enforced limits, see VPC Security Group Rule Limits & Quotas.
-
For general best practices, see the Security Group Guidelines.
-
For command references, see the Security Group Rule CLI Reference.
-
After making adjustments, wait a few minutes and check if the warning clears.
-
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.