Hi all, is there an equivalent for `list-active-la...
# ask-the-community
b
Hi all, is there an equivalent for
list-active-launch-plans
for
flytectl
? I really really miss this right now:
Copy code
flyte-cli \
    -h HOST \
    -d ENV \
    -p PROJECT \
    list-active-launch-plans
k
Flyte-cli should work
Let me see if flytectl does not really support it
šŸ‘ 1
p
You can use filters to get this ā€¢ Active
Copy code
flytectl get launchplan -p flytesnacks -d development -o yaml  --filter.fieldSelector "state=1"
ā€¢ Archive
Copy code
flytectl get launchplan -p flytesnacks -d development -o yaml  --filter.fieldSelector "state=0"
ā¤ļø 1
k
Cc @Brian Dobray
b
Thank you so much @Prafulla Mahindrakar. This is exactly what I needed. Strong suggestion, can we add all of the options for `filelSelector`in the documentation. I couldn't find a page of all of the different values that were filterable.
k
ya, that would be a good idea
cc @Smriti Satyan / @Marc Paquette
āœ… 1
šŸ‘€ 1
164 Views