File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,13 @@ if [ "$FRESH_INSTALL" = "true" ]; then
53
53
kubectl delete namespace " $NAMESPACE " --ignore-not-found=true --wait=true --now --timeout=10m
54
54
fi
55
55
56
- STERN_PID=" "
56
+ # STERN_PID=""
57
57
function copy_stern_to_log() {
58
- ulimit -n 4096
59
- stern spartan -n $NAMESPACE > $SCRIPT_DIR /network-test.log &
60
- STERN_PID=$!
58
+ # TODO(AD) we need to figure out a less resource intensive solution than stern
59
+ # ulimit -n 4096
60
+ # stern spartan -n $NAMESPACE > $SCRIPT_DIR/network-test.log &
61
+ echo " disabled until less resource intensive solution than stern implemented" > $SCRIPT_DIR /network-test.log &
62
+ # STERN_PID=$!
61
63
}
62
64
63
65
function show_status_until_pxe_ready() {
@@ -113,7 +115,7 @@ show_status_until_pxe_ready &
113
115
114
116
function cleanup() {
115
117
# kill everything in our process group except our process
116
- trap - SIGTERM && kill -9 $( pgrep -g $$ | grep -v $$ ) $( jobs -p) $STERN_PID & > /dev/null || true
118
+ trap - SIGTERM && kill -9 $( pgrep -g $$ | grep -v $$ ) $( jobs -p) & > /dev/null || true
117
119
118
120
if [ " $CLEANUP_CLUSTER " = " true" ]; then
119
121
kind delete cluster || true
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ describe('a test that passively observes the network in the presence of network
48
48
49
49
const ETHEREUM_HOST = `http://127.0.0.1:${ HOST_ETHEREUM_PORT } ` ;
50
50
const PXE_URL = `http://127.0.0.1:${ HOST_PXE_PORT } ` ;
51
- // 50 % is the max that we expect to miss
52
- const MAX_MISSED_SLOT_PERCENT = 0.5 ;
51
+ // 60 % is the max that we expect to miss
52
+ const MAX_MISSED_SLOT_PERCENT = 0.6 ;
53
53
54
54
afterAll ( async ( ) => {
55
55
await runAlertCheck ( config , qosAlerts , debugLogger ) ;
You can’t perform that action at this time.
0 commit comments