kpt uses its own custom condition type rather than the standard k8s condition type
The standard condition type has two extra fields LastTransitionTime and ObservedGeneration, which will appear with default values for now. Over time, these fields can be properly populated.
The main reason to change is that
- the two new fields are helpful
- there are multiple unnecessary translations between the custom kpt condition type and the default type int he code, which are unnecessary.
kpt uses its own custom condition type rather than the standard k8s condition type
The standard condition type has two extra fields
LastTransitionTimeandObservedGeneration, which will appear with default values for now. Over time, these fields can be properly populated.The main reason to change is that