Build: #17 failed

Job: multiprovider LUMA failed

Build log

The build generated 1,428 lines of output.   The output is too long and has been truncated to the last 1,000 lines. Download or view full build log.

24-Dec-2019 18:57:38         Sets up environment and returns environment description.
24-Dec-2019 18:57:38         """
24-Dec-2019 18:57:38         test_type = get_test_type(request)
24-Dec-2019 18:57:38         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 18:57:38                                                    previous_env)
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         if test_type in ['gui']:
24-Dec-2019 18:57:38             # For now gui tests do not use onenv patch
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 18:57:38                     env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38             return ''
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         elif test_type == 'mixed':
24-Dec-2019 18:57:38             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 18:57:38                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 18:57:38             scenario = env_desc.get('scenario')
24-Dec-2019 18:57:38             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 18:57:38             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 18:57:38                                                          scenario))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     scenario_path, request, hosts, '', users,
24-Dec-2019 18:57:38                     env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38             return env_desc
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 18:57:38             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 18:57:38                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             scenario = env_desc.get('scenario')
24-Dec-2019 18:57:38             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 18:57:38             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 18:57:38                                                          scenario))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             patch = env_desc.get('patch')
24-Dec-2019 18:57:38             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 18:57:38             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 18:57:38 >                   env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 tests/conftest.py:356:
24-Dec-2019 18:57:38 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 18:57:38 tests/conftest.py:455: in start_environment
24-Dec-2019 18:57:38     pods_cfg = check_deployment()
24-Dec-2019 18:57:38 tests/conftest.py:484: in check_deployment
24-Dec-2019 18:57:38     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 18:57:38     return loader.get_single_data()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 18:57:38     node = self.get_single_node()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 18:57:38     document = self.compose_document()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 18:57:38     node = self.compose_node(None, None)
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 18:57:38     node = self.compose_mapping_node(anchor)
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 18:57:38     while not self.check_event(MappingEndEvent):
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 18:57:38     self.current_event = self.state()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 18:57:38     if self.check_token(KeyToken):
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 18:57:38     self.fetch_more_tokens()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 18:57:38     return self.fetch_value()
24-Dec-2019 18:57:38 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 self = <yaml.loader.Loader object at 0x7f0100e67dd0>
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38     def fetch_value(self):
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         # Do we determine a simple key?
24-Dec-2019 18:57:38         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # Add KEY.
24-Dec-2019 18:57:38             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 18:57:38             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 18:57:38             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 18:57:38                     KeyToken(key.mark, key.mark))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # If this key starts a new block mapping, we need to add
24-Dec-2019 18:57:38             # BLOCK-MAPPING-START.
24-Dec-2019 18:57:38             if not self.flow_level:
24-Dec-2019 18:57:38                 if self.add_indent(key.column):
24-Dec-2019 18:57:38                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 18:57:38                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # There cannot be two simple keys one after another.
24-Dec-2019 18:57:38             self.allow_simple_key = False
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         # It must be a part of a complex key.
24-Dec-2019 18:57:38         else:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # Block context needs additional checks.
24-Dec-2019 18:57:38             # (Do we really need them? They will be catched by the parser
24-Dec-2019 18:57:38             # anyway.)
24-Dec-2019 18:57:38             if not self.flow_level:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38                 # We are allowed to start a complex value if and only if
24-Dec-2019 18:57:38                 # we can start a simple key.
24-Dec-2019 18:57:38                 if not self.allow_simple_key:
24-Dec-2019 18:57:38                     raise ScannerError(None, None,
24-Dec-2019 18:57:38                             "mapping values are not allowed here",
24-Dec-2019 18:57:38 >                           self.get_mark())
24-Dec-2019 18:57:38 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 18:57:38 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 18:57:38 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 18:57:38 E                                                            ^
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 18:57:38 ---------------------------- Captured stdout setup -----------------------------
24-Dec-2019 18:57:38 Creating /home/bamboo/.helm
24-Dec-2019 18:57:38 Running command: ['one_env/onenv', 'init']
24-Dec-2019 18:57:38 /usr/local/lib/python3.6/dist-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a supported version!
24-Dec-2019 18:57:38   RequestsDependencyWarning)
24-Dec-2019 18:57:38 $HELM_HOME has been configured at /home/bamboo/.helm.
24-Dec-2019 18:57:38 Warning: Tiller is already installed in the cluster.
24-Dec-2019 18:57:38 (Use --client-only to suppress this message, or --upgrade to upgrade Tiller to the current version.)
24-Dec-2019 18:57:38 Happy Helming!
24-Dec-2019 18:57:38 Error from server (AlreadyExists): clusterrolebindings.rbac.authorization.k8s.io "serviceaccounts-cluster-admin" already exists
24-Dec-2019 18:57:38 /usr/local/lib/python3.6/dist-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a supported version!
24-Dec-2019 18:57:38   RequestsDependencyWarning)
24-Dec-2019 18:57:38 $HELM_HOME has been configured at /home/bamboo/.helm.
24-Dec-2019 18:57:38 Warning: Tiller is already installed in the cluster.
24-Dec-2019 18:57:38 (Use --client-only to suppress this message, or --upgrade to upgrade Tiller to the current version.)
24-Dec-2019 18:57:38 Happy Helming!
24-Dec-2019 18:57:38 Error from server (AlreadyExists): clusterrolebindings.rbac.authorization.k8s.io "serviceaccounts-cluster-admin" already exists
24-Dec-2019 18:57:38 Running command: ['./onenv', 'up', '-zi', 'docker.onedata.org/onezone-dev:ID-9d85e52816', '-pi', 'docker.onedata.org/oneprovider-dev:ID-96429fd39a', '-ci', 'docker.onedata.org/oneclient-dev:ID-f9ca716885', '-li', 'docker.onedata.org/luma:ID-578faeaeaf', '-ri', 'docker.onedata.org/rest-cli:ID-48767260b4', '-s', '--timeout', '2400', '--no-pull', '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/tests/oneclient/environments/scenarios/1oz_3op_3oc/1oz_3op_luma.yaml']
24-Dec-2019 18:57:38 /usr/local/lib/python3.6/dist-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a supported version!
24-Dec-2019 18:57:38   RequestsDependencyWarning)
24-Dec-2019 18:57:38 [INFO] Adding https://onedata.github.io/charts/ repo to helm repositories
24-Dec-2019 18:57:38 "onedata" has been added to your repositories
24-Dec-2019 18:57:38 [INFO] dev-onezone-0 -> cluster-manager: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/cluster_manager
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-onezone-0 -> oz-worker: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/oz_worker
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-onezone-0 -> oz-panel: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/onepanel
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneclient-krakow -> oneclient: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/oneclient/debug/oneclient
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-krakow-0 -> op-worker: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/op_worker
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-krakow-0 -> op-panel: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/onepanel
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-krakow-0 -> cluster-manager: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/cluster_manager
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneclient-paris -> oneclient: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/oneclient/debug/oneclient
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-paris-0 -> op-worker: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/op_worker
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-paris-0 -> op-panel: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/onepanel
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-paris-0 -> cluster-manager: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/cluster_manager
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneclient-lisbon -> oneclient: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/oneclient/debug/oneclient
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-lisbon-0 -> op-worker: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/op_worker
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-lisbon-0 -> op-panel: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/onepanel
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 [INFO] dev-oneprovider-lisbon-0 -> cluster-manager: using sources from:
24-Dec-2019 18:57:38     /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/cluster_manager
24-Dec-2019 18:57:38 [WARNING] Sources outside /home dir. Make sure they are mounted in one-env docker
24-Dec-2019 18:57:38 NAME:   dev
24-Dec-2019 18:57:38 LAST DEPLOYED: Tue Dec 24 16:57:12 2019
24-Dec-2019 18:57:38 NAMESPACE: default
24-Dec-2019 18:57:38 STATUS: DEPLOYED
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 RESOURCES:
24-Dec-2019 18:57:38 ==> v1/ConfigMap
24-Dec-2019 18:57:38 NAME                           DATA  AGE
24-Dec-2019 18:57:38 dev-keycloak-config            1     11s
24-Dec-2019 18:57:38 dev-keycloak-sh                1     11s
24-Dec-2019 18:57:38 dev-keycloak-startup           1     11s
24-Dec-2019 18:57:38 dev-keycloak-test              1     11s
24-Dec-2019 18:57:38 dev-oneclient-krakow-config    1     11s
24-Dec-2019 18:57:38 dev-oneclient-lisbon-config    1     11s
24-Dec-2019 18:57:38 dev-oneclient-paris-config     1     11s
24-Dec-2019 18:57:38 dev-oneprovider-krakow-config  3     11s
24-Dec-2019 18:57:38 dev-oneprovider-lisbon-config  3     11s
24-Dec-2019 18:57:38 dev-oneprovider-paris-config   3     11s
24-Dec-2019 18:57:38 dev-onezone-config             5     11s
24-Dec-2019 18:57:38 dev-token-dispenser-config     1     11s
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 ==> v1/Deployment
24-Dec-2019 18:57:38 NAME                       READY  UP-TO-DATE  AVAILABLE  AGE
24-Dec-2019 18:57:38 dev-luma-krakow            0/1    1           0          11s
24-Dec-2019 18:57:38 dev-luma-lisbon            0/1    1           0          10s
24-Dec-2019 18:57:38 dev-luma-paris             0/1    1           0          10s
24-Dec-2019 18:57:38 dev-oneclient-krakow       0/1    1           0          11s
24-Dec-2019 18:57:38 dev-oneclient-lisbon       0/1    1           0          10s
24-Dec-2019 18:57:38 dev-oneclient-paris        0/1    1           0          10s
24-Dec-2019 18:57:38 dev-onedata-cli-krakow     0/1    1           0          11s
24-Dec-2019 18:57:38 dev-onedata-cli-lisbon     0/1    1           0          10s
24-Dec-2019 18:57:38 dev-onedata-cli-paris      0/1    1           0          10s
24-Dec-2019 18:57:38 dev-token-dispenser        0/1    1           0          10s
24-Dec-2019 18:57:38 dev-volume-ceph-krakow     0/1    1           0          11s
24-Dec-2019 18:57:38 dev-volume-ceph-lisbon     0/1    1           0          10s
24-Dec-2019 18:57:38 dev-volume-ceph-paris      0/1    1           0          10s
24-Dec-2019 18:57:38 dev-volume-gluster-krakow  0/1    1           0          11s
24-Dec-2019 18:57:38 dev-volume-gluster-lisbon  0/1    1           0          10s
24-Dec-2019 18:57:38 dev-volume-gluster-paris   0/1    1           0          10s
24-Dec-2019 18:57:38 dev-volume-s3-krakow       0/1    1           0          11s
24-Dec-2019 18:57:38 dev-volume-s3-lisbon       0/1    1           0          10s
24-Dec-2019 18:57:38 dev-volume-s3-paris        0/1    1           0          10s
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 ==> v1/Job
24-Dec-2019 18:57:38 NAME                                COMPLETIONS  DURATION  AGE
24-Dec-2019 18:57:38 dev-cross-support-job-3p-luma       0/1          9s        9s
24-Dec-2019 18:57:38 dev-cross-support-job-3p-users      0/1          9s        9s
24-Dec-2019 18:57:38 dev-keycloak-init                   0/1          9s        9s
24-Dec-2019 18:57:38 dev-oneprovider-krakow-ready-check  0/1          10s       10s
24-Dec-2019 18:57:38 dev-oneprovider-lisbon-ready-check  0/1          10s       10s
24-Dec-2019 18:57:38 dev-oneprovider-paris-ready-check   0/1          9s        9s
24-Dec-2019 18:57:38 dev-onezone-ready-check             0/1          9s        9s
24-Dec-2019 18:57:38 dev-volume-s3-krakow-init           0/1          10s       10s
24-Dec-2019 18:57:38 dev-volume-s3-lisbon-init           0/1          10s       10s
24-Dec-2019 18:57:38 dev-volume-s3-paris-init            0/1          9s        10s
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 ==> v1/Pod(related)
24-Dec-2019 18:57:38 NAME                                        READY  STATUS             RESTARTS  AGE
24-Dec-2019 18:57:38 dev-cross-support-job-3p-luma-j4dgb         0/1    Pending            0         9s
24-Dec-2019 18:57:38 dev-cross-support-job-3p-users-mf8jq        0/1    Init:0/1           0         9s
24-Dec-2019 18:57:38 dev-keycloak-0                              0/1    ContainerCreating  0         9s
24-Dec-2019 18:57:38 dev-keycloak-init-nqtml                     0/1    Init:0/1           0         9s
24-Dec-2019 18:57:38 dev-luma-krakow-8548f65555-pcbq6            0/1    ContainerCreating  0         11s
24-Dec-2019 18:57:38 dev-luma-lisbon-5d485d9d99-p6w2z            0/1    ContainerCreating  0         10s
24-Dec-2019 18:57:38 dev-luma-paris-f7db4b58f-zkhgz              0/1    Pending            0         10s
24-Dec-2019 18:57:38 dev-oneclient-krakow-769488bb9d-flkkq       0/1    Init:0/2           0         11s
24-Dec-2019 18:57:38 dev-oneclient-lisbon-85d4d69bb6-9tsp9       0/1    Init:0/2           0         10s
24-Dec-2019 18:57:38 dev-oneclient-paris-7b97597b74-qvp76        0/1    Pending            0         9s
24-Dec-2019 18:57:38 dev-onedata-cli-krakow-556466fbb-thhpz      0/1    Init:0/1           0         11s
24-Dec-2019 18:57:38 dev-onedata-cli-lisbon-cc74885cd-755kx      0/1    Init:0/1           0         10s
24-Dec-2019 18:57:38 dev-onedata-cli-paris-58bb65db5b-nqvlp      0/1    Pending            0         9s
24-Dec-2019 18:57:38 dev-oneprovider-krakow-0                    0/5    Init:0/5           0         10s
24-Dec-2019 18:57:38 dev-oneprovider-krakow-ready-check-7bxfz    0/1    Pending            0         10s
24-Dec-2019 18:57:38 dev-oneprovider-lisbon-0                    0/1    Init:0/5           0         10s
24-Dec-2019 18:57:38 dev-oneprovider-lisbon-ready-check-7h4q7    0/1    Init:0/1           0         10s
24-Dec-2019 18:57:38 dev-oneprovider-paris-0                     0/1    Pending            0         10s
24-Dec-2019 18:57:38 dev-oneprovider-paris-ready-check-bn499     0/1    Pending            0         9s
24-Dec-2019 18:57:38 dev-onezone-0                               0/1    Init:0/2           0         9s
24-Dec-2019 18:57:38 dev-onezone-ready-check-rnkvw               0/1    Pending            0         9s
24-Dec-2019 18:57:38 dev-token-dispenser-7fc8c7956f-zgm2g        0/1    Pending            0         8s
24-Dec-2019 18:57:38 dev-volume-ceph-krakow-677d6f5d67-rgfnr     0/1    ContainerCreating  0         11s
24-Dec-2019 18:57:38 dev-volume-ceph-lisbon-7d84d46579-zbcqz     0/1    Pending            0         10s
24-Dec-2019 18:57:38 dev-volume-ceph-paris-7597d878f7-chlcr      0/1    Pending            0         8s
24-Dec-2019 18:57:38 dev-volume-gluster-krakow-b8b84cfb9-cw27s   0/1    ContainerCreating  0         10s
24-Dec-2019 18:57:38 dev-volume-gluster-lisbon-757fd88d77-6lz96  0/1    Pending            0         10s
24-Dec-2019 18:57:38 dev-volume-gluster-paris-5bb5866599-jzd72   0/1    Pending            0         8s
24-Dec-2019 18:57:38 dev-volume-s3-krakow-6bb7fd865c-h2jgh       0/1    ContainerCreating  0         10s
24-Dec-2019 18:57:38 dev-volume-s3-krakow-init-lgjsv             0/1    Init:0/1           0         10s
24-Dec-2019 18:57:38 dev-volume-s3-lisbon-866cdf45b5-5p8sh       0/1    Pending            0         10s
24-Dec-2019 18:57:38 dev-volume-s3-lisbon-init-qdrsp             0/1    Pending            0         10s
24-Dec-2019 18:57:38 dev-volume-s3-paris-84d646df9f-j2g8s        0/1    Pending            0         8s
24-Dec-2019 18:57:38 dev-volume-s3-paris-init-9sf5t              0/1    Pending            0         9s
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 ==> v1/Secret
24-Dec-2019 18:57:38 NAME               TYPE    DATA  AGE
24-Dec-2019 18:57:38 dev-keycloak-db    Opaque  1     11s
24-Dec-2019 18:57:38 dev-keycloak-http  Opaque  1     11s
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 ==> v1/Service
24-Dec-2019 18:57:38 NAME                       TYPE       CLUSTER-IP      EXTERNAL-IP  PORT(S)                                                                                                                  AGE
24-Dec-2019 18:57:38 dev-keycloak               ClusterIP  10.110.120.70   <none>       80/TCP                                                                                                                   11s
24-Dec-2019 18:57:38 dev-keycloak-headless      ClusterIP  None            <none>       80/TCP,8443/TCP                                                                                                          11s
24-Dec-2019 18:57:38 dev-keycloak-http          ClusterIP  10.109.172.219  <none>       80/TCP,8443/TCP                                                                                                          11s
24-Dec-2019 18:57:38 dev-luma-krakow            ClusterIP  10.110.31.116   <none>       80/TCP                                                                                                                   11s
24-Dec-2019 18:57:38 dev-luma-lisbon            ClusterIP  10.100.104.138  <none>       80/TCP                                                                                                                   11s
24-Dec-2019 18:57:38 dev-luma-paris             ClusterIP  10.106.242.51   <none>       80/TCP                                                                                                                   11s
24-Dec-2019 18:57:38 dev-oneprovider-krakow     ClusterIP  None            <none>       53/TCP,80/TCP,443/TCP,6665/TCP,9443/TCP                                                                                  11s
24-Dec-2019 18:57:38 dev-oneprovider-lisbon     ClusterIP  None            <none>       53/TCP,80/TCP,443/TCP,6665/TCP,9443/TCP                                                                                  11s
24-Dec-2019 18:57:38 dev-oneprovider-paris      ClusterIP  None            <none>       53/TCP,80/TCP,443/TCP,6665/TCP,9443/TCP                                                                                  11s
24-Dec-2019 18:57:38 dev-onezone                ClusterIP  None            <none>       53/TCP,80/TCP,443/TCP,9443/TCP                                                                                           11s
24-Dec-2019 18:57:38 dev-token-dispenser        ClusterIP  10.103.94.208   <none>       80/TCP                                                                                                                   11s
24-Dec-2019 18:57:38 dev-volume-ceph-krakow     ClusterIP  None            <none>       6789/TCP                                                                                                                 11s
24-Dec-2019 18:57:38 dev-volume-ceph-lisbon     ClusterIP  None            <none>       6789/TCP                                                                                                                 11s
24-Dec-2019 18:57:38 dev-volume-ceph-paris      ClusterIP  None            <none>       6789/TCP                                                                                                                 11s
24-Dec-2019 18:57:38 dev-volume-gluster-krakow  ClusterIP  10.102.48.136   <none>       24007/TCP,24007/UDP,24008/TCP,24008/UDP,49152/TCP,49153/TCP,49154/TCP,49155/TCP,49156/TCP,49157/TCP,49158/TCP,49159/TCP  11s
24-Dec-2019 18:57:38 dev-volume-gluster-lisbon  ClusterIP  10.104.211.51   <none>       24007/TCP,24007/UDP,24008/TCP,24008/UDP,49152/TCP,49153/TCP,49154/TCP,49155/TCP,49156/TCP,49157/TCP,49158/TCP,49159/TCP  11s
24-Dec-2019 18:57:38 dev-volume-gluster-paris   ClusterIP  10.103.117.211  <none>       24007/TCP,24007/UDP,24008/TCP,24008/UDP,49152/TCP,49153/TCP,49154/TCP,49155/TCP,49156/TCP,49157/TCP,49158/TCP,49159/TCP  11s
24-Dec-2019 18:57:38 dev-volume-s3-krakow       ClusterIP  10.96.56.201    <none>       9000/TCP                                                                                                                 11s
24-Dec-2019 18:57:38 dev-volume-s3-lisbon       ClusterIP  10.105.34.210   <none>       9000/TCP                                                                                                                 11s
24-Dec-2019 18:57:38 dev-volume-s3-paris        ClusterIP  10.101.61.131   <none>       9000/TCP                                                                                                                 11s
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 ==> v1/StatefulSet
24-Dec-2019 18:57:38 NAME                    READY  AGE
24-Dec-2019 18:57:38 dev-keycloak            0/1    10s
24-Dec-2019 18:57:38 dev-oneprovider-krakow  0/1    10s
24-Dec-2019 18:57:38 dev-oneprovider-lisbon  0/1    10s
24-Dec-2019 18:57:38 dev-oneprovider-paris   0/1    10s
24-Dec-2019 18:57:38 dev-onezone             0/1    10s
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 [INFO] Rsyncing sources for pod dev-onezone-0. All logs can be found in /home/bamboo/.one-env/deployments/2019.12.24-16.57.09/logs/dev-onezone-0_rsync.log.
24-Dec-2019 18:57:38 [INFO] Rsyncing to pod dev-onezone-0: /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/cluster_manager/_build/default/rel/cluster_manager/etc/autogenerated.config -> /mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/artifacts_dir/cluster_manager/_build/default/rel/cluster_manager/etc
24-Dec-2019 18:57:38 Exception in thread Thread-4:
24-Dec-2019 18:57:38 Traceback (most recent call last):
24-Dec-2019 18:57:38   File "/usr/lib/python3.6/threading.py", line 916, in _bootstrap_inner
24-Dec-2019 18:57:38     self.run()
24-Dec-2019 18:57:38   File "/usr/lib/python3.6/threading.py", line 864, in run
24-Dec-2019 18:57:38     self._target(*self._args, **self._kwargs)
24-Dec-2019 18:57:38   File "/usr/local/lib/one_env_engine/scripts/utils/deployment/sources.py", line 300, in maybe_rsync_sources_for_oz_op
24-Dec-2019 18:57:38     log_file_path, timeout, rsync_persistence_dirs)
24-Dec-2019 18:57:38   File "/usr/local/lib/one_env_engine/scripts/utils/deployment/sources.py", line 267, in rsync_sources_for_oz_op
24-Dec-2019 18:57:38     log_file=log_file)
24-Dec-2019 18:57:38   File "/usr/local/lib/one_env_engine/scripts/utils/deployment/sources.py", line 119, in create_persistence_symlinks
24-Dec-2019 18:57:38     '{}:{}'.format(pod_name, dest_path), log_file)
24-Dec-2019 18:57:38   File "/usr/local/lib/one_env_engine/scripts/utils/deployment/sources.py", line 180, in rsync_file
24-Dec-2019 18:57:38     stdout=log_file)
24-Dec-2019 18:57:38   File "/usr/local/lib/one_env_engine/scripts/utils/shell.py", line 26, in get_return_code
24-Dec-2019 18:57:38     child = sp.Popen(tokens, stdout=stdout, stderr=stderr, shell=shell)
24-Dec-2019 18:57:38   File "/usr/lib/python3.6/subprocess.py", line 729, in __init__
24-Dec-2019 18:57:38     restore_signals, start_new_session)
24-Dec-2019 18:57:38   File "/usr/lib/python3.6/subprocess.py", line 1364, in _execute_child
24-Dec-2019 18:57:38     raise child_exception_type(errno_num, err_msg, err_filename)
24-Dec-2019 18:57:38 FileNotFoundError: [Errno 2] No such file or directory: 'rsync': 'rsync'
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 [ERROR] Timeout while waiting for the pod dev-oneclient-lisbon-85d4d69bb6-9tsp9 to be running
24-Dec-2019 18:57:38 [ERROR] Timeout while waiting for the pod dev-oneclient-paris-7b97597b74-qvp76 to be running
24-Dec-2019 18:57:38 [ERROR] Timeout while waiting for the pod dev-oneclient-krakow-769488bb9d-flkkq to be running
24-Dec-2019 18:57:38 [ERROR] Timeout while waiting for the pod dev-oneprovider-krakow-0 to be running
24-Dec-2019 18:57:38 [ERROR] Timeout while waiting for the pod dev-oneprovider-paris-0 to be running
24-Dec-2019 18:57:38 [ERROR] Timeout while waiting for the pod dev-oneprovider-lisbon-0 to be running
24-Dec-2019 18:57:38 [ERROR] Deployment failed to initialize within 2400 seconds
24-Dec-2019 18:57:38 Running command: ['./onenv', 'wait', '--timeout', '2400']
24-Dec-2019 18:57:38 /usr/local/lib/python3.6/dist-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a supported version!
24-Dec-2019 18:57:38   RequestsDependencyWarning)
24-Dec-2019 18:57:38 [ERROR] Deployment failed to initialize within 2400 seconds
24-Dec-2019 18:57:38 Running command: ['./onenv', 'status']
24-Dec-2019 18:57:38 /usr/local/lib/python3.6/dist-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a supported version!
24-Dec-2019 18:57:38   RequestsDependencyWarning)
24-Dec-2019 18:57:38 ready: False
24-Dec-2019 18:57:38 pods:
24-Dec-2019 18:57:38     dev-luma-krakow-8548f65555-pcbq6:
24-Dec-2019 18:57:38         service-type: luma
24-Dec-2019 18:57:38         ip: 172.17.0.5
24-Dec-2019 18:57:38         container-id: ce0267988dc88eac2bb920ea5b9537447a9b9e880d51e3caf22e909abaae4b3f
24-Dec-2019 18:57:38     dev-luma-lisbon-5d485d9d99-p6w2z:
24-Dec-2019 18:57:38         service-type: luma
24-Dec-2019 18:57:38         ip: 172.17.0.11
24-Dec-2019 18:57:38         container-id: 3db80ad7fdf9f0986200c2537a62a5f0f574dcc8256eb83a9ab390559abe987b
24-Dec-2019 18:57:38     dev-luma-paris-f7db4b58f-zkhgz:
24-Dec-2019 18:57:38         service-type: luma
24-Dec-2019 18:57:38         ip: 172.17.0.24
24-Dec-2019 18:57:38         container-id: 4b392e391ea89990d17fb7d4393046a938a36fe6ed822d213b6cedc5263471a0
24-Dec-2019 18:57:38     dev-oneclient-krakow-769488bb9d-flkkq:
24-Dec-2019 18:57:38         service-type: oneclient
24-Dec-2019 18:57:38         ip: 172.17.0.7
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38         provider-host: dev-oneprovider-krakow
24-Dec-2019 18:57:38     dev-oneclient-lisbon-85d4d69bb6-9tsp9:
24-Dec-2019 18:57:38         service-type: oneclient
24-Dec-2019 18:57:38         ip: 172.17.0.12
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38         provider-host: dev-oneprovider-lisbon
24-Dec-2019 18:57:38     dev-oneclient-paris-7b97597b74-qvp76:
24-Dec-2019 18:57:38         service-type: oneclient
24-Dec-2019 18:57:38         ip: 172.17.0.33
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38         provider-host: dev-oneprovider-paris
24-Dec-2019 18:57:38     dev-onedata-cli-krakow-556466fbb-thhpz:
24-Dec-2019 18:57:38         service-type: onedata-cli
24-Dec-2019 18:57:38         ip: 172.17.0.6
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38     dev-onedata-cli-lisbon-cc74885cd-755kx:
24-Dec-2019 18:57:38         service-type: onedata-cli
24-Dec-2019 18:57:38         ip: 172.17.0.13
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38     dev-onedata-cli-paris-58bb65db5b-nqvlp:
24-Dec-2019 18:57:38         service-type: onedata-cli
24-Dec-2019 18:57:38         ip: 172.17.0.36
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38     dev-oneprovider-krakow-0:
24-Dec-2019 18:57:38         name: dev-oneprovider-krakow
24-Dec-2019 18:57:38         domain: dev-oneprovider-krakow.default.svc.cluster.local
24-Dec-2019 18:57:38         service-type: oneprovider
24-Dec-2019 18:57:38         ip: 172.17.0.14
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38         hostname: dev-oneprovider-krakow-0.dev-oneprovider-krakow.default.svc.cluster.local
24-Dec-2019 18:57:38     dev-oneprovider-lisbon-0:
24-Dec-2019 18:57:38         name: dev-oneprovider-lisbon
24-Dec-2019 18:57:38         domain: dev-oneprovider-lisbon.default.svc.cluster.local
24-Dec-2019 18:57:38         service-type: oneprovider
24-Dec-2019 18:57:38         ip: 172.17.0.15
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38         hostname: dev-oneprovider-lisbon-0.dev-oneprovider-lisbon.default.svc.cluster.local
24-Dec-2019 18:57:38     dev-oneprovider-paris-0:
24-Dec-2019 18:57:38         name: dev-oneprovider-paris
24-Dec-2019 18:57:38         domain: dev-oneprovider-paris.default.svc.cluster.local
24-Dec-2019 18:57:38         service-type: oneprovider
24-Dec-2019 18:57:38         ip: 172.17.0.21
24-Dec-2019 18:57:38         container-id: None
24-Dec-2019 18:57:38         hostname: dev-oneprovider-paris-0.dev-oneprovider-paris.default.svc.cluster.local
24-Dec-2019 18:57:38     dev-onezone-0:
24-Dec-2019 18:57:38         name: dev-onezone
24-Dec-2019 18:57:38         domain: dev-onezone.default.svc.cluster.local
24-Dec-2019 18:57:38         service-type: onezone
24-Dec-2019 18:57:38         ip: 172.17.0.32
24-Dec-2019 18:57:38         container-id: c386ccaad639b30d5adada12c16eaf9073eec0a3c13c4e23eb314c5875d84e4b
24-Dec-2019 18:57:38         hostname: dev-onezone-0.dev-onezone.default.svc.cluster.local
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 ---------------------------- Captured stderr setup -----------------------------
24-Dec-2019 18:57:38 Error: Could not create /home/bamboo/.helm: mkdir /home/bamboo/.helm: permission denied
24-Dec-2019 18:57:38 _ ERROR at setup of test_user_not_in_luma_cannot_create_file[multiprovider_luma] _
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/tests/oneclient/environments/multiprovider_luma.yaml'
24-Dec-2019 18:57:38 hosts = {}
24-Dec-2019 18:57:38 request = <SubRequest 'env_desc' for <Function 'test_user_cannot_remove_file_using_client_if_he_is_not_its_owner[multiprovider_luma]'>>
24-Dec-2019 18:57:38 users = {}
24-Dec-2019 18:57:38 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/tests/oneclient/environments/multiprovider_luma.yaml'}
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 18:57:38     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 18:57:38                  previous_env):
24-Dec-2019 18:57:38         """
24-Dec-2019 18:57:38         Sets up environment and returns environment description.
24-Dec-2019 18:57:38         """
24-Dec-2019 18:57:38         test_type = get_test_type(request)
24-Dec-2019 18:57:38         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 18:57:38                                                    previous_env)
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         if test_type in ['gui']:
24-Dec-2019 18:57:38             # For now gui tests do not use onenv patch
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 18:57:38                     env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38             return ''
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         elif test_type == 'mixed':
24-Dec-2019 18:57:38             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 18:57:38                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 18:57:38             scenario = env_desc.get('scenario')
24-Dec-2019 18:57:38             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 18:57:38             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 18:57:38                                                          scenario))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     scenario_path, request, hosts, '', users,
24-Dec-2019 18:57:38                     env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38             return env_desc
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 18:57:38             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 18:57:38                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             scenario = env_desc.get('scenario')
24-Dec-2019 18:57:38             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 18:57:38             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 18:57:38                                                          scenario))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             patch = env_desc.get('patch')
24-Dec-2019 18:57:38             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 18:57:38             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 18:57:38 >                   env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 tests/conftest.py:356:
24-Dec-2019 18:57:38 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 18:57:38 tests/conftest.py:455: in start_environment
24-Dec-2019 18:57:38     pods_cfg = check_deployment()
24-Dec-2019 18:57:38 tests/conftest.py:484: in check_deployment
24-Dec-2019 18:57:38     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 18:57:38     return loader.get_single_data()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 18:57:38     node = self.get_single_node()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 18:57:38     document = self.compose_document()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 18:57:38     node = self.compose_node(None, None)
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 18:57:38     node = self.compose_mapping_node(anchor)
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 18:57:38     while not self.check_event(MappingEndEvent):
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 18:57:38     self.current_event = self.state()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 18:57:38     if self.check_token(KeyToken):
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 18:57:38     self.fetch_more_tokens()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 18:57:38     return self.fetch_value()
24-Dec-2019 18:57:38 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 self = <yaml.loader.Loader object at 0x7f0100e67dd0>
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38     def fetch_value(self):
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         # Do we determine a simple key?
24-Dec-2019 18:57:38         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # Add KEY.
24-Dec-2019 18:57:38             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 18:57:38             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 18:57:38             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 18:57:38                     KeyToken(key.mark, key.mark))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # If this key starts a new block mapping, we need to add
24-Dec-2019 18:57:38             # BLOCK-MAPPING-START.
24-Dec-2019 18:57:38             if not self.flow_level:
24-Dec-2019 18:57:38                 if self.add_indent(key.column):
24-Dec-2019 18:57:38                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 18:57:38                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # There cannot be two simple keys one after another.
24-Dec-2019 18:57:38             self.allow_simple_key = False
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         # It must be a part of a complex key.
24-Dec-2019 18:57:38         else:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # Block context needs additional checks.
24-Dec-2019 18:57:38             # (Do we really need them? They will be catched by the parser
24-Dec-2019 18:57:38             # anyway.)
24-Dec-2019 18:57:38             if not self.flow_level:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38                 # We are allowed to start a complex value if and only if
24-Dec-2019 18:57:38                 # we can start a simple key.
24-Dec-2019 18:57:38                 if not self.allow_simple_key:
24-Dec-2019 18:57:38                     raise ScannerError(None, None,
24-Dec-2019 18:57:38                             "mapping values are not allowed here",
24-Dec-2019 18:57:38 >                           self.get_mark())
24-Dec-2019 18:57:38 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 18:57:38 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 18:57:38 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 18:57:38 E                                                            ^
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 18:57:38 _ ERROR at setup of test_imported_directory_ownership_is_correctly_mapped_on_provider_with_luma_and_is_not_mapped_on_other_provider[multiprovider_luma] _
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/tests/oneclient/environments/multiprovider_luma.yaml'
24-Dec-2019 18:57:38 hosts = {}
24-Dec-2019 18:57:38 request = <SubRequest 'env_desc' for <Function 'test_user_cannot_remove_file_using_client_if_he_is_not_its_owner[multiprovider_luma]'>>
24-Dec-2019 18:57:38 users = {}
24-Dec-2019 18:57:38 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/tests/oneclient/environments/multiprovider_luma.yaml'}
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 18:57:38     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 18:57:38                  previous_env):
24-Dec-2019 18:57:38         """
24-Dec-2019 18:57:38         Sets up environment and returns environment description.
24-Dec-2019 18:57:38         """
24-Dec-2019 18:57:38         test_type = get_test_type(request)
24-Dec-2019 18:57:38         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 18:57:38                                                    previous_env)
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         if test_type in ['gui']:
24-Dec-2019 18:57:38             # For now gui tests do not use onenv patch
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 18:57:38                     env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38             return ''
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         elif test_type == 'mixed':
24-Dec-2019 18:57:38             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 18:57:38                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 18:57:38             scenario = env_desc.get('scenario')
24-Dec-2019 18:57:38             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 18:57:38             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 18:57:38                                                          scenario))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     scenario_path, request, hosts, '', users,
24-Dec-2019 18:57:38                     env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38             return env_desc
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 18:57:38             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 18:57:38                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             scenario = env_desc.get('scenario')
24-Dec-2019 18:57:38             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 18:57:38             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 18:57:38                                                          scenario))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             patch = env_desc.get('patch')
24-Dec-2019 18:57:38             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 18:57:38             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 18:57:38 >                   env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 tests/conftest.py:356:
24-Dec-2019 18:57:38 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 18:57:38 tests/conftest.py:455: in start_environment
24-Dec-2019 18:57:38     pods_cfg = check_deployment()
24-Dec-2019 18:57:38 tests/conftest.py:484: in check_deployment
24-Dec-2019 18:57:38     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 18:57:38     return loader.get_single_data()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 18:57:38     node = self.get_single_node()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 18:57:38     document = self.compose_document()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 18:57:38     node = self.compose_node(None, None)
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 18:57:38     node = self.compose_mapping_node(anchor)
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 18:57:38     while not self.check_event(MappingEndEvent):
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 18:57:38     self.current_event = self.state()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 18:57:38     if self.check_token(KeyToken):
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 18:57:38     self.fetch_more_tokens()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 18:57:38     return self.fetch_value()
24-Dec-2019 18:57:38 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 self = <yaml.loader.Loader object at 0x7f0100e67dd0>
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38     def fetch_value(self):
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         # Do we determine a simple key?
24-Dec-2019 18:57:38         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # Add KEY.
24-Dec-2019 18:57:38             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 18:57:38             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 18:57:38             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 18:57:38                     KeyToken(key.mark, key.mark))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # If this key starts a new block mapping, we need to add
24-Dec-2019 18:57:38             # BLOCK-MAPPING-START.
24-Dec-2019 18:57:38             if not self.flow_level:
24-Dec-2019 18:57:38                 if self.add_indent(key.column):
24-Dec-2019 18:57:38                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 18:57:38                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # There cannot be two simple keys one after another.
24-Dec-2019 18:57:38             self.allow_simple_key = False
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         # It must be a part of a complex key.
24-Dec-2019 18:57:38         else:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # Block context needs additional checks.
24-Dec-2019 18:57:38             # (Do we really need them? They will be catched by the parser
24-Dec-2019 18:57:38             # anyway.)
24-Dec-2019 18:57:38             if not self.flow_level:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38                 # We are allowed to start a complex value if and only if
24-Dec-2019 18:57:38                 # we can start a simple key.
24-Dec-2019 18:57:38                 if not self.allow_simple_key:
24-Dec-2019 18:57:38                     raise ScannerError(None, None,
24-Dec-2019 18:57:38                             "mapping values are not allowed here",
24-Dec-2019 18:57:38 >                           self.get_mark())
24-Dec-2019 18:57:38 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 18:57:38 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 18:57:38 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 18:57:38 E                                                            ^
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 18:57:38 _ ERROR at setup of test_ownership_of_new_file_created_on_provider_without_luma_is_correctly_mapped_on_storage_with_import[multiprovider_luma] _
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/tests/oneclient/environments/multiprovider_luma.yaml'
24-Dec-2019 18:57:38 hosts = {}
24-Dec-2019 18:57:38 request = <SubRequest 'env_desc' for <Function 'test_user_cannot_remove_file_using_client_if_he_is_not_its_owner[multiprovider_luma]'>>
24-Dec-2019 18:57:38 users = {}
24-Dec-2019 18:57:38 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML/onedata/tests/oneclient/environments/multiprovider_luma.yaml'}
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 18:57:38     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 18:57:38                  previous_env):
24-Dec-2019 18:57:38         """
24-Dec-2019 18:57:38         Sets up environment and returns environment description.
24-Dec-2019 18:57:38         """
24-Dec-2019 18:57:38         test_type = get_test_type(request)
24-Dec-2019 18:57:38         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 18:57:38                                                    previous_env)
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         if test_type in ['gui']:
24-Dec-2019 18:57:38             # For now gui tests do not use onenv patch
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 18:57:38                     env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38             return ''
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         elif test_type == 'mixed':
24-Dec-2019 18:57:38             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 18:57:38                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 18:57:38             scenario = env_desc.get('scenario')
24-Dec-2019 18:57:38             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 18:57:38             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 18:57:38                                                          scenario))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     scenario_path, request, hosts, '', users,
24-Dec-2019 18:57:38                     env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38             return env_desc
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 18:57:38             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 18:57:38                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             scenario = env_desc.get('scenario')
24-Dec-2019 18:57:38             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 18:57:38             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 18:57:38                                                          scenario))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             patch = env_desc.get('patch')
24-Dec-2019 18:57:38             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 18:57:38             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 18:57:38             if start_env:
24-Dec-2019 18:57:38                 previous_env['started'] = start_environment(
24-Dec-2019 18:57:38                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 18:57:38 >                   env_description_abs_path
24-Dec-2019 18:57:38                 )
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 tests/conftest.py:356:
24-Dec-2019 18:57:38 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 18:57:38 tests/conftest.py:455: in start_environment
24-Dec-2019 18:57:38     pods_cfg = check_deployment()
24-Dec-2019 18:57:38 tests/conftest.py:484: in check_deployment
24-Dec-2019 18:57:38     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 18:57:38     return loader.get_single_data()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 18:57:38     node = self.get_single_node()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 18:57:38     document = self.compose_document()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 18:57:38     node = self.compose_node(None, None)
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 18:57:38     node = self.compose_mapping_node(anchor)
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 18:57:38     while not self.check_event(MappingEndEvent):
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 18:57:38     self.current_event = self.state()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 18:57:38     if self.check_token(KeyToken):
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 18:57:38     self.fetch_more_tokens()
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 18:57:38     return self.fetch_value()
24-Dec-2019 18:57:38 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 self = <yaml.loader.Loader object at 0x7f0100e67dd0>
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38     def fetch_value(self):
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         # Do we determine a simple key?
24-Dec-2019 18:57:38         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # Add KEY.
24-Dec-2019 18:57:38             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 18:57:38             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 18:57:38             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 18:57:38                     KeyToken(key.mark, key.mark))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # If this key starts a new block mapping, we need to add
24-Dec-2019 18:57:38             # BLOCK-MAPPING-START.
24-Dec-2019 18:57:38             if not self.flow_level:
24-Dec-2019 18:57:38                 if self.add_indent(key.column):
24-Dec-2019 18:57:38                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 18:57:38                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # There cannot be two simple keys one after another.
24-Dec-2019 18:57:38             self.allow_simple_key = False
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38         # It must be a part of a complex key.
24-Dec-2019 18:57:38         else:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38             # Block context needs additional checks.
24-Dec-2019 18:57:38             # (Do we really need them? They will be catched by the parser
24-Dec-2019 18:57:38             # anyway.)
24-Dec-2019 18:57:38             if not self.flow_level:
24-Dec-2019 18:57:38    
24-Dec-2019 18:57:38                 # We are allowed to start a complex value if and only if
24-Dec-2019 18:57:38                 # we can start a simple key.
24-Dec-2019 18:57:38                 if not self.allow_simple_key:
24-Dec-2019 18:57:38                     raise ScannerError(None, None,
24-Dec-2019 18:57:38                             "mapping values are not allowed here",
24-Dec-2019 18:57:38 >                           self.get_mark())
24-Dec-2019 18:57:38 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 18:57:38 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 18:57:38 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 18:57:38 E                                                            ^
24-Dec-2019 18:57:38
24-Dec-2019 18:57:38 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 18:57:38 ========================== 4 error in 7234.18 seconds ==========================
24-Dec-2019 18:57:46 release "dev" deleted
24-Dec-2019 18:57:46 /usr/local/lib/python3.6/dist-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a supported version!
24-Dec-2019 18:57:46   RequestsDependencyWarning)
24-Dec-2019 18:57:47 cbb91fbd6078
24-Dec-2019 18:57:47 Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service
24-Dec-2019 18:57:47 Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service
24-Dec-2019 18:57:47 Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service
24-Dec-2019 18:57:47 Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service
24-Dec-2019 18:57:47 Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service
24-Dec-2019 18:57:47 Finished task 'Run acceptance mixed tests in Chrome' with result: Success
24-Dec-2019 18:57:47 Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit'
24-Dec-2019 18:57:47 Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML...
24-Dec-2019 18:57:47 Failing task since 4 failing test cases were found.
24-Dec-2019 18:57:47 Finished task 'Parse test results' with result: Failed
24-Dec-2019 18:57:47 Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 18:57:47
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - multiprovider LUMA #17 (TEST-OCAST-ML-17)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-5951244047744592919.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML
... using extra environment variables:
bamboo_planRepository_1_branch=develop
bamboo_capability_kubeadm=true
bamboo_capability_system_builder_command_bash=/bin/bash
bamboo_planRepository_1_branchDisplayName=develop
bamboo_repository_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_resultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-ML-17
bamboo_repository_222199898_git_branch=develop
bamboo_capability_system_builder_command_Git=/usr/bin/git
bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-OCAST-ML
bamboo_shortPlanName=oneclient-acceptance-src-test
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=17
bamboo_shortJobName=multiprovider LUMA
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-ML-17
bamboo_planRepository_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_agentId=205258755
bamboo_capability_onedata=true
bamboo_planName=Testing - oneclient-acceptance-src-test
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-8173502651075076252.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-6917559510754545590.sh
bamboo_shortPlanKey=OCAST
bamboo_shortJobKey=ML
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:37:08.424Z
bamboo_repository_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_1=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-4466166589583230181.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-5861577224995943910.sh
bamboo_planRepository_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_2=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-3904305441931766694.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-3907425300453880132.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-OCAST-ML-17
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - multiprovider LUMA
bamboo_planRepository_1_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoPort=10161
bamboo_OnedataFinalTasksURL=https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
bamboo_repository_name=onedata-acceptance
bamboo_buildFailed=false
bamboo_repository_222199898_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_capability_system_docker_executable=/usr/bin/docker
bamboo_repository_222199898_name=onedata-acceptance
bamboo_planRepository_branch=develop
bamboo_agentWorkingDirectory=/home/bamboo/bamboo-agent-home/xml-data/build-dir
bamboo_jobFailed=true
bamboo_capability_system_git_executable=/usr/bin/git
bamboo_repository_git_username=
bamboo_planRepository_1_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_repository_222199898_branch_name=develop
bamboo_planRepository_branchDisplayName=develop
bamboo_artifactRepoUsername=ubuntu
bamboo_planRepository_1_type=bbserver
bamboo_planRepository_branchName=develop
bamboo_repository_222199898_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle
bamboo_repository_222199898_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_plan_storageTag=plan-222068858
bamboo_hg_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_hg-repositories-cache
bamboo_planRepository_1_username=
bamboo_planRepository_type=bbserver
bamboo_git_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_git-repositories-cache
bamboo_repository_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_repository_222199898_git_username=
bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp
bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML
bamboo_capability_onedata_pkg_builder=true
bamboo_planKey=TEST-OCAST
bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_planRepository_username=
bamboo_capability_system_jdk_JDK_1_8=/usr/lib/jvm/java-8-oracle
bamboo_capability_system_jdk_JDK_1_8_0_161=/usr/lib/jvm/java-8-oracle
bamboo_artifactOpts=--hostname S3 --port 10161 --username ubuntu
bamboo_planRepository_1_branchName=develop
24-Dec-2019 18:57:47 cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory
24-Dec-2019 18:57:47 mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory
24-Dec-2019 18:57:47 Finished task 'Pack logs' with result: Success
24-Dec-2019 18:57:47
Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
24-Dec-2019 18:57:47 Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 18:57:47
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - multiprovider LUMA #17 (TEST-OCAST-ML-17)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-5096329036536339492.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML
... using extra environment variables:
bamboo_planRepository_1_branch=develop
bamboo_capability_kubeadm=true
bamboo_capability_system_builder_command_bash=/bin/bash
bamboo_planRepository_1_branchDisplayName=develop
bamboo_repository_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_resultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-ML-17
bamboo_repository_222199898_git_branch=develop
bamboo_capability_system_builder_command_Git=/usr/bin/git
bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-OCAST-ML
bamboo_shortPlanName=oneclient-acceptance-src-test
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=17
bamboo_shortJobName=multiprovider LUMA
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-ML-17
bamboo_planRepository_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_agentId=205258755
bamboo_capability_onedata=true
bamboo_planName=Testing - oneclient-acceptance-src-test
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-8173502651075076252.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-6917559510754545590.sh
bamboo_shortPlanKey=OCAST
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_9=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-5951244047744592919.sh
bamboo_shortJobKey=ML
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:37:08.424Z
bamboo_repository_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_1=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-4466166589583230181.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-5861577224995943910.sh
bamboo_planRepository_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_2=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-3904305441931766694.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-ML-17-ScriptBuildTask-3907425300453880132.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-OCAST-ML-17
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - multiprovider LUMA
bamboo_planRepository_1_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoPort=10161
bamboo_OnedataFinalTasksURL=https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
bamboo_repository_name=onedata-acceptance
bamboo_buildFailed=false
bamboo_repository_222199898_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_capability_system_docker_executable=/usr/bin/docker
bamboo_repository_222199898_name=onedata-acceptance
bamboo_planRepository_branch=develop
bamboo_agentWorkingDirectory=/home/bamboo/bamboo-agent-home/xml-data/build-dir
bamboo_jobFailed=true
bamboo_capability_system_git_executable=/usr/bin/git
bamboo_repository_git_username=
bamboo_planRepository_1_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_repository_222199898_branch_name=develop
bamboo_planRepository_branchDisplayName=develop
bamboo_artifactRepoUsername=ubuntu
bamboo_planRepository_1_type=bbserver
bamboo_planRepository_branchName=develop
bamboo_repository_222199898_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle
bamboo_repository_222199898_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_plan_storageTag=plan-222068858
bamboo_hg_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_hg-repositories-cache
bamboo_planRepository_1_username=
bamboo_planRepository_type=bbserver
bamboo_git_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_git-repositories-cache
bamboo_repository_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_repository_222199898_git_username=
bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp
bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML
bamboo_capability_onedata_pkg_builder=true
bamboo_planKey=TEST-OCAST
bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_planRepository_username=
bamboo_capability_system_jdk_JDK_1_8=/usr/lib/jvm/java-8-oracle
bamboo_capability_system_jdk_JDK_1_8_0_161=/usr/lib/jvm/java-8-oracle
bamboo_artifactOpts=--hostname S3 --port 10161 --username ubuntu
bamboo_planRepository_1_branchName=develop
24-Dec-2019 18:57:48   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
24-Dec-2019 18:57:48                                  Dload  Upload   Total   Spent    Left  Speed
24-Dec-2019 18:57:48
24-Dec-2019 18:57:50   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
24-Dec-2019 18:57:51 Clearing /tmp/onedata and /home/bamboo/.one-env
24-Dec-2019 18:57:51   0     0    0     0    0     0      0      0 --:--:--  0:00:02 --:--:--     0
24-Dec-2019 18:57:51 42  4419   42  1895    0     0    800      0  0:00:05  0:00:02  0:00:03   800
24-Dec-2019 18:57:51 100  4419  100  4419    0     0   1866      0  0:00:02  0:00:02 --:--:--  1866
24-Dec-2019 18:57:52 Cleaning helm deployments
24-Dec-2019 18:57:54 Cleanining pods
24-Dec-2019 18:57:57 Cleaning kube persistant volumes
24-Dec-2019 18:57:58 pod "dev-cross-support-job-3p-luma-j4dgb" deleted
24-Dec-2019 18:58:00 pod "dev-luma-krakow-8548f65555-pcbq6" deleted
24-Dec-2019 18:58:04 Error from server (NotFound): pods "dev-luma-lisbon-5d485d9d99-p6w2z" not found
24-Dec-2019 18:58:04 pod "dev-luma-paris-f7db4b58f-zkhgz" deleted
24-Dec-2019 18:58:05 Error from server (NotFound): pods "dev-oneclient-lisbon-85d4d69bb6-9tsp9" not found
24-Dec-2019 18:58:05 Error from server (NotFound): pods "dev-oneclient-paris-7b97597b74-qvp76" not found
24-Dec-2019 18:58:05 Error from server (NotFound): pods "dev-onedata-cli-lisbon-cc74885cd-755kx" not found
24-Dec-2019 18:58:05 Error from server (NotFound): pods "dev-onedata-cli-paris-58bb65db5b-nqvlp" not found
24-Dec-2019 18:58:05 Error from server (NotFound): pods "dev-oneprovider-krakow-0" not found
24-Dec-2019 18:58:05 pod "dev-oneprovider-krakow-ready-check-7bxfz" deleted
24-Dec-2019 18:58:18 pod "dev-oneprovider-lisbon-ready-check-7h4q7" deleted
24-Dec-2019 18:58:20 Error from server (NotFound): pods "dev-oneprovider-paris-ready-check-bn499" not found
24-Dec-2019 18:58:20 Error from server (NotFound): pods "dev-onezone-ready-check-rnkvw" not found
24-Dec-2019 18:58:20 pod "dev-volume-ceph-krakow-677d6f5d67-rgfnr" deleted
24-Dec-2019 18:58:24 Error from server (NotFound): pods "dev-volume-ceph-lisbon-7d84d46579-zbcqz" not found
24-Dec-2019 18:58:24 pod "dev-volume-ceph-paris-7597d878f7-chlcr" deleted
24-Dec-2019 18:58:27 Error from server (NotFound): pods "dev-volume-gluster-krakow-b8b84cfb9-cw27s" not found
24-Dec-2019 18:58:27 Error from server (NotFound): pods "dev-volume-gluster-lisbon-757fd88d77-6lz96" not found
24-Dec-2019 18:58:27 Error from server (NotFound): pods "dev-volume-gluster-paris-5bb5866599-jzd72" not found
24-Dec-2019 18:58:27 Error from server (NotFound): pods "dev-volume-s3-krakow-6bb7fd865c-h2jgh" not found
24-Dec-2019 18:58:27 Error from server (NotFound): pods "dev-volume-s3-lisbon-866cdf45b5-5p8sh" not found
24-Dec-2019 18:58:27 Error from server (NotFound): pods "dev-volume-s3-paris-84d646df9f-j2g8s" not found
24-Dec-2019 18:58:27 Cleaning dockswift container
24-Dec-2019 18:58:27 Cleaning docker containers
24-Dec-2019 18:58:28 Error: No such object: cb51380d7212
24-Dec-2019 18:58:28 Error: No such object: 895e9a8124b4
24-Dec-2019 18:58:28 Error: No such object: 15ccb68dccb1
24-Dec-2019 18:58:28 Error: No such object: f068ec30abca
24-Dec-2019 18:58:28 Error: No such object: cd5e8580dc80
24-Dec-2019 18:58:28 Error: No such object: 1425356311a7
24-Dec-2019 18:58:28 Error: No such object: 01dfca8ec87c
24-Dec-2019 18:58:28 Error: No such object: 4e20b200f33f
24-Dec-2019 18:58:28 Error: No such object: b93e770cba56
24-Dec-2019 18:58:28 Error: No such object: 1f4470aadbeb
24-Dec-2019 18:58:28 Error: No such object: cc7a99487cbf
24-Dec-2019 18:58:28 Error: No such object: 9e7ee17d3b88
24-Dec-2019 18:58:28 Error: No such object: d77a523f222f
24-Dec-2019 18:58:28 Error: No such object: 5b41395ce84b
24-Dec-2019 18:58:29 Error: No such object: d39f562cdf55
24-Dec-2019 18:58:29 Error: No such object: 883dac6ef29b
24-Dec-2019 18:58:29 Error: No such object: 8c22ee841048
24-Dec-2019 18:58:29 Error: No such object: 09ff183e6691
24-Dec-2019 18:58:29 Error: No such object: 94ff387823ae
24-Dec-2019 18:58:29 Error: No such object: ea4023251071
24-Dec-2019 18:58:29 Error: No such object: 000cca0dcdc3
24-Dec-2019 18:58:29 Error: No such object: 0a3fe2c003d1
24-Dec-2019 18:58:29 Error: No such object: b7396ef7c8b5
24-Dec-2019 18:58:29 Error: No such object: 602c244c68f0
24-Dec-2019 18:58:29 Error: No such object: bc137a42f2d8
24-Dec-2019 18:58:29 Error: No such object: 232d73e1708e
24-Dec-2019 18:58:30 Stalled docker containers to remove:
24-Dec-2019 18:58:30 14c6ea16bc41 c11785ea4125 05efbc22a684 d1b8bc8c652e cb51380d7212 33576689d86e 895e9a8124b4 f8f766ef3087 0a958f600ee6 15ccb68dccb1 33cf9cb2a0be f068ec30abca cd5e8580dc80 1425356311a7 01dfca8ec87c 4e20b200f33f b93e770cba56 1f4470aadbeb cc7a99487cbf 9e7ee17d3b88 d77a523f222f 5b41395ce84b d39f562cdf55 883dac6ef29b 8c22ee841048 09ff183e6691 94ff387823ae ea4023251071 000cca0dcdc3 0a3fe2c003d1 b7396ef7c8b5 602c244c68f0 bc137a42f2d8 232d73e1708e 8a8bb5aa41d1
24-Dec-2019 18:58:30 Removing stalled docker containers
24-Dec-2019 18:58:30 Error response from daemon: Cannot kill container: 14c6ea16bc41: Container 14c6ea16bc417f7561ed2b9af2a1cc607d8a00d52950f357c19d5dd351211106 is not running
24-Dec-2019 18:58:30 14c6ea16bc41
24-Dec-2019 18:58:30 Error response from daemon: Cannot kill container: c11785ea4125: No such container: c11785ea4125
24-Dec-2019 18:58:30 Error: No such container: c11785ea4125
24-Dec-2019 18:58:30 Error response from daemon: Cannot kill container: 05efbc22a684: No such container: 05efbc22a684
24-Dec-2019 18:58:30 Error: No such container: 05efbc22a684
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: d1b8bc8c652e: No such container: d1b8bc8c652e
24-Dec-2019 18:58:31 Error: No such container: d1b8bc8c652e
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: cb51380d7212: No such container: cb51380d7212
24-Dec-2019 18:58:31 Error: No such container: cb51380d7212
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: 33576689d86e: No such container: 33576689d86e
24-Dec-2019 18:58:31 Error: No such container: 33576689d86e
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: 895e9a8124b4: No such container: 895e9a8124b4
24-Dec-2019 18:58:31 Error: No such container: 895e9a8124b4
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: f8f766ef3087: No such container: f8f766ef3087
24-Dec-2019 18:58:31 Error: No such container: f8f766ef3087
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: 0a958f600ee6: No such container: 0a958f600ee6
24-Dec-2019 18:58:31 Error: No such container: 0a958f600ee6
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: 15ccb68dccb1: No such container: 15ccb68dccb1
24-Dec-2019 18:58:31 Error: No such container: 15ccb68dccb1
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: 33cf9cb2a0be: No such container: 33cf9cb2a0be
24-Dec-2019 18:58:31 Error: No such container: 33cf9cb2a0be
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: f068ec30abca: No such container: f068ec30abca
24-Dec-2019 18:58:31 Error: No such container: f068ec30abca
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: cd5e8580dc80: No such container: cd5e8580dc80
24-Dec-2019 18:58:31 Error: No such container: cd5e8580dc80
24-Dec-2019 18:58:31 Error response from daemon: Cannot kill container: 1425356311a7: No such container: 1425356311a7
24-Dec-2019 18:58:31 Error: No such container: 1425356311a7
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: 01dfca8ec87c: No such container: 01dfca8ec87c
24-Dec-2019 18:58:32 Error: No such container: 01dfca8ec87c
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: 4e20b200f33f: No such container: 4e20b200f33f
24-Dec-2019 18:58:32 Error: No such container: 4e20b200f33f
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: b93e770cba56: No such container: b93e770cba56
24-Dec-2019 18:58:32 Error: No such container: b93e770cba56
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: 1f4470aadbeb: No such container: 1f4470aadbeb
24-Dec-2019 18:58:32 Error: No such container: 1f4470aadbeb
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: cc7a99487cbf: No such container: cc7a99487cbf
24-Dec-2019 18:58:32 Error: No such container: cc7a99487cbf
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: 9e7ee17d3b88: No such container: 9e7ee17d3b88
24-Dec-2019 18:58:32 Error: No such container: 9e7ee17d3b88
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: d77a523f222f: No such container: d77a523f222f
24-Dec-2019 18:58:32 Error: No such container: d77a523f222f
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: 5b41395ce84b: No such container: 5b41395ce84b
24-Dec-2019 18:58:32 Error: No such container: 5b41395ce84b
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: d39f562cdf55: No such container: d39f562cdf55
24-Dec-2019 18:58:32 Error: No such container: d39f562cdf55
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: 883dac6ef29b: No such container: 883dac6ef29b
24-Dec-2019 18:58:32 Error: No such container: 883dac6ef29b
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: 8c22ee841048: No such container: 8c22ee841048
24-Dec-2019 18:58:32 Error: No such container: 8c22ee841048
24-Dec-2019 18:58:32 Error response from daemon: Cannot kill container: 09ff183e6691: No such container: 09ff183e6691
24-Dec-2019 18:58:33 Error: No such container: 09ff183e6691
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: 94ff387823ae: No such container: 94ff387823ae
24-Dec-2019 18:58:33 Error: No such container: 94ff387823ae
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: ea4023251071: No such container: ea4023251071
24-Dec-2019 18:58:33 Error: No such container: ea4023251071
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: 000cca0dcdc3: No such container: 000cca0dcdc3
24-Dec-2019 18:58:33 Error: No such container: 000cca0dcdc3
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: 0a3fe2c003d1: No such container: 0a3fe2c003d1
24-Dec-2019 18:58:33 Error: No such container: 0a3fe2c003d1
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: b7396ef7c8b5: No such container: b7396ef7c8b5
24-Dec-2019 18:58:33 Error: No such container: b7396ef7c8b5
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: 602c244c68f0: No such container: 602c244c68f0
24-Dec-2019 18:58:33 Error: No such container: 602c244c68f0
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: bc137a42f2d8: No such container: bc137a42f2d8
24-Dec-2019 18:58:33 Error: No such container: bc137a42f2d8
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: 232d73e1708e: No such container: 232d73e1708e
24-Dec-2019 18:58:33 Error: No such container: 232d73e1708e
24-Dec-2019 18:58:33 Error response from daemon: Cannot kill container: 8a8bb5aa41d1: Container 8a8bb5aa41d17bb5378d4dfbb42f7165775985cd843bf57084be78245ed24a52 is not running
24-Dec-2019 18:58:33 8a8bb5aa41d1
24-Dec-2019 18:58:33 Stalled docker volumes to remove:
24-Dec-2019 18:58:33
24-Dec-2019 18:58:33 Removing stalled docker volumes
24-Dec-2019 18:58:33 Removing stalled loopdevices
24-Dec-2019 18:58:34 Done
24-Dec-2019 18:58:34 Finished task 'Clear env' with result: Success
24-Dec-2019 18:58:34 Running post build plugin 'Docker Container Cleanup'
24-Dec-2019 18:58:34 Running post build plugin 'NCover Results Collector'
24-Dec-2019 18:58:34 Running post build plugin 'Clover Results Collector'
24-Dec-2019 18:58:34 Running post build plugin 'npm Cache Cleanup'
24-Dec-2019 18:58:34 Running post build plugin 'Artifact Copier'
24-Dec-2019 18:58:34 Publishing an artifact: test_logs.tar.gz
24-Dec-2019 18:58:34 Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 10.72 ms
24-Dec-2019 18:58:37 Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-ML'
24-Dec-2019 18:58:37 Finalising the build...
24-Dec-2019 18:58:37 Stopping timer.
24-Dec-2019 18:58:37 Build TEST-OCAST-ML-17 completed.
24-Dec-2019 18:58:37 Running on server: post build plugin 'NCover Results Collector'
24-Dec-2019 18:58:37 Running on server: post build plugin 'Build Hanging Detection Configuration'
24-Dec-2019 18:58:37 Running on server: post build plugin 'Clover Delta Calculator'
24-Dec-2019 18:58:37 Running on server: post build plugin 'Maven Dependencies Postprocessor'
24-Dec-2019 18:58:37 All post build plugins have finished
24-Dec-2019 18:58:37 Generating build results summary...
24-Dec-2019 18:58:37 Saving build results to disk...
24-Dec-2019 18:58:37 Logging substituted variables...
24-Dec-2019 18:58:37 Indexing build results...
24-Dec-2019 18:58:37 Finished building TEST-OCAST-ML-17.