Skip to content

Commit 80ac108

Browse files
committed
Increase timeouts in helm and blog tests
Signed-off-by: Neha Bhat <[email protected]>
1 parent 7dc4f01 commit 80ac108

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

e2e/blog_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ main() {
133133

134134
echo "nlb-tls-app deployment found."
135135

136-
timeout 30s bash -c 'until kubectl get service/nlb-tls-app --output=jsonpath='{.status.loadBalancer}' | grep "ingress"; do : ; done' 1>/dev/null || exit 1
136+
timeout 60s bash -c 'until kubectl get service/nlb-tls-app --output=jsonpath='{.status.loadBalancer}' | grep "ingress"; do : ; done' 1>/dev/null || exit 1
137137

138138
echo "Creating target groups"
139139

e2e/helm_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ main() {
9292
[ -z "$POD_VOLUMES" ] && echo "Volume 'cache-volume' has not been found" && exit 1
9393
[ -z "$POD_VOLUME_MOUNTS" ] && echo "Volume mount 'cache-volume' has not been found" && exit 1
9494

95-
kubectl wait --for=condition=ready pod "$POD_NAME" -n $K8S_NAMESPACE --timeout=30s 1>/dev/null || exit 1
95+
kubectl wait --for=condition=ready pod "$POD_NAME" -n $K8S_NAMESPACE --timeout=60s 1>/dev/null || exit 1
9696

9797
POD_STATUS=$(kubectl get pod/"$POD_NAME" -n $K8S_NAMESPACE -ojson | jq -r ".status.phase")
9898
[[ $POD_STATUS != Running ]] && echo "pod status is $POD_STATUS . Exiting ... " && exit 1

0 commit comments

Comments
 (0)