recognize double-quoted strings when parsing kube configs; other types of quotes are still not supported; see #1061

pull/1070/head
Roman Perepelitsa 4 years ago
parent e43209409b
commit 47713ea2df

@ -4306,10 +4306,13 @@ prompt_kubecontext() {
local name namespace cluster user cloud_name cloud_account cloud_zone cloud_cluster text state
() {
local cfg && cfg=(${(f)"$(kubectl config view -o=yaml 2>/dev/null)"}) || return
local ctx=(${(@M)cfg:#current-context: [^\"\'\|\>]*})
local qstr='"*"'
local str='([^"'\''|>]*|'$qstr')'
local ctx=(${(@M)cfg:#current-context: $~str})
(( $#ctx == 1 )) || return
name=${ctx[1]#current-context: }
local -i pos=${cfg[(i)contexts:]}
{
(( pos <= $#cfg )) || return
shift $pos cfg
pos=${cfg[(i) name: $name]}
@ -4319,14 +4322,20 @@ prompt_kubecontext() {
local line=$cfg[pos]
if [[ $line == '- context:' ]]; then
return 0
elif [[ $line == (#b)' cluster: '([^\"\'\|\>]*) ]]; then
elif [[ $line == (#b)' cluster: '($~str) ]]; then
cluster=$match[1]
elif [[ $line == (#b)' namespace: '([^\"\'\|\>]*) ]]; then
[[ $cluster == $~qstr ]] && cluster=$cluster[2,-2]
elif [[ $line == (#b)' namespace: '($~str) ]]; then
namespace=$match[1]
elif [[ $line == (#b)' user: '([^\"\'\|\>]*) ]]; then
[[ $namespace == $~qstr ]] && namespace=$namespace[2,-2]
elif [[ $line == (#b)' user: '($~str) ]]; then
user=$match[1]
[[ $user == $~qstr ]] && user=$user[2,-2]
fi
done
} always {
[[ $name == $~qstr ]] && name=$name[2,-2]
}
}
if [[ -n $name ]]; then
: ${namespace:=default}

Loading…
Cancel
Save