Cloud Native 5 min read

100 Essential Kubectl Commands for Kubernetes Diagnosis (Free PDF)

The article reports a recent outage of the popular game 'Honor of Kings' with official apologies and promises to restore points, then shifts to a comprehensive guide of 100 Kubectl commands for diagnosing Kubernetes clusters, including cluster info, pod, service, network, and security checks, with a free PDF download.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
100 Essential Kubectl Commands for Kubernetes Diagnosis (Free PDF)

King of Glory Outage and Official Response

On October 8, many players reported that the game "Honor of Kings" displayed the message "Data resource corrupted! You need to restart the game client for resource repair" and caused loss of reputation points.

Players complained that after restarting the game multiple times they still could not enter matches and saw deductions of 5–7 points.

Netizens joked about the situation and demanded compensation.

Officially, the game team responded: "Dear Summoner, we have received feedback about possible data resource corruption during matches. We are locating the issue and will fix it as soon as possible. We apologize for the inconvenience and thank you for your support and understanding."

Later, the official operation team announced that the abnormal issue had been fixed and promised to restore points: "The data resource corruption issue on October 8 has been fixed. Players who encountered the problem can exit and re‑enter the client to resume normal matches. Reputation, rank stars, and peak points deducted due to the issue will be gradually restored within two working days."

Game outage screenshot
Game outage screenshot

100 Essential Kubectl Commands for Kubernetes Diagnosis

This guide lists 100 Kubectl commands useful for diagnosing Kubernetes clusters, covering cluster information, pod diagnostics, service diagnostics, deployment diagnostics, network diagnostics, storage, resource usage, security, node troubleshooting, and more. The full list is available as a free PDF.

Cluster Information

Show Kubernetes version: kubectl version Show cluster info: kubectl cluster-info List all nodes: kubectl get nodes Describe a specific node: kubectl describe node <node-name> List all namespaces: kubectl get namespaces List all pods in all namespaces:

kubectl get pods --all-namespaces

Pod Diagnosis

List pods in a specific namespace: kubectl get pods -n <namespace> Describe a pod: kubectl describe pod <pod-name> -n <namespace> View pod logs: kubectl logs <pod-name> -n <namespace> Tail pod logs: kubectl logs -f <pod-name> -n <namespace> Execute a command inside a pod:

kubectl exec -it <pod-name> -n <namespace> -- <command>

Namespace Diagnosis

Describe a namespace: kubectl describe namespace <namespace-name> The guide continues with many more commands for services, deployments, networking, storage, resource usage, security, node troubleshooting, and other advanced diagnostics. The complete collection is provided in a downloadable PDF.

Kubernetes guide QR code
Kubernetes guide QR code
Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

KubernetesPDFdiagnosticskubectlK8s commands
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.