Replies: 1 comment
-
The |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is a feature request to add a
flux get all
command to the CLI.This would be a nice quality-of-life enhancement to the CLI. Sometimes I want to quickly peak at the status of the various toolkit components. I also figure if
kubectl get all
has a use case in the Kubernetes world, thenflux get all
seems like a natural fit.For example, the following is a bit cumbersome:
As opposed to something more ergonomic such as the following:
Something like
flux get images all
andflux get sources all
would be welcome additions too. It probably goes without saying, but this wouldn't apply to commands that don't have multiple components under a namespace. For instance,flux get ks all
would be superfluous sinceflux get ks
already gives you allKustomization
s.And I guess for now I'll just settle for
$ alias fluxgetall="flux get ks && flux get source git && flux get ..."
😉Beta Was this translation helpful? Give feedback.
All reactions