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
This keyword should list all objects in a namesapce by listing all available api-resources and then checking if this namespace has any resources of that type.
with kubectl this can be done via
kubectl api-resources --verbs=list --namespaced -o name \
| xargs -n 1 kubectl get --show-kind --ignore-not-found -n default
This keyword can be used to validate the existence of k8s objects for a certain namespace.
I believe it would be nice to have the keyword return a json object like this:
This keyword should list all objects in a namesapce by listing all available api-resources and then checking if this namespace has any resources of that type.
with
kubectl
this can be done viaThis keyword can be used to validate the existence of k8s objects for a certain namespace.
I believe it would be nice to have the keyword return a json object like this:
The text was updated successfully, but these errors were encountered: