Horje
why kubectl command not working for describe pod Code Example
why kubectl command not working for describe pod
You've not specified the namespace in your describe pod command.

You did kubectl get all -n minio-operator, which gets all resources in the minio-operator namespace, but your kubectl describe has no namespace, so it's looking in the default namespace for a pod that isn't there.

kubectl describe po -n minio-operator <pod name> should work OK.

Most operations in kubernetes are namespaced, so will require the -n <namespace> argument




Shell

Related
kube dashboard expose access port Code Example kube dashboard expose access port Code Example
find bahs Code Example find bahs Code Example
sigin failed for rsa github signing Code Example sigin failed for rsa github signing Code Example
Not Found The requested URL was not found on this server. Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/7.3.27 Server at localhost Port 8 Code Example Not Found The requested URL was not found on this server. Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/7.3.27 Server at localhost Port 8 Code Example
Send email with Gitlab docker image Code Example Send email with Gitlab docker image Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10