
kubectl-describe
List of commands for kubectl-describe:
-
kubectl-describe:tldr:7207f kubectl-describe: Show details of Kubernetes objects defined in a YAML manifest.$ kubectl describe -f ${path-to-manifest-yaml}try on your machineexplain this command
-
kubectl-describe:tldr:8beb0 kubectl-describe: Show details of pods in a namespace.$ kubectl describe pods -n ${namespace}try on your machineexplain this command
-
kubectl-describe:tldr:bd141 kubectl-describe: Show details of nodes in a namespace.$ kubectl describe nodes -n ${namespace}try on your machineexplain this command
-
kubectl-describe:tldr:c90a6 kubectl-describe: Show the details of a specific node in a namespace.$ kubectl describe nodes ${node_name} -n ${namespace}try on your machineexplain this command
-
kubectl-describe:tldr:fc9e8 kubectl-describe: Show the details of a specific pod in a namespace.$ kubectl describe pods ${pod_name} -n ${namespace}try on your machineexplain this command