You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ReconcilerStatus represents status information about desired/available nodes.typeReconcilerStatusstruct {
AvailableNodesint`json:"availableNodes,omitempty"`
}
It was suggested by @nkvoll to rename this attribute to ReadyPods instead of AvailableNodes because the latter is imprecise as it is not clear what is meant with nodes and what available means.
The suggestion is also to add an additional attribute representing the desired pods e.g. pods so that we can generate a print column similar to what built-in resources have:
NAME HEALTH READY VERSION PHASE AGE
elasticsearch-sample green 2/3 7.3.0 ApplyingChanges 12h
The text was updated successfully, but these errors were encountered:
Part of #1141
It was suggested by @nkvoll to rename this attribute to
ReadyPods
instead ofAvailableNodes
because the latter is imprecise as it is not clear what is meant with nodes and what available means.The suggestion is also to add an additional attribute representing the desired pods e.g.
pods
so that we can generate a print column similar to what built-in resources have:The text was updated successfully, but these errors were encountered: