2024-04-19T01:44:07.427 INFO:root:teuthology version: 0.0.1.dev269+g9481b1d 2024-04-19T01:44:07.428 DEBUG:teuthology.run:Teuthology command: teuthology --description rados/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/connectivity task/test_host_drain} --archive /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725 --name teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi --owner scheduled_teuthology@teuthology --verbose -- /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725/orig.config.yaml 2024-04-19T01:44:07.460 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-19T01:44:07.543 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725 branch: squid description: rados/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7662725' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: global: mon election default strategy: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN log-only-match: - CEPHADM_ sha1: 1a6a3e742fd81c6d70be70552499bff767652c32 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 1a6a3e742fd81c6d70be70552499bff767652c32 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: d0bf63dd179c05751e4be49477389aa290c73089 owner: scheduled_teuthology@teuthology priority: 101 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 6512 sha1: 1a6a3e742fd81c6d70be70552499bff767652c32 sleep_before_teardown: 0 subset: 28391/100000 suite: rados suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_d0bf63dd179c05751e4be49477389aa290c73089/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: d0bf63dd179c05751e4be49477389aa290c73089 targets: smithi097.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFuqbDsS75UaaC/D2T5CVhqxA7pKDsYsL5+spG4HSOuTduTpi89v/hyXtF89W1qaPVG2rcOZl1O2byRFZkv/4rM= smithi144.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMf7XsCVOdrxUwks6Zv4o5Qe9reShct7ZxwPDSWwfwsbi2DHOwYLpLD7E78adsdHZV3I/hXv4L1fjMmEXnF+D1Q= smithi196.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG0diNgoissrey41eIgd8sWLv4sEFka6ZrV1wGugIEtByj7omeXgNDoARTI/Q8dQVi+KoRsFNrMiXvuVWgtEInI= tasks: - pexec: all: - sudo dnf install runc -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17 timestamp: 2024-04-18_21:00:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-19T01:44:07.543 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_d0bf63dd179c05751e4be49477389aa290c73089/qa; will attempt to use it 2024-04-19T01:44:07.544 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_d0bf63dd179c05751e4be49477389aa290c73089/qa/tasks 2024-04-19T01:44:07.544 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-19T01:44:07.546 INFO:teuthology.task.internal:Checking packages... 2024-04-19T01:44:07.569 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '1a6a3e742fd81c6d70be70552499bff767652c32' 2024-04-19T01:44:07.570 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-19T01:44:07.570 INFO:teuthology.packaging:ref: None 2024-04-19T01:44:07.570 INFO:teuthology.packaging:tag: None 2024-04-19T01:44:07.570 INFO:teuthology.packaging:branch: squid 2024-04-19T01:44:07.570 INFO:teuthology.packaging:sha1: 1a6a3e742fd81c6d70be70552499bff767652c32 2024-04-19T01:44:07.570 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-04-19T01:44:07.764 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2401.gd0bf63dd 2024-04-19T01:44:07.765 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-19T01:44:07.771 INFO:teuthology.task.internal:no buildpackages task found 2024-04-19T01:44:07.771 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-19T01:44:07.778 INFO:teuthology.task.internal:Saving configuration 2024-04-19T01:44:07.793 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-19T01:44:07.799 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T01:44:07.823 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi097.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 01:39:19.628784', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFuqbDsS75UaaC/D2T5CVhqxA7pKDsYsL5+spG4HSOuTduTpi89v/hyXtF89W1qaPVG2rcOZl1O2byRFZkv/4rM='} 2024-04-19T01:44:07.846 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi144.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 01:39:19.628047', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMf7XsCVOdrxUwks6Zv4o5Qe9reShct7ZxwPDSWwfwsbi2DHOwYLpLD7E78adsdHZV3I/hXv4L1fjMmEXnF+D1Q='} 2024-04-19T01:44:07.872 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi196.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 01:39:19.627088', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG0diNgoissrey41eIgd8sWLv4sEFka6ZrV1wGugIEtByj7omeXgNDoARTI/Q8dQVi+KoRsFNrMiXvuVWgtEInI='} 2024-04-19T01:44:07.872 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-19T01:44:07.878 INFO:teuthology.task.internal:roles: ubuntu@smithi097.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-19T01:44:07.878 INFO:teuthology.task.internal:roles: ubuntu@smithi144.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-19T01:44:07.878 INFO:teuthology.task.internal:roles: ubuntu@smithi196.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-19T01:44:07.878 INFO:teuthology.run_tasks:Running task console_log... 2024-04-19T01:44:07.984 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fe8c44e2f70>, signals=[15]) 2024-04-19T01:44:07.984 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-19T01:44:07.990 INFO:teuthology.task.internal:Opening connections... 2024-04-19T01:44:07.990 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi097.front.sepia.ceph.com 2024-04-19T01:44:07.992 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:44:08.084 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi144.front.sepia.ceph.com 2024-04-19T01:44:08.085 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:44:08.175 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi196.front.sepia.ceph.com 2024-04-19T01:44:08.175 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi196.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:44:08.264 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-19T01:44:08.270 DEBUG:teuthology.orchestra.run.smithi097:> uname -m 2024-04-19T01:44:08.288 INFO:teuthology.orchestra.run.smithi097.stdout:x86_64 2024-04-19T01:44:08.288 DEBUG:teuthology.orchestra.run.smithi097:> cat /etc/os-release 2024-04-19T01:44:08.345 INFO:teuthology.orchestra.run.smithi097.stdout:NAME="CentOS Stream" 2024-04-19T01:44:08.345 INFO:teuthology.orchestra.run.smithi097.stdout:VERSION="9" 2024-04-19T01:44:08.345 INFO:teuthology.orchestra.run.smithi097.stdout:ID="centos" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:ID_LIKE="rhel fedora" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:VERSION_ID="9" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:PLATFORM_ID="platform:el9" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:ANSI_COLOR="0;31" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:LOGO="fedora-logo-icon" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:HOME_URL="https://centos.org/" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-19T01:44:08.346 INFO:teuthology.orchestra.run.smithi097.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-19T01:44:08.347 INFO:teuthology.lock.ops:Updating smithi097.front.sepia.ceph.com on lock server 2024-04-19T01:44:08.370 DEBUG:teuthology.orchestra.run.smithi144:> uname -m 2024-04-19T01:44:08.388 INFO:teuthology.orchestra.run.smithi144.stdout:x86_64 2024-04-19T01:44:08.389 DEBUG:teuthology.orchestra.run.smithi144:> cat /etc/os-release 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:NAME="CentOS Stream" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:VERSION="9" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:ID="centos" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:ID_LIKE="rhel fedora" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:VERSION_ID="9" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:PLATFORM_ID="platform:el9" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:ANSI_COLOR="0;31" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:LOGO="fedora-logo-icon" 2024-04-19T01:44:08.446 INFO:teuthology.orchestra.run.smithi144.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-19T01:44:08.447 INFO:teuthology.orchestra.run.smithi144.stdout:HOME_URL="https://centos.org/" 2024-04-19T01:44:08.447 INFO:teuthology.orchestra.run.smithi144.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-19T01:44:08.447 INFO:teuthology.orchestra.run.smithi144.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-19T01:44:08.447 INFO:teuthology.orchestra.run.smithi144.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-19T01:44:08.447 INFO:teuthology.lock.ops:Updating smithi144.front.sepia.ceph.com on lock server 2024-04-19T01:44:08.470 DEBUG:teuthology.orchestra.run.smithi196:> uname -m 2024-04-19T01:44:08.488 INFO:teuthology.orchestra.run.smithi196.stdout:x86_64 2024-04-19T01:44:08.488 DEBUG:teuthology.orchestra.run.smithi196:> cat /etc/os-release 2024-04-19T01:44:08.549 INFO:teuthology.orchestra.run.smithi196.stdout:NAME="CentOS Stream" 2024-04-19T01:44:08.549 INFO:teuthology.orchestra.run.smithi196.stdout:VERSION="9" 2024-04-19T01:44:08.549 INFO:teuthology.orchestra.run.smithi196.stdout:ID="centos" 2024-04-19T01:44:08.549 INFO:teuthology.orchestra.run.smithi196.stdout:ID_LIKE="rhel fedora" 2024-04-19T01:44:08.549 INFO:teuthology.orchestra.run.smithi196.stdout:VERSION_ID="9" 2024-04-19T01:44:08.549 INFO:teuthology.orchestra.run.smithi196.stdout:PLATFORM_ID="platform:el9" 2024-04-19T01:44:08.550 INFO:teuthology.orchestra.run.smithi196.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-19T01:44:08.550 INFO:teuthology.orchestra.run.smithi196.stdout:ANSI_COLOR="0;31" 2024-04-19T01:44:08.550 INFO:teuthology.orchestra.run.smithi196.stdout:LOGO="fedora-logo-icon" 2024-04-19T01:44:08.550 INFO:teuthology.orchestra.run.smithi196.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-19T01:44:08.550 INFO:teuthology.orchestra.run.smithi196.stdout:HOME_URL="https://centos.org/" 2024-04-19T01:44:08.550 INFO:teuthology.orchestra.run.smithi196.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-19T01:44:08.550 INFO:teuthology.orchestra.run.smithi196.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-19T01:44:08.550 INFO:teuthology.orchestra.run.smithi196.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-19T01:44:08.550 INFO:teuthology.lock.ops:Updating smithi196.front.sepia.ceph.com on lock server 2024-04-19T01:44:08.570 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-19T01:44:08.578 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-19T01:44:08.593 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-19T01:44:08.593 DEBUG:teuthology.orchestra.run.smithi097:> test '!' -e /home/ubuntu/cephtest 2024-04-19T01:44:08.595 DEBUG:teuthology.orchestra.run.smithi144:> test '!' -e /home/ubuntu/cephtest 2024-04-19T01:44:08.597 DEBUG:teuthology.orchestra.run.smithi196:> test '!' -e /home/ubuntu/cephtest 2024-04-19T01:44:08.613 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-19T01:44:08.619 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-19T01:44:08.619 DEBUG:teuthology.orchestra.run.smithi097:> test -z $(ls -A /var/lib/ceph) 2024-04-19T01:44:08.651 DEBUG:teuthology.orchestra.run.smithi144:> test -z $(ls -A /var/lib/ceph) 2024-04-19T01:44:08.654 DEBUG:teuthology.orchestra.run.smithi196:> test -z $(ls -A /var/lib/ceph) 2024-04-19T01:44:08.747 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-19T01:44:08.822 INFO:teuthology.run_tasks:Running task kernel... 2024-04-19T01:44:08.893 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-19T01:44:08.893 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-19T01:44:08.893 DEBUG:teuthology.orchestra.run.smithi097:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-19T01:44:08.894 DEBUG:teuthology.orchestra.run.smithi144:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-19T01:44:08.894 DEBUG:teuthology.orchestra.run.smithi196:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-19T01:44:08.911 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:44:08.911 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:44:08.912 DEBUG:teuthology.orchestra.run.smithi097:> uname -r 2024-04-19T01:44:08.912 DEBUG:teuthology.orchestra.run.smithi196:> uname -r 2024-04-19T01:44:08.913 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:44:08.913 DEBUG:teuthology.orchestra.run.smithi144:> uname -r 2024-04-19T01:44:08.969 INFO:teuthology.orchestra.run.smithi097.stdout:5.14.0-361.el9.x86_64 2024-04-19T01:44:08.969 INFO:teuthology.task.kernel:Running kernel on smithi097: 5.14.0-361.el9.x86_64 2024-04-19T01:44:08.969 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum install -y kernel 2024-04-19T01:44:08.970 INFO:teuthology.orchestra.run.smithi144.stdout:5.14.0-361.el9.x86_64 2024-04-19T01:44:08.970 INFO:teuthology.task.kernel:Running kernel on smithi144: 5.14.0-361.el9.x86_64 2024-04-19T01:44:08.970 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum install -y kernel 2024-04-19T01:44:08.973 INFO:teuthology.orchestra.run.smithi196.stdout:5.14.0-361.el9.x86_64 2024-04-19T01:44:08.973 INFO:teuthology.task.kernel:Running kernel on smithi196: 5.14.0-361.el9.x86_64 2024-04-19T01:44:08.973 DEBUG:teuthology.orchestra.run.smithi196:> sudo yum install -y kernel 2024-04-19T01:44:11.256 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS-9 - AppStream 9.5 MB/s | 6.4 MB 00:00 2024-04-19T01:44:11.276 INFO:teuthology.orchestra.run.smithi196.stdout:CentOS-9 - AppStream 9.5 MB/s | 6.4 MB 00:00 2024-04-19T01:44:11.290 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS-9 - AppStream 10 MB/s | 6.4 MB 00:00 2024-04-19T01:44:12.610 INFO:teuthology.orchestra.run.smithi196.stdout:CentOS-9 - BaseOS 7.7 MB/s | 2.0 MB 00:00 2024-04-19T01:44:12.649 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS-9 - BaseOS 7.1 MB/s | 2.0 MB 00:00 2024-04-19T01:44:12.899 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS-9 - BaseOS 3.7 MB/s | 2.0 MB 00:00 2024-04-19T01:44:13.514 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - BaseOS 15 MB/s | 8.0 MB 00:00 2024-04-19T01:44:14.792 INFO:teuthology.orchestra.run.smithi196.stdout:CentOS Stream 9 - BaseOS 4.4 MB/s | 8.0 MB 00:01 2024-04-19T01:44:16.626 INFO:teuthology.orchestra.run.smithi196.stdout:CentOS Stream 9 - AppStream 26 MB/s | 19 MB 00:00 2024-04-19T01:44:19.023 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - AppStream 4.3 MB/s | 19 MB 00:04 2024-04-19T01:44:24.057 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - CRB 4.1 MB/s | 6.2 MB 00:01 2024-04-19T01:44:24.151 INFO:teuthology.orchestra.run.smithi196.stdout:CentOS Stream 9 - CRB 1.6 MB/s | 6.2 MB 00:03 2024-04-19T01:44:25.866 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - Extras packages 25 kB/s | 16 kB 00:00 2024-04-19T01:44:25.994 INFO:teuthology.orchestra.run.smithi196.stdout:CentOS Stream 9 - Extras packages 25 kB/s | 16 kB 00:00 2024-04-19T01:44:27.303 INFO:teuthology.orchestra.run.smithi097.stdout:Extra Packages for Enterprise Linux 16 MB/s | 21 MB 00:01 2024-04-19T01:44:28.061 INFO:teuthology.orchestra.run.smithi196.stdout:Extra Packages for Enterprise Linux 11 MB/s | 21 MB 00:01 2024-04-19T01:44:32.635 INFO:teuthology.orchestra.run.smithi097.stdout:lab-extras 5.2 kB/s | 1.7 kB 00:00 2024-04-19T01:44:33.086 INFO:teuthology.orchestra.run.smithi196.stdout:lab-extras 27 kB/s | 1.7 kB 00:00 2024-04-19T01:44:35.058 INFO:teuthology.orchestra.run.smithi097.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-19T01:44:35.058 INFO:teuthology.orchestra.run.smithi097.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-19T01:44:35.152 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-19T01:44:35.162 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-19T01:44:35.162 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout: kernel x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 29 k 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 16 M 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-modules x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 34 M 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-modules-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 27 M 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout:Install 4 Packages 2024-04-19T01:44:35.163 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-19T01:44:35.164 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 78 M 2024-04-19T01:44:35.164 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 125 M 2024-04-19T01:44:35.164 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-19T01:44:35.302 INFO:teuthology.orchestra.run.smithi097.stdout:(1/4): kernel-6.9.0-0.rc2.1.el10.x86_64.rpm 207 kB/s | 29 kB 00:00 2024-04-19T01:44:35.543 INFO:teuthology.orchestra.run.smithi196.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-19T01:44:35.543 INFO:teuthology.orchestra.run.smithi196.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-19T01:44:35.645 INFO:teuthology.orchestra.run.smithi196.stdout:Dependencies resolved. 2024-04-19T01:44:35.655 INFO:teuthology.orchestra.run.smithi196.stdout:================================================================================ 2024-04-19T01:44:35.655 INFO:teuthology.orchestra.run.smithi196.stdout: Package Arch Version Repository Size 2024-04-19T01:44:35.655 INFO:teuthology.orchestra.run.smithi196.stdout:================================================================================ 2024-04-19T01:44:35.655 INFO:teuthology.orchestra.run.smithi196.stdout:Installing: 2024-04-19T01:44:35.655 INFO:teuthology.orchestra.run.smithi196.stdout: kernel x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 29 k 2024-04-19T01:44:35.655 INFO:teuthology.orchestra.run.smithi196.stdout:Installing dependencies: 2024-04-19T01:44:35.656 INFO:teuthology.orchestra.run.smithi196.stdout: kernel-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 16 M 2024-04-19T01:44:35.656 INFO:teuthology.orchestra.run.smithi196.stdout: kernel-modules x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 34 M 2024-04-19T01:44:35.656 INFO:teuthology.orchestra.run.smithi196.stdout: kernel-modules-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 27 M 2024-04-19T01:44:35.656 INFO:teuthology.orchestra.run.smithi196.stdout: 2024-04-19T01:44:35.656 INFO:teuthology.orchestra.run.smithi196.stdout:Transaction Summary 2024-04-19T01:44:35.656 INFO:teuthology.orchestra.run.smithi196.stdout:================================================================================ 2024-04-19T01:44:35.656 INFO:teuthology.orchestra.run.smithi196.stdout:Install 4 Packages 2024-04-19T01:44:35.656 INFO:teuthology.orchestra.run.smithi196.stdout: 2024-04-19T01:44:35.657 INFO:teuthology.orchestra.run.smithi196.stdout:Total download size: 78 M 2024-04-19T01:44:35.657 INFO:teuthology.orchestra.run.smithi196.stdout:Installed size: 125 M 2024-04-19T01:44:35.657 INFO:teuthology.orchestra.run.smithi196.stdout:Downloading Packages: 2024-04-19T01:44:35.803 INFO:teuthology.orchestra.run.smithi196.stdout:(1/4): kernel-6.9.0-0.rc2.1.el10.x86_64.rpm 196 kB/s | 29 kB 00:00 2024-04-19T01:44:35.811 INFO:teuthology.orchestra.run.smithi097.stdout:(2/4): kernel-core-6.9.0-0.rc2.1.el10.x86_64.rp 25 MB/s | 16 MB 00:00 2024-04-19T01:44:36.578 INFO:teuthology.orchestra.run.smithi196.stdout:(2/4): kernel-core-6.9.0-0.rc2.1.el10.x86_64.rp 18 MB/s | 16 MB 00:00 2024-04-19T01:44:36.611 INFO:teuthology.orchestra.run.smithi097.stdout:(3/4): kernel-modules-core-6.9.0-0.rc2.1.el10.x 21 MB/s | 27 MB 00:01 2024-04-19T01:44:36.903 INFO:teuthology.orchestra.run.smithi097.stdout:(4/4): kernel-modules-6.9.0-0.rc2.1.el10.x86_64 20 MB/s | 34 MB 00:01 2024-04-19T01:44:36.906 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-19T01:44:36.906 INFO:teuthology.orchestra.run.smithi097.stdout:Total 45 MB/s | 78 MB 00:01 2024-04-19T01:44:36.906 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-19T01:44:37.179 INFO:teuthology.orchestra.run.smithi196.stdout:(3/4): kernel-modules-6.9.0-0.rc2.1.el10.x86_64 22 MB/s | 34 MB 00:01 2024-04-19T01:44:37.257 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-19T01:44:37.257 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-19T01:44:37.712 INFO:teuthology.orchestra.run.smithi196.stdout:(4/4): kernel-modules-core-6.9.0-0.rc2.1.el10.x 14 MB/s | 27 MB 00:01 2024-04-19T01:44:37.714 INFO:teuthology.orchestra.run.smithi196.stdout:-------------------------------------------------------------------------------- 2024-04-19T01:44:37.715 INFO:teuthology.orchestra.run.smithi196.stdout:Total 38 MB/s | 78 MB 00:02 2024-04-19T01:44:37.715 INFO:teuthology.orchestra.run.smithi196.stdout:Running transaction check 2024-04-19T01:44:38.083 INFO:teuthology.orchestra.run.smithi196.stdout:Transaction check succeeded. 2024-04-19T01:44:38.083 INFO:teuthology.orchestra.run.smithi196.stdout:Running transaction test 2024-04-19T01:44:38.100 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-19T01:44:38.101 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-19T01:44:38.938 INFO:teuthology.orchestra.run.smithi196.stdout:Transaction test succeeded. 2024-04-19T01:44:38.938 INFO:teuthology.orchestra.run.smithi196.stdout:Running transaction 2024-04-19T01:44:40.312 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-19T01:44:40.954 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T01:44:41.071 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:44:41.142 INFO:teuthology.orchestra.run.smithi196.stdout: Preparing : 1/1 2024-04-19T01:44:41.769 INFO:teuthology.orchestra.run.smithi196.stdout: Installing : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T01:44:41.870 INFO:teuthology.orchestra.run.smithi196.stdout: Installing : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:44:43.395 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:44:43.552 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:44:44.198 INFO:teuthology.orchestra.run.smithi196.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:44:44.335 INFO:teuthology.orchestra.run.smithi196.stdout: Installing : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:44:48.374 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:44:48.408 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:44:49.117 INFO:teuthology.orchestra.run.smithi196.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:44:49.158 INFO:teuthology.orchestra.run.smithi196.stdout: Installing : kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:44:52.260 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - BaseOS 212 kB/s | 8.0 MB 00:38 2024-04-19T01:44:53.232 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:44:53.955 INFO:teuthology.orchestra.run.smithi196.stdout: Running scriptlet: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:44:59.575 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - AppStream 3.1 MB/s | 19 MB 00:06 2024-04-19T01:45:03.643 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - CRB 13 MB/s | 6.2 MB 00:00 2024-04-19T01:45:05.202 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - Extras packages 43 kB/s | 16 kB 00:00 2024-04-19T01:45:06.744 INFO:teuthology.orchestra.run.smithi144.stdout:Extra Packages for Enterprise Linux 15 MB/s | 21 MB 00:01 2024-04-19T01:45:11.778 INFO:teuthology.orchestra.run.smithi144.stdout:lab-extras 34 kB/s | 1.7 kB 00:00 2024-04-19T01:45:14.151 INFO:teuthology.orchestra.run.smithi144.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-19T01:45:14.151 INFO:teuthology.orchestra.run.smithi144.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-19T01:45:14.256 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-04-19T01:45:14.264 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout: kernel x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 29 k 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 16 M 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-modules x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 34 M 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-modules-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 27 M 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout:Install 4 Packages 2024-04-19T01:45:14.265 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-04-19T01:45:14.266 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 78 M 2024-04-19T01:45:14.266 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 125 M 2024-04-19T01:45:14.266 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-04-19T01:45:14.379 INFO:teuthology.orchestra.run.smithi144.stdout:(1/4): kernel-6.9.0-0.rc2.1.el10.x86_64.rpm 254 kB/s | 29 kB 00:00 2024-04-19T01:45:15.079 INFO:teuthology.orchestra.run.smithi144.stdout:(2/4): kernel-core-6.9.0-0.rc2.1.el10.x86_64.rp 20 MB/s | 16 MB 00:00 2024-04-19T01:45:15.504 INFO:teuthology.orchestra.run.smithi144.stdout:(3/4): kernel-modules-core-6.9.0-0.rc2.1.el10.x 24 MB/s | 27 MB 00:01 2024-04-19T01:45:15.880 INFO:teuthology.orchestra.run.smithi144.stdout:(4/4): kernel-modules-6.9.0-0.rc2.1.el10.x86_64 21 MB/s | 34 MB 00:01 2024-04-19T01:45:15.882 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-04-19T01:45:15.883 INFO:teuthology.orchestra.run.smithi144.stdout:Total 48 MB/s | 78 MB 00:01 2024-04-19T01:45:15.883 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-04-19T01:45:16.253 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-04-19T01:45:16.253 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-04-19T01:45:17.123 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-04-19T01:45:17.123 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-04-19T01:45:19.307 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-04-19T01:45:19.950 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T01:45:20.047 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:45:22.383 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:45:22.522 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:45:23.186 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:23.187 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-19T01:45:23.187 INFO:teuthology.orchestra.run.smithi097.stdout:gzip: /lib/modules/6.9.0-0.rc2.1.el10.x86_64/symvers.xz: not in gzip format 2024-04-19T01:45:23.187 INFO:teuthology.orchestra.run.smithi097.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-19T01:45:23.187 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-19T01:45:23.229 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:23.578 INFO:teuthology.orchestra.run.smithi196.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:23.578 INFO:teuthology.orchestra.run.smithi196.stdout: 2024-04-19T01:45:23.579 INFO:teuthology.orchestra.run.smithi196.stdout:gzip: /lib/modules/6.9.0-0.rc2.1.el10.x86_64/symvers.xz: not in gzip format 2024-04-19T01:45:23.579 INFO:teuthology.orchestra.run.smithi196.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-19T01:45:23.579 INFO:teuthology.orchestra.run.smithi196.stdout: 2024-04-19T01:45:23.621 INFO:teuthology.orchestra.run.smithi196.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:23.651 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:23.651 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : kernel-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T01:45:23.651 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:45:23.651 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:45:24.011 INFO:teuthology.orchestra.run.smithi196.stdout: Running scriptlet: kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:24.011 INFO:teuthology.orchestra.run.smithi196.stdout: Verifying : kernel-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T01:45:24.011 INFO:teuthology.orchestra.run.smithi196.stdout: Verifying : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:45:24.011 INFO:teuthology.orchestra.run.smithi196.stdout: Verifying : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-19T01:45:24.066 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-19T01:45:24.391 DEBUG:teuthology.orchestra.run.smithi097:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T01:45:24.445 INFO:teuthology.orchestra.run.smithi196.stdout: Verifying : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:24.445 INFO:teuthology.orchestra.run.smithi196.stdout: 2024-04-19T01:45:24.445 INFO:teuthology.orchestra.run.smithi196.stdout:Installed: 2024-04-19T01:45:24.446 INFO:teuthology.orchestra.run.smithi196.stdout: kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.446 INFO:teuthology.orchestra.run.smithi196.stdout: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.446 INFO:teuthology.orchestra.run.smithi196.stdout: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.446 INFO:teuthology.orchestra.run.smithi196.stdout: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.446 INFO:teuthology.orchestra.run.smithi196.stdout: 2024-04-19T01:45:24.446 INFO:teuthology.orchestra.run.smithi196.stdout:Complete! 2024-04-19T01:45:24.488 INFO:teuthology.orchestra.run.smithi097.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.488 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.488 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.488 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-19T01:45:24.489 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-19T01:45:24.489 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-19T01:45:24.489 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi097.front.sepia.ceph.com, path=None, version=distro) 2024-04-19T01:45:24.489 DEBUG:teuthology.orchestra.run.smithi097:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T01:45:24.568 INFO:teuthology.orchestra.run.smithi097.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.568 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.568 DEBUG:teuthology.orchestra.run.smithi097:> sudo rpm -qi grub2-tools 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Name : grub2-tools 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Epoch : 1 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Version : 2.06 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Release : 68.el9 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Architecture: x86_64 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Group : Unspecified 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Size : 8264254 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:License : GPLv3+ 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-19T01:45:24.603 INFO:teuthology.orchestra.run.smithi097.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:Packager : builder@centos.org 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:Vendor : CentOS 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:Summary : Support tools for GRUB. 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:Description : 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:hardware devices. 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-19T01:45:24.604 INFO:teuthology.orchestra.run.smithi097.stdout:This subpackage provides tools for support of all platforms. 2024-04-19T01:45:24.605 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-19T01:45:24.605 INFO:teuthology.task.kernel:Updating grub on smithi097 to boot 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.605 DEBUG:teuthology.orchestra.run.smithi097:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-19T01:45:24.752 DEBUG:teuthology.orchestra.run.smithi196:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T01:45:24.859 INFO:teuthology.orchestra.run.smithi196.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.859 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.859 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.859 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-19T01:45:24.860 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-19T01:45:24.860 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-19T01:45:24.860 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi196.front.sepia.ceph.com, path=None, version=distro) 2024-04-19T01:45:24.860 DEBUG:teuthology.orchestra.run.smithi196:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T01:45:24.940 INFO:teuthology.orchestra.run.smithi196.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.940 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.940 DEBUG:teuthology.orchestra.run.smithi196:> sudo rpm -qi grub2-tools 2024-04-19T01:45:24.978 INFO:teuthology.orchestra.run.smithi196.stdout:Name : grub2-tools 2024-04-19T01:45:24.978 INFO:teuthology.orchestra.run.smithi196.stdout:Epoch : 1 2024-04-19T01:45:24.978 INFO:teuthology.orchestra.run.smithi196.stdout:Version : 2.06 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Release : 68.el9 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Architecture: x86_64 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Group : Unspecified 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Size : 8264254 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:License : GPLv3+ 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Packager : builder@centos.org 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Vendor : CentOS 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-19T01:45:24.979 INFO:teuthology.orchestra.run.smithi196.stdout:Summary : Support tools for GRUB. 2024-04-19T01:45:24.980 INFO:teuthology.orchestra.run.smithi196.stdout:Description : 2024-04-19T01:45:24.980 INFO:teuthology.orchestra.run.smithi196.stdout: 2024-04-19T01:45:24.980 INFO:teuthology.orchestra.run.smithi196.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-19T01:45:24.980 INFO:teuthology.orchestra.run.smithi196.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-19T01:45:24.980 INFO:teuthology.orchestra.run.smithi196.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-19T01:45:24.980 INFO:teuthology.orchestra.run.smithi196.stdout:hardware devices. 2024-04-19T01:45:24.980 INFO:teuthology.orchestra.run.smithi196.stdout: 2024-04-19T01:45:24.980 INFO:teuthology.orchestra.run.smithi196.stdout:This subpackage provides tools for support of all platforms. 2024-04-19T01:45:24.981 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-19T01:45:24.981 INFO:teuthology.task.kernel:Updating grub on smithi196 to boot 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:24.981 DEBUG:teuthology.orchestra.run.smithi196:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-19T01:45:25.205 INFO:teuthology.orchestra.run.smithi097.stderr:Generating grub configuration file ... 2024-04-19T01:45:25.629 INFO:teuthology.orchestra.run.smithi196.stderr:Generating grub configuration file ... 2024-04-19T01:45:26.493 INFO:teuthology.orchestra.run.smithi097.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-19T01:45:26.531 INFO:teuthology.orchestra.run.smithi097.stderr:done 2024-04-19T01:45:26.533 DEBUG:teuthology.orchestra.run.smithi097:> mktemp 2024-04-19T01:45:26.562 INFO:teuthology.orchestra.run.smithi097.stdout:/tmp/tmp.2teaJW1DS0 2024-04-19T01:45:26.562 DEBUG:teuthology.orchestra.run.smithi097:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.2teaJW1DS0 2024-04-19T01:45:26.639 DEBUG:teuthology.orchestra.run.smithi097:> sudo chmod 0666 /tmp/tmp.2teaJW1DS0 2024-04-19T01:45:26.772 DEBUG:teuthology.orchestra.remote:smithi097:/tmp/tmp.2teaJW1DS0 is 6KB 2024-04-19T01:45:26.821 DEBUG:teuthology.orchestra.run.smithi097:> rm -fr /tmp/tmp.2teaJW1DS0 2024-04-19T01:45:26.835 DEBUG:teuthology.orchestra.run.smithi097:> sudo /bin/ls /boot/loader/entries || true 2024-04-19T01:45:26.900 INFO:teuthology.orchestra.run.smithi097.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-19T01:45:26.900 INFO:teuthology.orchestra.run.smithi097.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-19T01:45:26.901 INFO:teuthology.orchestra.run.smithi097.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-19T01:45:26.902 INFO:teuthology.orchestra.run.smithi097.stdout:15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64.conf 2024-04-19T01:45:26.902 DEBUG:teuthology.orchestra.run.smithi097:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:27.052 INFO:teuthology.orchestra.run.smithi196.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-19T01:45:27.066 DEBUG:teuthology.orchestra.run.smithi097:> sudo shutdown -r now 2024-04-19T01:45:27.088 INFO:teuthology.orchestra.run.smithi196.stderr:done 2024-04-19T01:45:27.090 DEBUG:teuthology.orchestra.run.smithi196:> mktemp 2024-04-19T01:45:27.150 INFO:teuthology.orchestra.run.smithi196.stdout:/tmp/tmp.tZDS7eOkjw 2024-04-19T01:45:27.641 DEBUG:teuthology.orchestra.run.smithi196:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.tZDS7eOkjw 2024-04-19T01:45:27.643 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:45:27.643 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:27.674 DEBUG:teuthology.orchestra.run.smithi196:> sudo chmod 0666 /tmp/tmp.tZDS7eOkjw 2024-04-19T01:45:27.813 DEBUG:teuthology.orchestra.remote:smithi196:/tmp/tmp.tZDS7eOkjw is 6KB 2024-04-19T01:45:27.861 DEBUG:teuthology.orchestra.run.smithi196:> rm -fr /tmp/tmp.tZDS7eOkjw 2024-04-19T01:45:27.875 DEBUG:teuthology.orchestra.run.smithi196:> sudo /bin/ls /boot/loader/entries || true 2024-04-19T01:45:27.940 INFO:teuthology.orchestra.run.smithi196.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-19T01:45:27.940 INFO:teuthology.orchestra.run.smithi196.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-19T01:45:27.940 INFO:teuthology.orchestra.run.smithi196.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-19T01:45:27.940 INFO:teuthology.orchestra.run.smithi196.stdout:15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64.conf 2024-04-19T01:45:27.942 DEBUG:teuthology.orchestra.run.smithi196:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:45:28.096 DEBUG:teuthology.orchestra.run.smithi196:> sudo shutdown -r now 2024-04-19T01:45:32.121 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:45:57.069 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-19T01:45:57.070 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-19T01:45:57.071 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:45:58.099 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-19T01:45:58.100 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi196.front.sepia.ceph.com' 2024-04-19T01:45:58.100 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi196.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:46:01.563 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:46:01.563 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-04-19T01:46:01.563 INFO:teuthology.orchestra.run.smithi144.stdout:gzip: /lib/modules/6.9.0-0.rc2.1.el10.x86_64/symvers.xz: not in gzip format 2024-04-19T01:46:01.563 INFO:teuthology.orchestra.run.smithi144.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-19T01:46:01.563 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-04-19T01:46:01.604 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:46:02.061 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:46:02.061 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T01:46:02.061 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T01:46:02.061 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T01:46:02.500 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T01:46:02.501 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-04-19T01:46:02.501 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-04-19T01:46:02.501 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:02.501 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:02.501 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:02.501 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:02.501 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-04-19T01:46:02.501 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-04-19T01:46:02.839 DEBUG:teuthology.orchestra.run.smithi144:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T01:46:02.955 INFO:teuthology.orchestra.run.smithi144.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:02.955 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:02.955 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:02.955 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-19T01:46:02.955 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-19T01:46:02.956 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-19T01:46:02.956 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi144.front.sepia.ceph.com, path=None, version=distro) 2024-04-19T01:46:02.956 DEBUG:teuthology.orchestra.run.smithi144:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T01:46:03.036 INFO:teuthology.orchestra.run.smithi144.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:03.036 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:03.036 DEBUG:teuthology.orchestra.run.smithi144:> sudo rpm -qi grub2-tools 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Name : grub2-tools 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Epoch : 1 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Version : 2.06 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Release : 68.el9 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Architecture: x86_64 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Group : Unspecified 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Size : 8264254 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:License : GPLv3+ 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-19T01:46:03.070 INFO:teuthology.orchestra.run.smithi144.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:Packager : builder@centos.org 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:Vendor : CentOS 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:Summary : Support tools for GRUB. 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:Description : 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:hardware devices. 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-04-19T01:46:03.071 INFO:teuthology.orchestra.run.smithi144.stdout:This subpackage provides tools for support of all platforms. 2024-04-19T01:46:03.072 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-19T01:46:03.072 INFO:teuthology.task.kernel:Updating grub on smithi144 to boot 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:03.073 DEBUG:teuthology.orchestra.run.smithi144:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-19T01:46:03.709 INFO:teuthology.orchestra.run.smithi144.stderr:Generating grub configuration file ... 2024-04-19T01:46:05.052 INFO:teuthology.orchestra.run.smithi144.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-19T01:46:05.087 INFO:teuthology.orchestra.run.smithi144.stderr:done 2024-04-19T01:46:05.090 DEBUG:teuthology.orchestra.run.smithi144:> mktemp 2024-04-19T01:46:05.105 INFO:teuthology.orchestra.run.smithi144.stdout:/tmp/tmp.yRUPQF11Fi 2024-04-19T01:46:05.105 DEBUG:teuthology.orchestra.run.smithi144:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.yRUPQF11Fi 2024-04-19T01:46:05.174 DEBUG:teuthology.orchestra.run.smithi144:> sudo chmod 0666 /tmp/tmp.yRUPQF11Fi 2024-04-19T01:46:05.307 DEBUG:teuthology.orchestra.remote:smithi144:/tmp/tmp.yRUPQF11Fi is 6KB 2024-04-19T01:46:05.355 DEBUG:teuthology.orchestra.run.smithi144:> rm -fr /tmp/tmp.yRUPQF11Fi 2024-04-19T01:46:05.370 DEBUG:teuthology.orchestra.run.smithi144:> sudo /bin/ls /boot/loader/entries || true 2024-04-19T01:46:05.443 INFO:teuthology.orchestra.run.smithi144.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-19T01:46:05.443 INFO:teuthology.orchestra.run.smithi144.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-19T01:46:05.443 INFO:teuthology.orchestra.run.smithi144.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-19T01:46:05.443 INFO:teuthology.orchestra.run.smithi144.stdout:15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64.conf 2024-04-19T01:46:05.444 DEBUG:teuthology.orchestra.run.smithi144:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:46:05.612 DEBUG:teuthology.orchestra.run.smithi144:> sudo shutdown -r now 2024-04-19T01:46:15.454 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.97 2024-04-19T01:46:16.478 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.196 2024-04-19T01:46:24.462 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-19T01:46:24.463 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:46:25.481 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi196.front.sepia.ceph.com' 2024-04-19T01:46:25.481 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi196.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:46:27.518 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.97 2024-04-19T01:46:35.623 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-19T01:46:35.623 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-04-19T01:46:35.624 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:46:39.522 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-19T01:46:39.523 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:46:54.110 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.144 2024-04-19T01:47:03.120 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-04-19T01:47:03.121 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:47:11.423 DEBUG:teuthology.orchestra.run.smithi097:> true 2024-04-19T01:47:12.056 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-19T01:47:12.056 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "6.9.0-0.rc2.1.el10.x86_64"... 2024-04-19T01:47:12.056 DEBUG:teuthology.orchestra.run.smithi097:> uname -r 2024-04-19T01:47:12.072 INFO:teuthology.orchestra.run.smithi097.stdout:6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:47:12.072 DEBUG:teuthology.task.kernel:current kernel version is 6.9.0-0.rc2.1.el10.x86_64 vs 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:47:12.072 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-19T01:47:12.072 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-19T01:47:13.073 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-19T01:47:13.073 DEBUG:teuthology.orchestra.run.smithi097:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-19T01:47:13.165 INFO:teuthology.orchestra.run.smithi097.stdout:ttyS1 2024-04-19T01:47:13.193 DEBUG:teuthology.parallel:result is None 2024-04-19T01:47:21.502 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.144 2024-04-19T01:47:25.484 DEBUG:teuthology.orchestra.remote:timed out 2024-04-19T01:47:33.504 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-04-19T01:47:33.504 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:47:37.484 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi196.front.sepia.ceph.com' 2024-04-19T01:47:37.485 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi196.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T01:47:37.881 DEBUG:teuthology.orchestra.run.smithi196:> true 2024-04-19T01:47:38.320 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi196.front.sepia.ceph.com' 2024-04-19T01:47:38.320 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "6.9.0-0.rc2.1.el10.x86_64"... 2024-04-19T01:47:38.321 DEBUG:teuthology.orchestra.run.smithi196:> uname -r 2024-04-19T01:47:38.337 INFO:teuthology.orchestra.run.smithi196.stdout:6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:47:38.337 DEBUG:teuthology.task.kernel:current kernel version is 6.9.0-0.rc2.1.el10.x86_64 vs 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:47:38.337 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-19T01:47:38.337 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-19T01:47:39.338 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-19T01:47:39.338 DEBUG:teuthology.orchestra.run.smithi196:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-19T01:47:39.451 INFO:teuthology.orchestra.run.smithi196.stdout:ttyS1 2024-04-19T01:47:39.486 DEBUG:teuthology.parallel:result is None 2024-04-19T01:47:44.165 DEBUG:teuthology.orchestra.run.smithi144:> true 2024-04-19T01:47:44.565 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-04-19T01:47:44.565 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "6.9.0-0.rc2.1.el10.x86_64"... 2024-04-19T01:47:44.565 DEBUG:teuthology.orchestra.run.smithi144:> uname -r 2024-04-19T01:47:44.580 INFO:teuthology.orchestra.run.smithi144.stdout:6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:47:44.580 DEBUG:teuthology.task.kernel:current kernel version is 6.9.0-0.rc2.1.el10.x86_64 vs 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T01:47:44.580 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-19T01:47:44.580 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-19T01:47:45.581 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-19T01:47:45.581 DEBUG:teuthology.orchestra.run.smithi144:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-19T01:47:45.638 INFO:teuthology.orchestra.run.smithi144.stdout:ttyS1 2024-04-19T01:47:45.675 DEBUG:teuthology.parallel:result is None 2024-04-19T01:47:45.675 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-19T01:47:45.682 INFO:teuthology.task.internal:Creating test directory... 2024-04-19T01:47:45.683 DEBUG:teuthology.orchestra.run.smithi097:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-19T01:47:45.686 DEBUG:teuthology.orchestra.run.smithi144:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-19T01:47:45.688 DEBUG:teuthology.orchestra.run.smithi196:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-19T01:47:45.707 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-19T01:47:45.713 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-19T01:47:45.720 INFO:teuthology.task.internal:Creating archive directory... 2024-04-19T01:47:45.720 DEBUG:teuthology.orchestra.run.smithi097:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-19T01:47:45.745 DEBUG:teuthology.orchestra.run.smithi144:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-19T01:47:45.747 DEBUG:teuthology.orchestra.run.smithi196:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-19T01:47:45.786 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-19T01:47:45.794 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-19T01:47:45.795 DEBUG:teuthology.orchestra.run.smithi097:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-19T01:47:45.817 DEBUG:teuthology.orchestra.run.smithi144:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-19T01:47:45.820 DEBUG:teuthology.orchestra.run.smithi196:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-19T01:47:45.849 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T01:47:45.861 INFO:teuthology.orchestra.run.smithi097.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T01:47:45.862 INFO:teuthology.orchestra.run.smithi196.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T01:47:45.863 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T01:47:45.876 INFO:teuthology.orchestra.run.smithi097.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T01:47:45.877 INFO:teuthology.orchestra.run.smithi196.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T01:47:45.879 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-19T01:47:45.885 INFO:teuthology.task.internal:Configuring sudo... 2024-04-19T01:47:45.886 DEBUG:teuthology.orchestra.run.smithi097:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-19T01:47:45.888 DEBUG:teuthology.orchestra.run.smithi144:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-19T01:47:45.911 DEBUG:teuthology.orchestra.run.smithi196:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-19T01:47:45.950 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-19T01:47:45.959 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-19T01:47:45.959 DEBUG:teuthology.orchestra.run.smithi097:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-19T01:47:45.962 DEBUG:teuthology.orchestra.run.smithi144:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-19T01:47:45.984 DEBUG:teuthology.orchestra.run.smithi196:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-19T01:47:46.007 DEBUG:teuthology.orchestra.run.smithi097:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T01:47:46.055 DEBUG:teuthology.orchestra.run.smithi097:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T01:47:46.144 DEBUG:teuthology.orchestra.run.smithi097:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T01:47:46.184 DEBUG:teuthology.orchestra.run.smithi097:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T01:47:46.232 DEBUG:teuthology.orchestra.run.smithi097:> set -ex 2024-04-19T01:47:46.232 DEBUG:teuthology.orchestra.run.smithi097:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-19T01:47:46.302 DEBUG:teuthology.orchestra.run.smithi144:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T01:47:46.342 DEBUG:teuthology.orchestra.run.smithi144:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T01:47:46.417 DEBUG:teuthology.orchestra.run.smithi144:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T01:47:46.453 DEBUG:teuthology.orchestra.run.smithi144:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T01:47:46.507 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-04-19T01:47:46.507 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-19T01:47:46.579 DEBUG:teuthology.orchestra.run.smithi196:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T01:47:46.619 DEBUG:teuthology.orchestra.run.smithi196:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T01:47:46.708 DEBUG:teuthology.orchestra.run.smithi196:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T01:47:46.750 DEBUG:teuthology.orchestra.run.smithi196:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T01:47:46.801 DEBUG:teuthology.orchestra.run.smithi196:> set -ex 2024-04-19T01:47:46.801 DEBUG:teuthology.orchestra.run.smithi196:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-19T01:47:46.871 DEBUG:teuthology.orchestra.run.smithi097:> sudo service rsyslog restart 2024-04-19T01:47:46.873 DEBUG:teuthology.orchestra.run.smithi144:> sudo service rsyslog restart 2024-04-19T01:47:46.875 DEBUG:teuthology.orchestra.run.smithi196:> sudo service rsyslog restart 2024-04-19T01:47:46.922 INFO:teuthology.orchestra.run.smithi097.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T01:47:46.940 INFO:teuthology.orchestra.run.smithi144.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T01:47:46.961 INFO:teuthology.orchestra.run.smithi196.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T01:47:47.428 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-19T01:47:47.435 INFO:teuthology.task.internal:Starting timer... 2024-04-19T01:47:47.436 INFO:teuthology.run_tasks:Running task pcp... 2024-04-19T01:47:47.445 INFO:teuthology.run_tasks:Running task selinux... 2024-04-19T01:47:47.454 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-19T01:47:47.454 DEBUG:teuthology.orchestra.run.smithi097:> sudo service auditd rotate 2024-04-19T01:47:47.539 INFO:teuthology.orchestra.run.smithi097.stdout:Rotating logs: 2024-04-19T01:47:47.541 DEBUG:teuthology.orchestra.run.smithi144:> sudo service auditd rotate 2024-04-19T01:47:47.609 INFO:teuthology.orchestra.run.smithi144.stdout:Rotating logs: 2024-04-19T01:47:47.611 DEBUG:teuthology.orchestra.run.smithi196:> sudo service auditd rotate 2024-04-19T01:47:47.688 INFO:teuthology.orchestra.run.smithi196.stdout:Rotating logs: 2024-04-19T01:47:47.691 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-19T01:47:47.691 DEBUG:teuthology.orchestra.run.smithi097:> /usr/sbin/getenforce 2024-04-19T01:47:47.714 INFO:teuthology.orchestra.run.smithi097.stdout:Permissive 2024-04-19T01:47:47.714 DEBUG:teuthology.orchestra.run.smithi144:> /usr/sbin/getenforce 2024-04-19T01:47:47.735 INFO:teuthology.orchestra.run.smithi144.stdout:Permissive 2024-04-19T01:47:47.735 DEBUG:teuthology.orchestra.run.smithi196:> /usr/sbin/getenforce 2024-04-19T01:47:47.756 INFO:teuthology.orchestra.run.smithi196.stdout:Permissive 2024-04-19T01:47:47.756 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi097.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi144.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi196.front.sepia.ceph.com': 'permissive'} 2024-04-19T01:47:47.756 DEBUG:teuthology.orchestra.run.smithi097:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T01:47:47.785 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:47:47.786 DEBUG:teuthology.orchestra.run.smithi144:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T01:47:47.815 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:47:47.816 DEBUG:teuthology.orchestra.run.smithi196:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T01:47:47.846 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:47:47.847 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-19T01:47:47.847 DEBUG:teuthology.orchestra.run.smithi097:> sudo /usr/sbin/setenforce permissive 2024-04-19T01:47:47.883 DEBUG:teuthology.orchestra.run.smithi144:> sudo /usr/sbin/setenforce permissive 2024-04-19T01:47:47.921 DEBUG:teuthology.orchestra.run.smithi196:> sudo /usr/sbin/setenforce permissive 2024-04-19T01:47:47.958 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-19T01:47:47.968 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-19T01:47:47.985 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-19T01:47:47.986 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi097.front.sepia.ceph.com,smithi144.front.sepia.ceph.com,smithi196.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-19T01:51:40.061 INFO:teuthology.task.ansible:Archiving ansible failure log at: /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725/ansible_failures.yaml 2024-04-19T01:51:40.064 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/__init__.py", line 123, in __enter__ self.begin() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 508, in begin super(CephLab, self).begin() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 342, in begin self.execute_playbook() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 374, in execute_playbook self._handle_failure(command, status) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 402, in _handle_failure raise AnsibleFailedError(failures) teuthology.exceptions.AnsibleFailedError: smithi097.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi144.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi196.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: [] 2024-04-19T01:51:40.312 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=1c589d75885a46e59606b9136f518309 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/__init__.py", line 123, in __enter__ self.begin() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 508, in begin super(CephLab, self).begin() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 342, in begin self.execute_playbook() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 374, in execute_playbook self._handle_failure(command, status) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 402, in _handle_failure raise AnsibleFailedError(failures) teuthology.exceptions.AnsibleFailedError: smithi097.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi144.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi196.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: [] 2024-04-19T01:51:40.314 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-19T01:51:40.324 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-19T01:51:40.324 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-19T01:51:40.332 DEBUG:teuthology.orchestra.run.smithi097:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-19T01:51:40.405 DEBUG:teuthology.orchestra.run.smithi144:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-19T01:51:40.473 DEBUG:teuthology.orchestra.run.smithi196:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-19T01:51:40.540 DEBUG:teuthology.orchestra.run.smithi097:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T01:51:40.574 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:51:40.575 DEBUG:teuthology.orchestra.run.smithi144:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T01:51:40.609 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:51:40.609 DEBUG:teuthology.orchestra.run.smithi196:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T01:51:40.642 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:51:40.643 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-19T01:51:40.652 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-19T01:51:40.732 INFO:teuthology.task.internal:Duration was 233.296068 seconds 2024-04-19T01:51:40.732 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-19T01:51:40.741 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-19T01:51:40.741 DEBUG:teuthology.orchestra.run.smithi097:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-19T01:51:40.744 DEBUG:teuthology.orchestra.run.smithi144:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-19T01:51:40.746 DEBUG:teuthology.orchestra.run.smithi196:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-19T01:51:40.792 INFO:teuthology.orchestra.run.smithi144.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T01:51:40.792 INFO:teuthology.orchestra.run.smithi097.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T01:51:40.795 INFO:teuthology.orchestra.run.smithi196.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T01:51:41.291 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-19T01:51:41.292 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi097.front.sepia.ceph.com 2024-04-19T01:51:41.292 DEBUG:teuthology.orchestra.run.smithi097:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-19T01:51:41.317 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi144.front.sepia.ceph.com 2024-04-19T01:51:41.318 DEBUG:teuthology.orchestra.run.smithi144:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-19T01:51:41.347 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi196.front.sepia.ceph.com 2024-04-19T01:51:41.347 DEBUG:teuthology.orchestra.run.smithi196:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-19T01:51:41.376 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-19T01:51:41.376 DEBUG:teuthology.orchestra.run.smithi097:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-19T01:51:41.379 DEBUG:teuthology.orchestra.run.smithi144:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-19T01:51:41.389 DEBUG:teuthology.orchestra.run.smithi196:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-19T01:51:41.448 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-19T01:51:41.448 DEBUG:teuthology.orchestra.run.smithi097:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-19T01:51:41.452 DEBUG:teuthology.orchestra.run.smithi144:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-19T01:51:41.460 DEBUG:teuthology.orchestra.run.smithi196:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-19T01:51:41.577 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-19T01:51:41.590 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-19T01:51:41.590 DEBUG:teuthology.orchestra.run.smithi097:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-19T01:51:41.620 DEBUG:teuthology.orchestra.run.smithi144:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-19T01:51:41.649 DEBUG:teuthology.orchestra.run.smithi196:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-19T01:51:41.678 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-19T01:51:41.688 DEBUG:teuthology.orchestra.run.smithi097:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-19T01:51:41.690 DEBUG:teuthology.orchestra.run.smithi144:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-19T01:51:41.692 DEBUG:teuthology.orchestra.run.smithi196:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-19T01:51:41.715 INFO:teuthology.orchestra.run.smithi097.stdout:kernel.core_pattern = core 2024-04-19T01:51:41.717 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern = core 2024-04-19T01:51:41.746 INFO:teuthology.orchestra.run.smithi196.stdout:kernel.core_pattern = core 2024-04-19T01:51:41.796 DEBUG:teuthology.orchestra.run.smithi097:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-19T01:51:41.811 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:51:41.811 DEBUG:teuthology.orchestra.run.smithi144:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-19T01:51:41.825 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:51:41.826 DEBUG:teuthology.orchestra.run.smithi196:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-19T01:51:41.850 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T01:51:41.851 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-19T01:51:41.860 INFO:teuthology.task.internal:Transferring archived files... 2024-04-19T01:51:41.861 DEBUG:teuthology.misc:Transferring archived files from smithi097:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725/remote/smithi097 2024-04-19T01:51:41.862 DEBUG:teuthology.orchestra.run.smithi097:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-19T01:51:41.917 DEBUG:teuthology.misc:Transferring archived files from smithi144:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725/remote/smithi144 2024-04-19T01:51:41.918 DEBUG:teuthology.orchestra.run.smithi144:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-19T01:51:41.965 DEBUG:teuthology.misc:Transferring archived files from smithi196:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725/remote/smithi196 2024-04-19T01:51:41.966 DEBUG:teuthology.orchestra.run.smithi196:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-19T01:51:42.019 INFO:teuthology.task.internal:Removing archive directory... 2024-04-19T01:51:42.020 DEBUG:teuthology.orchestra.run.smithi097:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-19T01:51:42.023 DEBUG:teuthology.orchestra.run.smithi144:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-19T01:51:42.025 DEBUG:teuthology.orchestra.run.smithi196:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-19T01:51:42.041 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-19T01:51:42.057 INFO:teuthology.task.internal:Not uploading archives. 2024-04-19T01:51:42.057 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-19T01:51:42.067 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-19T01:51:42.067 DEBUG:teuthology.orchestra.run.smithi097:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-19T01:51:42.078 DEBUG:teuthology.orchestra.run.smithi144:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-19T01:51:42.081 DEBUG:teuthology.orchestra.run.smithi196:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-19T01:51:42.091 INFO:teuthology.orchestra.run.smithi097.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 19 01:51 /home/ubuntu/cephtest 2024-04-19T01:51:42.094 INFO:teuthology.orchestra.run.smithi144.stdout: 265473 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 19 01:51 /home/ubuntu/cephtest 2024-04-19T01:51:42.096 INFO:teuthology.orchestra.run.smithi196.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 19 01:51 /home/ubuntu/cephtest 2024-04-19T01:51:42.098 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-19T01:51:42.108 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-19T01:51:42.129 INFO:teuthology.nuke:Checking targets against current locks 2024-04-19T01:51:42.156 DEBUG:teuthology.nuke:shortname: smithi097 2024-04-19T01:51:42.157 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T01:51:42.182 DEBUG:teuthology.nuke:shortname: smithi144 2024-04-19T01:51:42.182 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T01:51:42.190 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi097.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 01:39:19.628784', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFuqbDsS75UaaC/D2T5CVhqxA7pKDsYsL5+spG4HSOuTduTpi89v/hyXtF89W1qaPVG2rcOZl1O2byRFZkv/4rM='} 2024-04-19T01:51:42.210 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi144.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 01:39:19.628047', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMf7XsCVOdrxUwks6Zv4o5Qe9reShct7ZxwPDSWwfwsbi2DHOwYLpLD7E78adsdHZV3I/hXv4L1fjMmEXnF+D1Q='} 2024-04-19T01:51:42.216 DEBUG:teuthology.nuke:shortname: smithi196 2024-04-19T01:51:42.216 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T01:51:42.238 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi196.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-18_21:00:02-rados-squid-distro-default-smithi/7662725', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 01:39:19.627088', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG0diNgoissrey41eIgd8sWLv4sEFka6ZrV1wGugIEtByj7omeXgNDoARTI/Q8dQVi+KoRsFNrMiXvuVWgtEInI='} 2024-04-19T01:51:42.248 INFO:teuthology.orchestra.console.smithi097:Power off 2024-04-19T01:51:42.248 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-19T01:51:42.273 DEBUG:teuthology.orchestra.console.smithi097:power off output: Chassis Power Control: Down/Off 2024-04-19T01:51:42.274 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:42.295 INFO:teuthology.orchestra.console.smithi144:Power off 2024-04-19T01:51:42.295 DEBUG:teuthology.orchestra.console.smithi144:pexpect command: ipmitool -H smithi144.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-19T01:51:42.312 DEBUG:teuthology.orchestra.console.smithi097:check power output: Chassis Power is on 2024-04-19T01:51:42.328 DEBUG:teuthology.orchestra.console.smithi144:power off output: Chassis Power Control: Down/Off 2024-04-19T01:51:42.329 DEBUG:teuthology.orchestra.console.smithi144:pexpect command: ipmitool -H smithi144.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:42.351 INFO:teuthology.orchestra.console.smithi196:Power off 2024-04-19T01:51:42.352 DEBUG:teuthology.orchestra.console.smithi196:pexpect command: ipmitool -H smithi196.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-19T01:51:42.362 DEBUG:teuthology.orchestra.console.smithi144:check power output: Chassis Power is on 2024-04-19T01:51:42.375 DEBUG:teuthology.orchestra.console.smithi196:power off output: Chassis Power Control: Down/Off 2024-04-19T01:51:42.376 DEBUG:teuthology.orchestra.console.smithi196:pexpect command: ipmitool -H smithi196.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:42.404 DEBUG:teuthology.orchestra.console.smithi196:check power output: Chassis Power is on 2024-04-19T01:51:46.313 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:46.364 DEBUG:teuthology.orchestra.console.smithi144:pexpect command: ipmitool -H smithi144.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:46.406 DEBUG:teuthology.orchestra.console.smithi196:pexpect command: ipmitool -H smithi196.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:46.424 DEBUG:teuthology.orchestra.console.smithi097:check power output: Chassis Power is on 2024-04-19T01:51:46.475 DEBUG:teuthology.orchestra.console.smithi144:check power output: Chassis Power is on 2024-04-19T01:51:46.517 DEBUG:teuthology.orchestra.console.smithi196:check power output: Chassis Power is on 2024-04-19T01:51:50.426 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:50.476 DEBUG:teuthology.orchestra.console.smithi144:pexpect command: ipmitool -H smithi144.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:50.518 DEBUG:teuthology.orchestra.console.smithi196:pexpect command: ipmitool -H smithi196.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:50.538 DEBUG:teuthology.orchestra.console.smithi097:check power output: Chassis Power is off 2024-04-19T01:51:50.587 DEBUG:teuthology.orchestra.console.smithi144:check power output: Chassis Power is off 2024-04-19T01:51:50.627 DEBUG:teuthology.orchestra.console.smithi196:check power output: Chassis Power is on 2024-04-19T01:51:50.639 INFO:teuthology.orchestra.console.smithi097:Power off completed 2024-04-19T01:51:50.688 INFO:teuthology.orchestra.console.smithi144:Power off completed 2024-04-19T01:51:54.631 DEBUG:teuthology.orchestra.console.smithi196:pexpect command: ipmitool -H smithi196.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T01:51:54.746 DEBUG:teuthology.orchestra.console.smithi196:check power output: Chassis Power is off 2024-04-19T01:51:54.846 INFO:teuthology.orchestra.console.smithi196:Power off completed 2024-04-19T01:51:54.995 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/connectivity task/test_host_drain} duration: 233.29606819152832 failure_reason: 'smithi097.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi144.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi196.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=1c589d75885a46e59606b9136f518309 status: dead success: false 2024-04-19T01:51:54.996 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-19T01:51:55.067 INFO:teuthology.run:DEAD