Reputation: 826
My question is how can I filter a column in GCP and get all NULL outputs.
For example, in the below picture I would like to filter all "NUM_NODES" which do not have any number (NULL)
Thanks in advance, Yonatan Brand
Upvotes: 1
Views: 1699
Reputation: 2893
Try running the gcloud command with the filter flag. For instance:
gcloud container clusters list --filter="-currentNodeCount:*"
Upvotes: 2