The Tanzu Kubernetes Grid Service provisions Tanzu Kubernetes clusters with default networking for nodes, pods, and services. You can verify cluster networking using custom kubectl commands.
Custom Commands to Verify Tanzu Kubernetes Cluster Networking
Refer to the following commands to verify cluster networking.
Command | Description |
---|---|
Switch context to the vSphere Namespace. For example:
kubectl config use-context tkgs-ns
Run the command.
kubectl get tkgserviceconfigurations
Sample result.
NAME DEFAULT CNI tkg-service-configuration antrea |
Returns the default CNI, which is The default CNI is used for cluster creation unless explicitly overridden in the cluster YAML. To change the default CNI, see Examples for Configuring the Tanzu Kubernetes Grid Service v1alpha1 API. |
Switch context to the vSphere Namespace. For example:
kubectl config use-context tkgs-ns
Run the command.
kubectl get virtualnetwork
Sample result.
NAME SNAT READY AGE tkgs-cluster-12-vnet 10.191.152.133 True 4h3m |
Returns the virtual network for cluster nodes. Use to verify that the source network address translation (SNAT) IP address is assigned. |
Switch context to the vSphere Namespace. For example:
kubectl config use-context tkgs-ns
Run the command.
kubectl get virtualmachines -o wide
Sample result.
NAME POWERSTATE CLASS IMAGE PRIMARY-IP AGE tkgs-cluster-12-control-plane-... poweredOn guaranteed-medium ob-...-v1.21.6---vmware.1-tkg.1.b3d708a 10.244.0.66 4h6m tkgs-cluster-12-worker-... poweredOn guaranteed-medium ob-...-v1.21.6---vmware.1-tkg.1.b3d708a 10.244.0.68 4h3m tkgs-cluster-12-worker-... poweredOn guaranteed-medium ob-...-v1.21.6---vmware.1-tkg.1.b3d708a 10.244.0.67 4h3m |
Returns the virtual network interface for cluster nodes. Use to verify that the virtual machine for each cluster node has an IP address assigned. |
Switch context to the vSphere Namespace. For example:
kubectl config use-context tkgs-ns
Run the command.
kubectl get virtualmachineservices
Sample result.
NAME TYPE AGE tkgs-cluster-12-control-plane-service LoadBalancer 3h53m |
Returns the virtual machine service for each cluster node. Use to verify that the status is updated and includes the load balancer virtual IP (VIP) address. |
Switch context to the TKGS cluster namespace. For example.
kubectl config use-context tkgs-cluster-10
Run the command.
kubectl get services -n NAMESPACE
Verify.
curl -k https://EXTERNAL-IP:PORT/healthz |
Returns the Kubernetes service load balancer created for Cluster API access. Use to verify that an external IP is assigned. Use |
Switch context to the vSphere Namespace. For example:
kubectl config use-context tkgs-ns
Run the command.
kubectl get endpoints
Sample result.
NAME ENDPOINTS AGE tkgs-cluster-12-control-plane-service 10.244.0.66:6443 3h44m |
Returns the control plane nodes (endpoints) for the cluster. Use to verify that each endpoint is created and included in the endpoint pool. |