We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3c9a910 + 90960ff commit d7de871Copy full SHA for d7de871
2 files changed
bin/call.sh
@@ -5,8 +5,6 @@ set -o pipefail
5
6
KSVC_NAME=${1:-'greeter'}
7
8
-IP_ADDRESS="$(minikube ip):$(kubectl get svc kourier-external --namespace kourier-system --output 'jsonpath={.spec.ports[?(@.port==80)].nodePort}')"
9
-
10
CURR_CTX=$(kubectl config current-context)
11
12
CURR_NS="$(kubectl config view -o=jsonpath="{.contexts[?(@.name==\"${CURR_CTX}\")].context.namespace}")" \
bin/poll.sh
@@ -1,10 +1,11 @@
1
#!/bin/bash
2
+set -eu
3
+set -o pipefail
4
trap '{ echo "" ; exit 1; }' INT
-IP_ADDRESS="$(minikube ip):$(kubectl get svc istio-ingressgateway --namespace istio-system --output 'jsonpath={.spec.ports[?(@.port==80)].nodePort}')"
0 commit comments