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
<=Desired
true? - Is
Up-to-Date
<=Current
true? - Is
Up-to-Date
>Current
andUp-to-Date
<=Desired
true? - Is
Available
always <=Current
OR it can be >Available
?
In short, what is the relation between all these fields?