Skip to content

Commit 3b06ee4

Browse files
Merge pull request #360 from cert-manager/ndbhat/blog-test
Update timeout in blog test
2 parents 5be59f8 + 80ac108 commit 3b06ee4

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
@@ -138,7 +138,7 @@ main() {
138138

139139
echo "nlb-tls-app deployment found."
140140

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

143143
echo "Creating target groups"
144144

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)