softshipper
softshipper

Reputation: 34081

Kubernetes does not show all the component status

Why the property STATUS does not show?

kubectl get componentstatuses 
NAME                 AGE
scheduler            <unknown>
controller-manager   <unknown>
etcd-2               <unknown>
etcd-3               <unknown>
etcd-1               <unknown>
etcd-4               <unknown>
etcd-0               <unknown>  

I am missing also the property MESSAGE and ERROR

Upvotes: 1

Views: 191

Answers (1)

weibeld
weibeld

Reputation: 15282

If you want to see all the details, you can do:

kubectl get componentstatuses -o yaml

This outputs the YAML representations of the objects with all the properties whereas the default kubectl get output format outputs only a selection of the properties.

Upvotes: 3

Related Questions