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 5a6beb1 commit 0b0589dCopy full SHA for 0b0589d
tests/acceptance/semiautomation/helper.fish
@@ -64,8 +64,9 @@ function waitForUser
64
end
65
66
function getLoadBalancerIP
67
- string trim -c '"' (kubectl get service $argv[1] -o=json | \
68
- jq .status.loadBalancer.ingress[0].ip)
+ set var (kubectl get service $argv[1] -o=json | jq .status.loadBalancer.ingress[0])
+ set key (echo $var | jq -r keys[0])
69
+ echo $var | jq -r .$key
70
71
72
function testArangoDB
0 commit comments