mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-05 11:11:13 +00:00
- Increase waits for system to settle - Add polling for containers and edges - Tabs formatting in setup.sh - 300_internet_edge: Don't let curl fail in subshell (main source of flakyness) - Make last param (count) optional for has_container (from Paul)
16 lines
280 B
Bash
Executable File
16 lines
280 B
Bash
Executable File
#! /bin/bash
|
|
|
|
. ./config.sh
|
|
|
|
start_suite "Launch scope (without weave installed) and check it boots"
|
|
|
|
scope_on $HOST1 launch
|
|
|
|
wait_for_containers $HOST1 60 weavescope
|
|
|
|
has_container $HOST1 weave 0
|
|
has_container $HOST1 weaveproxy 0
|
|
has_container $HOST1 weavescope
|
|
|
|
scope_end_suite
|