I am trying to get my hands dirty on Kubernetes. I am firing following command:
kubectl get deployment
and I get the following headers in the output:
I can't find the difference between current and available columns in the following output?
I know that official documentation gives a small description each of these fields, but it doesn't answer my following questions:
- Is
Current<=Desiredtrue? - Is
Up-to-Date<=Currenttrue? - Is
Up-to-Date>CurrentandUp-to-Date<=Desiredtrue? - Is
Availablealways <=CurrentOR it can be >Available?
In short, what is the relation between all these fields?
