Hi, is there a way to check if a k9s resource exis...
# general
f
Hi, is there a way to check if a k9s resource exists? Eg. if namespace exists, don't create it, but if it does not exist, create. I tried using Namespace.get, but it always returns a value
figured this out - needed to do ns.status.apply() to check status.phase value
c
@faint-vegetable-61837 hmm, what are you trying to do?
f
I'd like to create a namespace if it does not exist