Skip to content

Commit c3fae27

Browse files
author
Rahul Sharma
committed
run test a bit longer to see if it helps with timeout errors
1 parent 1a86fcc commit c3fae27

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

e2e/test/lb-http-body-health-check/chainsaw-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
4141
echo "Nodebalancer ID: $nbid"
4242
43-
for i in {1..10}; do
43+
for i in {1..20}; do
4444
nbconfig=$(curl -s \
4545
-H "Authorization: Bearer $LINODE_TOKEN" \
4646
-H "Content-Type: application/json" \

e2e/test/lb-http-status-health-check/chainsaw-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
nbid=$(KUBECONFIG=$KUBECONFIG NAMESPACE=$NAMESPACE LINODE_TOKEN=$LINODE_TOKEN ../scripts/get-nb-id.sh)
4040
echo "Nodebalancer id: $nbid"
4141
42-
for i in {1..10}; do
42+
for i in {1..20}; do
4343
nbconfig=$(curl -s \
4444
-H "Authorization: Bearer $LINODE_TOKEN" \
4545
-H "Content-Type: application/json" \

e2e/test/lb-passive-health-check/chainsaw-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
4141
echo "Nodebalancer ID: $nbid"
4242
43-
for i in {1..10}; do
43+
for i in {1..20}; do
4444
nbconfig=$(curl -s \
4545
-H "Authorization: Bearer $LINODE_TOKEN" \
4646
-H "Content-Type: application/json" \

e2e/test/lb-tcp-connection-health-check/chainsaw-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
4141
echo "Nodebalancer ID: $nbid"
4242
43-
for i in {1..10}; do
43+
for i in {1..20}; do
4444
nbconfig=$(curl -s \
4545
-H "Authorization: Bearer $LINODE_TOKEN" \
4646
-H "Content-Type: application/json" \

e2e/test/lb-updated-with-nb-id/chainsaw-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec:
5454
kubectl annotate svc svc-test -n $NAMESPACE service.beta.kubernetes.io/linode-loadbalancer-nodebalancer-id=$nbid
5555
sleep 5
5656
57-
for i in {1..10}; do
57+
for i in {1..20}; do
5858
nbid2=$(KUBECONFIG=$KUBECONFIG NAMESPACE=$NAMESPACE LINODE_TOKEN=$LINODE_TOKEN ../scripts/get-nb-id.sh)
5959
6060
if [[ $nbid == $nbid2 ]]; then

e2e/test/lb-with-http-to-https/chainsaw-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ spec:
7474
IP=$(kubectl get svc svc-test -n $NAMESPACE -o json | jq -r .status.loadBalancer.ingress[0].ip)
7575
echo "loadbalancer ip: $IP"
7676
77-
for i in {1..10}; do
77+
for i in {1..20}; do
7878
port_80=$(curl -s $IP:80 | grep "test-" || true)
7979
port_443=$(curl --resolve linode.test:443:$IP --cacert ../certificates/ca.crt -s https://linode.test:443 | grep "test-" || true)
8080

e2e/test/lb-with-multiple-http-https-ports/chainsaw-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ spec:
6666
IP=$(kubectl get svc svc-test -n $NAMESPACE -o json | jq -r .status.loadBalancer.ingress[0].ip)
6767
echo "loadbalancer ip: $IP"
6868
69-
for i in {1..10}; do
69+
for i in {1..20}; do
7070
port_80=$(curl -s $IP:80 | grep "test-" || true)
7171
port_8080=$(curl -s $IP:8080 | grep "test-" || true)
7272
port_443=$(curl --resolve linode.test:443:$IP --cacert ../certificates/ca.crt -s https://linode.test:443 | grep "test-" || true)

e2e/test/lb-with-node-addition/chainsaw-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ spec:
7777
nbid=$(KUBECONFIG=$KUBECONFIG NAMESPACE=$NAMESPACE LINODE_TOKEN=$LINODE_TOKEN ../scripts/get-nb-id.sh)
7878
echo "Nodebalancer ID: $nbid"
7979
80-
for i in {1..10}; do
80+
for i in {1..20}; do
8181
nbconfig=$(curl -s \
8282
-H "Authorization: Bearer $LINODE_TOKEN" \
8383
-H "Content-Type: application/json" \

0 commit comments

Comments
 (0)