change variables and appname to non-full
This commit is contained in:
parent
77e6be35a1
commit
3f299e0ba3
@ -9,19 +9,20 @@ dep_ignore='svclb-'
|
|||||||
|
|
||||||
# Pulling pod names
|
# Pulling pod names
|
||||||
k3s crictl pods --namespace ix -s Ready | sed -E 's/[[:space:]]([0-9]*|About)[a-z0-9 ]{5,12}ago[[:space:]]//' | grep -Ev -- "$dep_ignore" | sed '1d' >> dns_file
|
k3s crictl pods --namespace ix -s Ready | sed -E 's/[[:space:]]([0-9]*|About)[a-z0-9 ]{5,12}ago[[:space:]]//' | grep -Ev -- "$dep_ignore" | sed '1d' >> dns_file
|
||||||
mapfile -t ixName < <(< dns_file awk '{print $4}' | sort -u )
|
mapfile -t ix_name_array < <(< dns_file awk '{print $4}' | sort -u )
|
||||||
|
|
||||||
# Pulling all ports
|
# Pulling all ports
|
||||||
all_ports=$(k3s kubectl get service -A)
|
all_ports=$(k3s kubectl get service -A)
|
||||||
|
|
||||||
clear -x
|
clear -x
|
||||||
count=0
|
count=0
|
||||||
for i in "${ixName[@]}"
|
for i in "${ix_name_array[@]}"
|
||||||
do
|
do
|
||||||
[[ count -le 0 ]] && echo -e "\n" && ((count++))
|
[[ count -le 0 ]] && echo -e "\n" && ((count++))
|
||||||
appName=$(grep -E "\s$i\s" "dns_file" | awk '{print $3}' | sed 's/-[^-]*-[^-]*$//' | sed 's/-0//' | head -n 1)
|
full_app_name=$(grep -E "\s$i\s" "dns_file" | awk '{print $3}' | sed 's/-[^-]*-[^-]*$//' | sed 's/-0//' | head -n 1)
|
||||||
port=$(echo "$all_ports" | grep -E "\s$appName\s" | awk '{print $6}' | grep -Eo "^[[:digit:]]+{1}")
|
app_name=$(echo $i | cut -c 4-)
|
||||||
echo -e "$appName $appName.$i.svc.cluster.local $port"
|
port=$(echo "$all_ports" | grep -E "\s$full_app_name\s" | awk '{print $6}' | grep -Eo "^[[:digit:]]+{1}")
|
||||||
|
echo -e "$app_name $full_app_name.$i.svc.cluster.local $port"
|
||||||
done | nl -s ") " -b t | sed '0,/\s\s\s/{s/\s\s\s/- ---- -------- ----/}'| column -t -N "#,Name,DNS_Name,Port"
|
done | nl -s ") " -b t | sed '0,/\s\s\s/{s/\s\s\s/- ---- -------- ----/}'| column -t -N "#,Name,DNS_Name,Port"
|
||||||
rm dns_file
|
rm dns_file
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user