File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/integration-tests/bash Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -762,7 +762,9 @@ function verify_domain {
762
762
verify_domain_created $DOM_KEY $OP_KEY
763
763
verify_managed_servers_ready $DOM_KEY
764
764
765
- verify_webapp_load_balancing $DOM_KEY 2
765
+ if [ ! " ${WERCKER} " = " true" ]; then
766
+ verify_webapp_load_balancing $DOM_KEY 2
767
+ fi
766
768
verify_admin_server_ext_service $DOM_KEY
767
769
}
768
770
@@ -1654,14 +1656,18 @@ function test_cluster_scale {
1654
1656
kubectl apply -f $domainCR
1655
1657
1656
1658
verify_service_and_pod_created $DOM_KEY $OP_KEY 3
1657
- verify_webapp_load_balancing $DOM_KEY 3
1659
+ if [ ! " ${WERCKER} " = " true" ]; then
1660
+ verify_webapp_load_balancing $DOM_KEY 3
1661
+ fi
1658
1662
1659
1663
trace " test cluster scale-down from 3 to 2"
1660
1664
sed -i -e " 0,/replicas:/s/replicas:.*/replicas: 2/" $domainCR
1661
1665
kubectl apply -f $domainCR
1662
1666
1663
1667
verify_service_and_pod_deleted $DOM_KEY 3
1664
- verify_webapp_load_balancing $DOM_KEY 2
1668
+ if [ ! " ${WERCKER} " = " true" ]; then
1669
+ verify_webapp_load_balancing $DOM_KEY 2
1670
+ fi
1665
1671
}
1666
1672
1667
1673
function test_create_domain_on_exist_dir {
You can’t perform that action at this time.
0 commit comments