forked from thecasualcoder/kube-fzf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kube-fzf.sh
executable file
·183 lines (163 loc) · 4.98 KB
/
kube-fzf.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#!/usr/bin/env bash
_kube_fzf_usage() {
local func=$1
echo -e "\nUSAGE:\n"
case $func in
findpod)
cat << EOF
findpod [-a | -n <namespace-query>] [pod-query]
-a - Search in all namespaces
-h - Show help
-n <namespace-query> - Find namespaces matching <namespace-query> and do fzf.
If there is only one match then it is selected automatically.
EOF
;;
tailpod)
cat << EOF
tailpod [-a | -n <namespace-query>] [pod-query]
-a - Search in all namespaces
-h - Show help
-n <namespace-query> - Find namespaces matching <namespace-query> and do fzf.
If there is only one match then it is selected automatically.
EOF
;;
execpod)
cat << EOF
execpod [-a | -n <namespace-query>] [pod-query] <command>
-a - Search in all namespaces
-h - Show help
-n <namespace-query> - Find namespaces matching <namespace-query> and do fzf.
If there is only one match then it is selected automatically.
EOF
;;
pfpod)
cat << EOF
pfpod [ -c | -o | -a | -n <namespace-query>] [pod-query] <source-port:destination-port | port>
-a - Search in all namespaces
-h - Show help
-n <namespace-query> - Find namespaces matching <namespace-query> and do fzf.
If there is only one match then it is selected automatically.
-o - Open in Browser after port-forwarding
-c - Copy to Clipboard
EOF
;;
describepod)
cat << EOF
describepod [-a | -n <namespace-query>] [pod-query]
-a - Search in all namespaces
-h - Show help
-n <namespace-query> - Find namespaces matching <namespace-query> and do fzf.
If there is only one match then it is selected automatically.
EOF
;;
esac
}
_kube_fzf_handler() {
local opt namespace_query pod_query cmd
local open=false
local copy=false
local OPTIND=1
local func=$1
shift $((OPTIND))
while getopts ":hn:aoc" opt; do
case $opt in
h)
_kube_fzf_usage "$func"
return 1
;;
n)
namespace_query="$OPTARG"
;;
a)
namespace_query="--all-namespaces"
;;
o)
open=true
;;
c)
copy=true
;;
\?)
echo "Invalid Option: -$OPTARG."
_kube_fzf_usage "$func"
return 1
;;
:)
echo "Option -$OPTARG requires an argument."
_kube_fzf_usage "$func"
return 1
;;
esac
done
shift $((OPTIND - 1))
if [ "$func" = "execpod" ] || [ "$func" = "pfpod" ]; then
if [ $# -eq 1 ]; then
cmd=$1
[ -z "$cmd" ] && cmd="sh"
elif [ $# -eq 2 ]; then
pod_query=$1
cmd=$2
if [ -z "$cmd" ]; then
if [ "$func" = "execpod" ]; then
echo "Command required." && _kube_fzf_usage "$func" && return 1
elif [ "$func" = "pfpod" ]; then
echo "Port required." && _kube_fzf_usage "$func" && return 1
fi
fi
else
if [ -z "$cmd" ]; then
if [ "$func" = "execpod" ]; then
cmd="sh"
elif [ "$func" = "pfpod" ]; then
echo "Port required." && _kube_fzf_usage "$func" && return 1
fi
fi
fi
else
pod_query=$1
fi
args="$namespace_query|$pod_query|$cmd|$open|$copy"
}
_kube_fzf_fzf_args() {
local search_query=$1
local extra_args=$2
local fzf_args="--height=10 --ansi --reverse $extra_args"
[ -n "$search_query" ] && fzf_args="$fzf_args --query=$search_query"
echo "$fzf_args"
}
_kube_fzf_search_pod() {
local namespace pod_name
local namespace_query=$1
local pod_query=$2
local pod_fzf_args=$(_kube_fzf_fzf_args "$pod_query")
if [ -z "$namespace_query" ]; then
context=$(kubectl config current-context)
namespace=$(kubectl config get-contexts --no-headers $context \
| awk '{ print $5 }')
namespace=${namespace:=default}
pod_name=$(kubectl get pod --namespace=$namespace --no-headers \
| fzf $(echo $pod_fzf_args) \
| awk '{ print $1 }')
elif [ "$namespace_query" = "--all-namespaces" ]; then
read namespace pod_name <<< $(kubectl get pod --all-namespaces --no-headers \
| fzf $(echo $pod_fzf_args) \
| awk '{ print $1, $2 }')
else
local namespace_fzf_args=$(_kube_fzf_fzf_args "$namespace_query" "--select-1")
namespace=$(kubectl get namespaces --no-headers \
| fzf $(echo $namespace_fzf_args) \
| awk '{ print $1 }')
namespace=${namespace:=default}
pod_name=$(kubectl get pod --namespace=$namespace --no-headers \
| fzf $(echo $pod_fzf_args) \
| awk '{ print $1 }')
fi
[ -z "$pod_name" ] && return 1
echo "$namespace|$pod_name"
}
_kube_fzf_echo() {
local reset_color="\033[0m"
local bold_green="\033[1;32m"
local message=$1
echo -e "\n$bold_green $message $reset_color\n"
}