Show processing state in printer columns (i.e., in the output of kubectl get stack
)
#396
Labels
good-first-issue
Start here if you'd like to start contributing to Pulumi
kind/enhancement
Improvements or new features
resolution/fixed
This issue was fixed
It is hard to see from the outside whether a Stack object is responding to changes you've made. For example, whether it has seen, and is running, new code you've committed. At present, only the last state reached is shown; so if it goes from success to success with a new source revision, you won't see any change.
The obvious way to improve this is to use
additionalPrinterColumns
so thatkubectl get stack
will show a summary of the state, including when it's processing. The Ready/Reconciling/Stalled conditions give enough info to show what's happening at the time of asking; they may need to be summarised in a new.status
field for it to be usable inadditionalPrinterColumns
.The revision under processing would also be useful -- in most cases this will be the last attempted revision, but there may need to be work done to ensure this (and .lastSuccessfulCommit) is kept accurate.
The text was updated successfully, but these errors were encountered: