Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build 169 for 8.12 with status FAILURE #38577

Closed
elasticmachine opened this issue Mar 24, 2024 · 2 comments
Closed

Build 169 for 8.12 with status FAILURE #38577

elasticmachine opened this issue Mar 24, 2024 · 2 comments
Labels
automation build-failures Build failures in the CI. ci-reported Issues that have been automatically reported from the CI Team:Elastic-Agent-Data-Plane Label for the Agent Data Plane team

Comments

@elasticmachine
Copy link
Collaborator

💔 Tests Failed

the below badges are clickable and redirect to their specific view in the CI or DOCS
Pipeline View Test View Changes Artifacts preview preview

Expand to view the summary

Build stats

  • Start Time: 2024-03-24T03:13:29.532+0000

  • Duration: 141 min 32 sec

Test stats 🧪

Test Results
Failed 27
Passed 564
Skipped 148
Total 739

Test errors 27

Expand to view the tests failures

> Show only the first 10 test failures

Build&Test / metricbeat-pythonIntegTest / test_jolokia_jmx – metricbeat.tests.system.test_autodiscover_jolokia.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_autodiscover_jolokia.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: afdeb4b79e5f_metricbeat_7918a246f6f8_jolokia_1 (afdeb4)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_dashboards – metricbeat.tests.system.test_base.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_base.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 572426f6600d_metricbeat_7918a246f6f8_elasticsearch_1 (572426)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_export_config – metricbeat.tests.system.test_base.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_base.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 572426f6600d_metricbeat_7918a246f6f8_elasticsearch_1 (572426)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_export_ilm_policy – metricbeat.tests.system.test_base.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_base.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 572426f6600d_metricbeat_7918a246f6f8_elasticsearch_1 (572426)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_export_index_pattern – metricbeat.tests.system.test_base.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_base.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 572426f6600d_metricbeat_7918a246f6f8_elasticsearch_1 (572426)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_export_index_pattern_migration – metricbeat.tests.system.test_base.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_base.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 572426f6600d_metricbeat_7918a246f6f8_elasticsearch_1 (572426)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_export_template – metricbeat.tests.system.test_base.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_base.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 572426f6600d_metricbeat_7918a246f6f8_elasticsearch_1 (572426)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_index_management – metricbeat.tests.system.test_base.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_base.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 572426f6600d_metricbeat_7918a246f6f8_elasticsearch_1 (572426)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_start_stop – metricbeat.tests.system.test_base.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_base.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 572426f6600d_metricbeat_7918a246f6f8_elasticsearch_1 (572426)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Build&Test / metricbeat-pythonIntegTest / test_metricsets_0_stats – metricbeat.module.beat.test_beat.Test
    Expand to view the error details

     failed on setup with "KeyError: "ContainerConfig"" 
    

    Expand to view the stacktrace

     cls = <class "test_beat.Test">
    
        @classmethod
        def setUpClass(cls):  # pylint: disable=invalid-name
            """
            initializes the Test class
            """
            if not hasattr(cls, "beat_name"):
                cls.beat_name = "metricbeat"
        
            if not hasattr(cls, "beat_path"):
                cls.beat_path = os.path.abspath(
                    os.path.join(os.path.dirname(__file__), "../../"))
        
    >       super().setUpClass()
    
    tests/system/metricbeat.py:42: 
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    ../libbeat/tests/system/beat/beat.py:204: in setUpClass
        cls.compose_up_with_retries()
    ../libbeat/tests/system/beat/beat.py:222: in compose_up_with_retries
        raise ex
    ../libbeat/tests/system/beat/beat.py:218: in compose_up_with_retries
        cls.compose_up()
    ../libbeat/tests/system/beat/compose.py:66: in compose_up
        project.up(
    /opt/venv/lib/python3.11/site-packages/compose/project.py:697: in up
        results, errors = parallel.parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/project.py:679: in do
        return service.execute_convergence_plan(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:579: in execute_convergence_plan
        return self._execute_convergence_recreate(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:499: in _execute_convergence_recreate
        containers, errors = parallel_execute(
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:108: in parallel_execute
        raise error_to_reraise
    /opt/venv/lib/python3.11/site-packages/compose/parallel.py:206: in producer
        result = func(obj)
    /opt/venv/lib/python3.11/site-packages/compose/service.py:494: in recreate
        return self.recreate_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:612: in recreate_container
        new_container = self.create_container(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:330: in create_container
        container_options = self._get_container_create_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:921: in _get_container_create_options
        container_options, override_options = self._build_container_volume_options(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:960: in _build_container_volume_options
        binds, affinity = merge_volume_bindings(
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1548: in merge_volume_bindings
        old_volumes, old_mounts = get_container_data_volumes(
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
    
    container = <Container: 5f5cd13546f3_metricbeat_7918a246f6f8_metricbeat_1 (5f5cd1)>
    volumes_option = [], tmpfs_option = [], mounts_option = []
    
        def get_container_data_volumes(container, volumes_option, tmpfs_option, mounts_option):
            """
                Find the container data volumes that are in `volumes_option`, and return
                a mapping of volume bindings for those volumes.
                Anonymous volume mounts are updated in place instead.
            """
            volumes = []
            volumes_option = volumes_option or []
        
            container_mounts = {
                mount["Destination"]: mount
                for mount in container.get("Mounts") or {}
            }
        
            image_volumes = [
                VolumeSpec.parse(volume)
                for volume in
    >           container.image_config["ContainerConfig"].get("Volumes") or {}
            ]
    E       KeyError: "ContainerConfig"
    
    /opt/venv/lib/python3.11/site-packages/compose/service.py:1579: KeyError 
    

Steps errors 7

Expand to view the steps failures

metricbeat-goIntegTest - mage goIntegTest
  • Took 43 min 5 sec . View more details here
  • Description: mage goIntegTest
metricbeat-goIntegTest - mage goIntegTest
  • Took 42 min 35 sec . View more details here
  • Description: mage goIntegTest
metricbeat-goIntegTest - mage goIntegTest
  • Took 43 min 33 sec . View more details here
  • Description: mage goIntegTest
metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 30 min 41 sec . View more details here
  • Description: mage pythonIntegTest
metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 19 min 56 sec . View more details here
  • Description: mage pythonIntegTest
metricbeat-pythonIntegTest - mage pythonIntegTest
  • Took 19 min 10 sec . View more details here
  • Description: mage pythonIntegTest
Error signal
  • Took 0 min 0 sec . View more details here
  • Description: Error "hudson.AbortException: script returned exit code 1"

@elasticmachine elasticmachine added automation build-failures Build failures in the CI. ci-reported Issues that have been automatically reported from the CI Team:Elastic-Agent-Data-Plane Label for the Agent Data Plane team labels Mar 24, 2024
@elasticmachine
Copy link
Collaborator Author

Pinging @elastic/elastic-agent-data-plane (Team:Elastic-Agent-Data-Plane)

@pierrehilbert
Copy link
Collaborator

Same than #38539

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automation build-failures Build failures in the CI. ci-reported Issues that have been automatically reported from the CI Team:Elastic-Agent-Data-Plane Label for the Agent Data Plane team
Projects
None yet
Development

No branches or pull requests

2 participants