Argocui provides a terminal UI to manage Argo resources. The aim of this project is to deal with Argo resources such as Workflow
and CronWorkflow
as the argo
command provides.
The simple video clip for Argo CUI.
You can download the binary file in the release page.
brew install argocui
$ git clone git@github.com:hanjunlee/argocui.git
$ cd argocui
$ go build -o argocui ./cmd
Usage of argocui
-debug
Debug mode.
-trace
Debug as trace level.
-version
Check the version.
Note that when you run the command it create the log file at $HOME/.argocui/log
.
Command | Description |
---|---|
H |
Move the cursor to the top of a view. |
k |
Move the cursor up. |
j |
Move the cursor down. |
L |
Move the cursor to the bottom of a view. |
esc |
Back to the main view which displays the list of resources. |
: |
Switch the Kind to another. It has ns i.e Namespace and wf i.e Workflow at this moment. For example, :ns switch the Kind into the Namespace . |
/ |
Search resources which is matched with the pattern. |
ctrl+g |
Display the detail of resource. It works for Workflow . |
ctrl+l |
Follow logs of resource. It works for Workflow . |
ctrl+delete |
Delete the resource. It works for Workflow . |
I owe a huge thanks to maintainer and contributers of K9S.