We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c50ffd commit d71bbadCopy full SHA for d71bbad
tools/dashboard/run_dashboard.sh
@@ -0,0 +1,18 @@
1
+sudo apt -y install htop ruby
2
+sudo gem install tmuxinator
3
+sudo wget https://raw.githubusercontent.com/tmuxinator/tmuxinator/master/completion/tmuxinator.bash -O /etc/bash_completion.d/tmuxinator.bash
4
+tmuxinator new dashboard
5
+cat <<-EOF > ~/.config/tmuxinator/dashboard.yml
6
+name: dashboard
7
+root: ~/
8
+windows:
9
+ - crs:
10
+ layout: tiled
11
+ panes:
12
+ - watch sudo virsh list --all
13
+ - watch kubectl get bmh -A
14
+ - watch kubectl get machine -A
15
+ - htop
16
+ - watch kubectl get pods -A -o wide
17
+EOF
18
+tmuxinator start dashboard
0 commit comments