311_container_to_container_edge_without_ebpf_test.sh 507 B

123456789101112131415161718192021222324
  1. #! /bin/bash
  2. # shellcheck disable=SC1091
  3. . ./config.sh
  4. start_suite "Test short lived connections between containers, without ebpf connection tracking disabled"
  5. weave_on "$HOST1" launch
  6. scope_on "$HOST1" launch --probe.ebpf.connections=false
  7. server_on "$HOST1"
  8. client_on "$HOST1"
  9. wait_for_containers "$HOST1" 60 nginx client
  10. has_container "$HOST1" nginx
  11. has_container "$HOST1" client
  12. list_containers "$HOST1"
  13. list_connections "$HOST1"
  14. has_connection containers "$HOST1" client nginx
  15. scope_end_suite