Skip to content

Commit 010d41c

Browse files
authored
bug: add timeout to kubectl wait for service ip (#933)
/kind bug /area ci * add timeout to kubectl wait for service ip. By default, it's 30 seconds which seems to be not enough.
1 parent e7356be commit 010d41c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/performance/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test-performance: deploy-max-replicas-istio deploy-helm test-deploy
3636
deploy-max-replicas-istio:
3737
kubectl apply -f istio-max-replicas.yaml
3838
kubectl wait --for='jsonpath={.status.state}=Ready' --timeout=5m -n kyma-system istio default
39-
kubectl wait -n istio-system --for=jsonpath='{.status.loadBalancer.ingress}' service/istio-ingressgateway
39+
kubectl wait -n istio-system --for=jsonpath='{.status.loadBalancer.ingress}' --timeout=5m service/istio-ingressgateway
4040

4141
domain=$(shell kubectl config view -o json | jq '.clusters[0].cluster.server' | sed -e "s/https:\/\/api.//" -e 's/"//g');\
4242
kubectl annotate service -n istio-system istio-ingressgateway "dns.gardener.cloud/dnsnames=*.${domain}" --overwrite

0 commit comments

Comments
 (0)