Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #2631 failed

Job: Files multi failed

user1 creates file using client1 and user2 removes it using client2[1oz 1op 2oc-RESt-web GUi-RESt]: Test case result

The below summarizes the result of the test " user1 creates file using client1 and user2 removes it using client2[1oz 1op 2oc-RESt-web GUi-RESt]" in build 2,631 of Onedata Products - mixed acceptance pkg - Chrome files multi tests.
Description
user1 creates file using client1 and user2 removes it using client2[1oz 1op 2oc-RESt-web GUi-RESt]
Test class
mixed.scenarios.test_files_multi
Method
test_user1_creates_file_using_client1_and_user2_removes_it_using_client2[1oz_1op_2oc-REST-web GUI-REST]
Duration
2 mins
Status
Failed (New Failure)

Error Log

test setup failure
env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-CFMT3/onedata/tests/mixed/environments/1oz_1op_2oc.yaml'
hosts = {}
request = <SubRequest 'maybe_start_env' for <Function 'test_user1_creates_file_using_client1_and_user2_removes_it_using_client2[1oz_1op_2oc-REST-web GUI-REST]'>>
env_desc = {'oneclient': {'oneclient-1': {'clients': {'client1': {'default timeout': 10, 'mode': 'proxyio', 'provider': 'oneprovi...{'client2': {'default timeout': 10, 'mode': 'proxyio', 'provider': 'oneprovider-1'}}}}, 'scenario': '1oz_1op_2oc.yaml'}
users = {}
previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/ODSRV-MAOPT-CFMT3/onedata/tests/mixed/environments/1oz_1op_2oc.yaml'}
test_config = {}

    @pytest.fixture(scope='session', autouse=True)
    def maybe_start_env(env_description_abs_path, hosts, request, env_desc, users, previous_env,
                        test_config):
        test_type = get_test_type(request)
    
        if _should_start_new_env(env_description_abs_path, previous_env):
>           start_test_env(request, test_type, env_desc, hosts, users, env_description_abs_path,
                           test_config, previous_env)

tests/conftest.py:191: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
tests/conftest.py:238: in start_test_env
    result = start_environment(
tests/utils/environment_utils.py:55: in start_environment
    setup_hosts_cfg(hosts, request)
tests/utils/environment_utils.py:160: in setup_hosts_cfg
    pods_cfg = get_pods_config()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def get_pods_config():
        pods_json = get_pods_with_kubectl()['items']
        pods = {}
        for pod in pods_json:
            pod_data = pod['metadata']
            pod_title = pod_data['name']
            pod_name = pod_data['labels'].get('app', None)
            pod_service_type = pod_data['labels'].get('component', None)
            pod_service_name = pod_data['labels'].get('chart', None)
            pod_namespace = pod_data['namespace']
>           pod_ip = pod['status']['podIP']
E           KeyError: 'podIP'

tests/utils/environment_utils.py:331: KeyError