2024-04-19T21:33:35.014 INFO:root:teuthology version: 0.0.1.dev269+g9481b1d 2024-04-19T21:33:35.014 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi --archive /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796 --owner scheduled_teuthology@teuthology --verbose --description orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} -- /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796/orig.config.yaml 2024-04-19T21:33:35.046 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-19T21:33:35.128 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796 branch: squid description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7663796' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-19_21:08:02-orch-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: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false 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: d0bf63dd179c05751e4be49477389aa290c73089 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: d0bf63dd179c05751e4be49477389aa290c73089 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: e02d68a84525e0fa855f080a47dd96b350c21c42 owner: scheduled_teuthology@teuthology priority: 100 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: 5868 sha1: d0bf63dd179c05751e4be49477389aa290c73089 sleep_before_teardown: 0 subset: 38/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_e02d68a84525e0fa855f080a47dd96b350c21c42/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: e02d68a84525e0fa855f080a47dd96b350c21c42 targets: smithi053.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKDcH92ET/UU39y+TiNBp9Ah12DWHftZY+9qNnKr/IFMs/9J0VCAAv8K4hdtWvCZPpgGIWAYxI8VqUeXD8jTR58= smithi060.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPSWSRdcJGKzGN7/zCSzE9J2+zayq1qGY8JHKnmtQXiD0cNj3Nl1b8PMjaNMYmrJy76u68KJPTyfijv09VE27mA= smithi191.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMdSiM+uUaXASwue64PvIZP9Puw7ThgXPV9Fb5TrmMOU4TJzT9g3P7kjHuX3OLL1h3iJStUbOnz0DIeXCp1i0js= tasks: - 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-19_21:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-19T21:33:35.128 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e02d68a84525e0fa855f080a47dd96b350c21c42/qa; will attempt to use it 2024-04-19T21:33:35.128 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e02d68a84525e0fa855f080a47dd96b350c21c42/qa/tasks 2024-04-19T21:33:35.129 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-19T21:33:35.130 INFO:teuthology.task.internal:Checking packages... 2024-04-19T21:33:35.154 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'd0bf63dd179c05751e4be49477389aa290c73089' 2024-04-19T21:33:35.154 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-19T21:33:35.155 INFO:teuthology.packaging:ref: None 2024-04-19T21:33:35.155 INFO:teuthology.packaging:tag: None 2024-04-19T21:33:35.155 INFO:teuthology.packaging:branch: squid 2024-04-19T21:33:35.155 INFO:teuthology.packaging:sha1: d0bf63dd179c05751e4be49477389aa290c73089 2024-04-19T21:33:35.155 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-19T21:33:35.438 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2401.gd0bf63dd 2024-04-19T21:33:35.440 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-19T21:33:35.446 INFO:teuthology.task.internal:no buildpackages task found 2024-04-19T21:33:35.447 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-19T21:33:35.516 INFO:teuthology.task.internal:Saving configuration 2024-04-19T21:33:35.529 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-19T21:33:35.599 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T21:33:35.625 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi053.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796', '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 21:27:16.974256', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKDcH92ET/UU39y+TiNBp9Ah12DWHftZY+9qNnKr/IFMs/9J0VCAAv8K4hdtWvCZPpgGIWAYxI8VqUeXD8jTR58='} 2024-04-19T21:33:35.647 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi060.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796', '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 21:27:16.973142', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPSWSRdcJGKzGN7/zCSzE9J2+zayq1qGY8JHKnmtQXiD0cNj3Nl1b8PMjaNMYmrJy76u68KJPTyfijv09VE27mA='} 2024-04-19T21:33:35.666 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi191.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796', '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 21:27:16.975191', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMdSiM+uUaXASwue64PvIZP9Puw7ThgXPV9Fb5TrmMOU4TJzT9g3P7kjHuX3OLL1h3iJStUbOnz0DIeXCp1i0js='} 2024-04-19T21:33:35.667 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-19T21:33:35.672 INFO:teuthology.task.internal:roles: ubuntu@smithi053.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-19T21:33:35.672 INFO:teuthology.task.internal:roles: ubuntu@smithi060.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-19T21:33:35.672 INFO:teuthology.task.internal:roles: ubuntu@smithi191.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-19T21:33:35.672 INFO:teuthology.run_tasks:Running task console_log... 2024-04-19T21:33:35.861 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f4a30337e50>, signals=[15]) 2024-04-19T21:33:35.861 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-19T21:33:35.867 INFO:teuthology.task.internal:Opening connections... 2024-04-19T21:33:35.867 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi053.front.sepia.ceph.com 2024-04-19T21:33:35.869 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:33:35.975 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi060.front.sepia.ceph.com 2024-04-19T21:33:35.976 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi060.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:33:36.077 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi191.front.sepia.ceph.com 2024-04-19T21:33:36.078 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:33:36.164 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-19T21:33:36.171 DEBUG:teuthology.orchestra.run.smithi053:> uname -m 2024-04-19T21:33:36.190 INFO:teuthology.orchestra.run.smithi053.stdout:x86_64 2024-04-19T21:33:36.190 DEBUG:teuthology.orchestra.run.smithi053:> cat /etc/os-release 2024-04-19T21:33:36.247 INFO:teuthology.orchestra.run.smithi053.stdout:NAME="CentOS Stream" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:VERSION="9" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:ID="centos" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:ID_LIKE="rhel fedora" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:VERSION_ID="9" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:PLATFORM_ID="platform:el9" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:ANSI_COLOR="0;31" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:LOGO="fedora-logo-icon" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:HOME_URL="https://centos.org/" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-19T21:33:36.248 INFO:teuthology.orchestra.run.smithi053.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-19T21:33:36.249 INFO:teuthology.lock.ops:Updating smithi053.front.sepia.ceph.com on lock server 2024-04-19T21:33:36.272 DEBUG:teuthology.orchestra.run.smithi060:> uname -m 2024-04-19T21:33:36.290 INFO:teuthology.orchestra.run.smithi060.stdout:x86_64 2024-04-19T21:33:36.290 DEBUG:teuthology.orchestra.run.smithi060:> cat /etc/os-release 2024-04-19T21:33:36.348 INFO:teuthology.orchestra.run.smithi060.stdout:NAME="CentOS Stream" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:VERSION="9" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:ID="centos" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:ID_LIKE="rhel fedora" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:VERSION_ID="9" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:PLATFORM_ID="platform:el9" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:ANSI_COLOR="0;31" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:LOGO="fedora-logo-icon" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:HOME_URL="https://centos.org/" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-19T21:33:36.349 INFO:teuthology.orchestra.run.smithi060.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-19T21:33:36.350 INFO:teuthology.orchestra.run.smithi060.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-19T21:33:36.350 INFO:teuthology.lock.ops:Updating smithi060.front.sepia.ceph.com on lock server 2024-04-19T21:33:36.372 DEBUG:teuthology.orchestra.run.smithi191:> uname -m 2024-04-19T21:33:36.390 INFO:teuthology.orchestra.run.smithi191.stdout:x86_64 2024-04-19T21:33:36.390 DEBUG:teuthology.orchestra.run.smithi191:> cat /etc/os-release 2024-04-19T21:33:36.447 INFO:teuthology.orchestra.run.smithi191.stdout:NAME="CentOS Stream" 2024-04-19T21:33:36.447 INFO:teuthology.orchestra.run.smithi191.stdout:VERSION="9" 2024-04-19T21:33:36.447 INFO:teuthology.orchestra.run.smithi191.stdout:ID="centos" 2024-04-19T21:33:36.447 INFO:teuthology.orchestra.run.smithi191.stdout:ID_LIKE="rhel fedora" 2024-04-19T21:33:36.447 INFO:teuthology.orchestra.run.smithi191.stdout:VERSION_ID="9" 2024-04-19T21:33:36.447 INFO:teuthology.orchestra.run.smithi191.stdout:PLATFORM_ID="platform:el9" 2024-04-19T21:33:36.447 INFO:teuthology.orchestra.run.smithi191.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-19T21:33:36.448 INFO:teuthology.orchestra.run.smithi191.stdout:ANSI_COLOR="0;31" 2024-04-19T21:33:36.448 INFO:teuthology.orchestra.run.smithi191.stdout:LOGO="fedora-logo-icon" 2024-04-19T21:33:36.448 INFO:teuthology.orchestra.run.smithi191.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-19T21:33:36.448 INFO:teuthology.orchestra.run.smithi191.stdout:HOME_URL="https://centos.org/" 2024-04-19T21:33:36.448 INFO:teuthology.orchestra.run.smithi191.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-19T21:33:36.448 INFO:teuthology.orchestra.run.smithi191.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-19T21:33:36.448 INFO:teuthology.orchestra.run.smithi191.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-19T21:33:36.448 INFO:teuthology.lock.ops:Updating smithi191.front.sepia.ceph.com on lock server 2024-04-19T21:33:36.472 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-19T21:33:36.481 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-19T21:33:36.583 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-19T21:33:36.584 DEBUG:teuthology.orchestra.run.smithi053:> test '!' -e /home/ubuntu/cephtest 2024-04-19T21:33:36.586 DEBUG:teuthology.orchestra.run.smithi060:> test '!' -e /home/ubuntu/cephtest 2024-04-19T21:33:36.589 DEBUG:teuthology.orchestra.run.smithi191:> test '!' -e /home/ubuntu/cephtest 2024-04-19T21:33:36.605 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-19T21:33:36.646 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-19T21:33:36.647 DEBUG:teuthology.orchestra.run.smithi053:> test -z $(ls -A /var/lib/ceph) 2024-04-19T21:33:36.649 DEBUG:teuthology.orchestra.run.smithi060:> test -z $(ls -A /var/lib/ceph) 2024-04-19T21:33:36.651 DEBUG:teuthology.orchestra.run.smithi191:> test -z $(ls -A /var/lib/ceph) 2024-04-19T21:33:36.674 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-19T21:33:36.756 INFO:teuthology.run_tasks:Running task kernel... 2024-04-19T21:33:36.891 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-19T21:33:36.891 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-19T21:33:36.892 DEBUG:teuthology.orchestra.run.smithi053:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-19T21:33:36.892 DEBUG:teuthology.orchestra.run.smithi060:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-19T21:33:36.893 DEBUG:teuthology.orchestra.run.smithi191:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-19T21:33:36.909 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:33:36.910 DEBUG:teuthology.orchestra.run.smithi191:> uname -r 2024-04-19T21:33:36.911 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:33:36.911 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:33:36.911 DEBUG:teuthology.orchestra.run.smithi060:> uname -r 2024-04-19T21:33:36.912 DEBUG:teuthology.orchestra.run.smithi053:> uname -r 2024-04-19T21:33:36.967 INFO:teuthology.orchestra.run.smithi191.stdout:5.14.0-361.el9.x86_64 2024-04-19T21:33:36.967 INFO:teuthology.task.kernel:Running kernel on smithi191: 5.14.0-361.el9.x86_64 2024-04-19T21:33:36.967 DEBUG:teuthology.orchestra.run.smithi191:> sudo yum install -y kernel 2024-04-19T21:33:36.969 INFO:teuthology.orchestra.run.smithi053.stdout:5.14.0-361.el9.x86_64 2024-04-19T21:33:36.969 INFO:teuthology.task.kernel:Running kernel on smithi053: 5.14.0-361.el9.x86_64 2024-04-19T21:33:36.969 DEBUG:teuthology.orchestra.run.smithi053:> sudo yum install -y kernel 2024-04-19T21:33:36.970 INFO:teuthology.orchestra.run.smithi060.stdout:5.14.0-361.el9.x86_64 2024-04-19T21:33:36.971 INFO:teuthology.task.kernel:Running kernel on smithi060: 5.14.0-361.el9.x86_64 2024-04-19T21:33:36.971 DEBUG:teuthology.orchestra.run.smithi060:> sudo yum install -y kernel 2024-04-19T21:33:39.107 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS-9 - AppStream 13 MB/s | 6.4 MB 00:00 2024-04-19T21:33:39.162 INFO:teuthology.orchestra.run.smithi060.stdout:CentOS-9 - AppStream 12 MB/s | 6.4 MB 00:00 2024-04-19T21:33:39.273 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS-9 - AppStream 12 MB/s | 6.4 MB 00:00 2024-04-19T21:33:40.562 INFO:teuthology.orchestra.run.smithi060.stdout:CentOS-9 - BaseOS 7.2 MB/s | 2.0 MB 00:00 2024-04-19T21:33:40.673 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS-9 - BaseOS 7.1 MB/s | 2.0 MB 00:00 2024-04-19T21:33:40.716 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS-9 - BaseOS 4.3 MB/s | 2.0 MB 00:00 2024-04-19T21:33:41.336 INFO:teuthology.orchestra.run.smithi060.stdout:CentOS Stream 9 - BaseOS 19 MB/s | 8.0 MB 00:00 2024-04-19T21:33:41.748 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - BaseOS 13 MB/s | 8.0 MB 00:00 2024-04-19T21:33:42.280 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS Stream 9 - BaseOS 6.5 MB/s | 8.0 MB 00:01 2024-04-19T21:33:43.346 INFO:teuthology.orchestra.run.smithi060.stdout:CentOS Stream 9 - AppStream 22 MB/s | 19 MB 00:00 2024-04-19T21:33:44.514 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS Stream 9 - AppStream 18 MB/s | 19 MB 00:01 2024-04-19T21:33:45.707 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - AppStream 6.7 MB/s | 19 MB 00:02 2024-04-19T21:33:51.108 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - CRB 3.4 MB/s | 6.2 MB 00:01 2024-04-19T21:33:51.298 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS Stream 9 - CRB 2.1 MB/s | 6.2 MB 00:03 2024-04-19T21:33:53.266 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS Stream 9 - Extras packages 24 kB/s | 16 kB 00:00 2024-04-19T21:33:53.617 INFO:teuthology.orchestra.run.smithi191.stdout:CentOS Stream 9 - Extras packages 12 kB/s | 16 kB 00:01 2024-04-19T21:33:55.338 INFO:teuthology.orchestra.run.smithi060.stdout:CentOS Stream 9 - CRB 767 kB/s | 6.2 MB 00:08 2024-04-19T21:33:55.402 INFO:teuthology.orchestra.run.smithi191.stdout:Extra Packages for Enterprise Linux 13 MB/s | 21 MB 00:01 2024-04-19T21:33:56.922 INFO:teuthology.orchestra.run.smithi060.stdout:CentOS Stream 9 - Extras packages 49 kB/s | 16 kB 00:00 2024-04-19T21:33:57.915 INFO:teuthology.orchestra.run.smithi060.stdout:Extra Packages for Enterprise Linux 25 MB/s | 21 MB 00:00 2024-04-19T21:33:57.945 INFO:teuthology.orchestra.run.smithi053.stdout:Extra Packages for Enterprise Linux 4.6 MB/s | 21 MB 00:04 2024-04-19T21:34:00.493 INFO:teuthology.orchestra.run.smithi191.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-04-19T21:34:02.950 INFO:teuthology.orchestra.run.smithi191.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-19T21:34:02.951 INFO:teuthology.orchestra.run.smithi191.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-19T21:34:03.060 INFO:teuthology.orchestra.run.smithi191.stdout:Dependencies resolved. 2024-04-19T21:34:03.064 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-19T21:34:03.064 INFO:teuthology.orchestra.run.smithi191.stdout: Package Arch Version Repository Size 2024-04-19T21:34:03.064 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-19T21:34:03.064 INFO:teuthology.orchestra.run.smithi191.stdout:Installing: 2024-04-19T21:34:03.064 INFO:teuthology.orchestra.run.smithi191.stdout: kernel x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 29 k 2024-04-19T21:34:03.064 INFO:teuthology.orchestra.run.smithi191.stdout:Installing dependencies: 2024-04-19T21:34:03.065 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 16 M 2024-04-19T21:34:03.065 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 34 M 2024-04-19T21:34:03.065 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 27 M 2024-04-19T21:34:03.065 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-19T21:34:03.065 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction Summary 2024-04-19T21:34:03.065 INFO:teuthology.orchestra.run.smithi191.stdout:================================================================================ 2024-04-19T21:34:03.065 INFO:teuthology.orchestra.run.smithi191.stdout:Install 4 Packages 2024-04-19T21:34:03.065 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-19T21:34:03.066 INFO:teuthology.orchestra.run.smithi191.stdout:Total download size: 78 M 2024-04-19T21:34:03.066 INFO:teuthology.orchestra.run.smithi191.stdout:Installed size: 125 M 2024-04-19T21:34:03.066 INFO:teuthology.orchestra.run.smithi191.stdout:Downloading Packages: 2024-04-19T21:34:03.228 INFO:teuthology.orchestra.run.smithi191.stdout:(1/4): kernel-6.9.0-0.rc2.1.el10.x86_64.rpm 177 kB/s | 29 kB 00:00 2024-04-19T21:34:03.267 INFO:teuthology.orchestra.run.smithi053.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-04-19T21:34:03.306 INFO:teuthology.orchestra.run.smithi060.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-04-19T21:34:05.840 INFO:teuthology.orchestra.run.smithi053.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-19T21:34:05.841 INFO:teuthology.orchestra.run.smithi053.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-19T21:34:05.889 INFO:teuthology.orchestra.run.smithi060.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-19T21:34:05.889 INFO:teuthology.orchestra.run.smithi060.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-19T21:34:05.911 INFO:teuthology.orchestra.run.smithi191.stdout:(2/4): kernel-core-6.9.0-0.rc2.1.el10.x86_64.rp 5.7 MB/s | 16 MB 00:02 2024-04-19T21:34:05.936 INFO:teuthology.orchestra.run.smithi053.stdout:Dependencies resolved. 2024-04-19T21:34:05.952 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-04-19T21:34:05.952 INFO:teuthology.orchestra.run.smithi053.stdout: Package Arch Version Repository Size 2024-04-19T21:34:05.952 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-04-19T21:34:05.952 INFO:teuthology.orchestra.run.smithi053.stdout:Installing: 2024-04-19T21:34:05.952 INFO:teuthology.orchestra.run.smithi053.stdout: kernel x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 29 k 2024-04-19T21:34:05.952 INFO:teuthology.orchestra.run.smithi053.stdout:Installing dependencies: 2024-04-19T21:34:05.952 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 16 M 2024-04-19T21:34:05.953 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-modules x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 34 M 2024-04-19T21:34:05.953 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-modules-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 27 M 2024-04-19T21:34:05.953 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-04-19T21:34:05.953 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction Summary 2024-04-19T21:34:05.953 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-04-19T21:34:05.953 INFO:teuthology.orchestra.run.smithi053.stdout:Install 4 Packages 2024-04-19T21:34:05.953 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-04-19T21:34:05.954 INFO:teuthology.orchestra.run.smithi053.stdout:Total download size: 78 M 2024-04-19T21:34:05.954 INFO:teuthology.orchestra.run.smithi053.stdout:Installed size: 125 M 2024-04-19T21:34:05.954 INFO:teuthology.orchestra.run.smithi053.stdout:Downloading Packages: 2024-04-19T21:34:05.990 INFO:teuthology.orchestra.run.smithi060.stdout:Dependencies resolved. 2024-04-19T21:34:06.002 INFO:teuthology.orchestra.run.smithi060.stdout:================================================================================ 2024-04-19T21:34:06.002 INFO:teuthology.orchestra.run.smithi060.stdout: Package Arch Version Repository Size 2024-04-19T21:34:06.002 INFO:teuthology.orchestra.run.smithi060.stdout:================================================================================ 2024-04-19T21:34:06.002 INFO:teuthology.orchestra.run.smithi060.stdout:Installing: 2024-04-19T21:34:06.002 INFO:teuthology.orchestra.run.smithi060.stdout: kernel x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 29 k 2024-04-19T21:34:06.002 INFO:teuthology.orchestra.run.smithi060.stdout:Installing dependencies: 2024-04-19T21:34:06.002 INFO:teuthology.orchestra.run.smithi060.stdout: kernel-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 16 M 2024-04-19T21:34:06.002 INFO:teuthology.orchestra.run.smithi060.stdout: kernel-modules x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 34 M 2024-04-19T21:34:06.003 INFO:teuthology.orchestra.run.smithi060.stdout: kernel-modules-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 27 M 2024-04-19T21:34:06.003 INFO:teuthology.orchestra.run.smithi060.stdout: 2024-04-19T21:34:06.003 INFO:teuthology.orchestra.run.smithi060.stdout:Transaction Summary 2024-04-19T21:34:06.003 INFO:teuthology.orchestra.run.smithi060.stdout:================================================================================ 2024-04-19T21:34:06.003 INFO:teuthology.orchestra.run.smithi060.stdout:Install 4 Packages 2024-04-19T21:34:06.003 INFO:teuthology.orchestra.run.smithi060.stdout: 2024-04-19T21:34:06.003 INFO:teuthology.orchestra.run.smithi060.stdout:Total download size: 78 M 2024-04-19T21:34:06.004 INFO:teuthology.orchestra.run.smithi060.stdout:Installed size: 125 M 2024-04-19T21:34:06.004 INFO:teuthology.orchestra.run.smithi060.stdout:Downloading Packages: 2024-04-19T21:34:06.208 INFO:teuthology.orchestra.run.smithi060.stdout:(1/4): kernel-6.9.0-0.rc2.1.el10.x86_64.rpm 140 kB/s | 29 kB 00:00 2024-04-19T21:34:06.218 INFO:teuthology.orchestra.run.smithi053.stdout:(1/4): kernel-6.9.0-0.rc2.1.el10.x86_64.rpm 108 kB/s | 29 kB 00:00 2024-04-19T21:34:07.451 INFO:teuthology.orchestra.run.smithi053.stdout:(2/4): kernel-core-6.9.0-0.rc2.1.el10.x86_64.rp 11 MB/s | 16 MB 00:01 2024-04-19T21:34:07.674 INFO:teuthology.orchestra.run.smithi060.stdout:(2/4): kernel-core-6.9.0-0.rc2.1.el10.x86_64.rp 9.7 MB/s | 16 MB 00:01 2024-04-19T21:34:07.711 INFO:teuthology.orchestra.run.smithi191.stdout:(3/4): kernel-modules-6.9.0-0.rc2.1.el10.x86_64 7.3 MB/s | 34 MB 00:04 2024-04-19T21:34:07.969 INFO:teuthology.orchestra.run.smithi191.stdout:(4/4): kernel-modules-core-6.9.0-0.rc2.1.el10.x 5.8 MB/s | 27 MB 00:04 2024-04-19T21:34:07.972 INFO:teuthology.orchestra.run.smithi191.stdout:-------------------------------------------------------------------------------- 2024-04-19T21:34:07.973 INFO:teuthology.orchestra.run.smithi191.stdout:Total 16 MB/s | 78 MB 00:04 2024-04-19T21:34:07.973 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction check 2024-04-19T21:34:08.091 INFO:teuthology.orchestra.run.smithi060.stdout:(3/4): kernel-modules-core-6.9.0-0.rc2.1.el10.x 15 MB/s | 27 MB 00:01 2024-04-19T21:34:08.285 INFO:teuthology.orchestra.run.smithi053.stdout:(3/4): kernel-modules-6.9.0-0.rc2.1.el10.x86_64 15 MB/s | 34 MB 00:02 2024-04-19T21:34:08.317 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction check succeeded. 2024-04-19T21:34:08.318 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction test 2024-04-19T21:34:08.742 INFO:teuthology.orchestra.run.smithi060.stdout:(4/4): kernel-modules-6.9.0-0.rc2.1.el10.x86_64 12 MB/s | 34 MB 00:02 2024-04-19T21:34:08.745 INFO:teuthology.orchestra.run.smithi060.stdout:-------------------------------------------------------------------------------- 2024-04-19T21:34:08.745 INFO:teuthology.orchestra.run.smithi060.stdout:Total 28 MB/s | 78 MB 00:02 2024-04-19T21:34:08.745 INFO:teuthology.orchestra.run.smithi060.stdout:Running transaction check 2024-04-19T21:34:08.768 INFO:teuthology.orchestra.run.smithi053.stdout:(4/4): kernel-modules-core-6.9.0-0.rc2.1.el10.x 11 MB/s | 27 MB 00:02 2024-04-19T21:34:08.772 INFO:teuthology.orchestra.run.smithi053.stdout:-------------------------------------------------------------------------------- 2024-04-19T21:34:08.772 INFO:teuthology.orchestra.run.smithi053.stdout:Total 28 MB/s | 78 MB 00:02 2024-04-19T21:34:08.772 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction check 2024-04-19T21:34:09.157 INFO:teuthology.orchestra.run.smithi191.stdout:Transaction test succeeded. 2024-04-19T21:34:09.157 INFO:teuthology.orchestra.run.smithi191.stdout:Running transaction 2024-04-19T21:34:09.211 INFO:teuthology.orchestra.run.smithi060.stdout:Transaction check succeeded. 2024-04-19T21:34:09.211 INFO:teuthology.orchestra.run.smithi060.stdout:Running transaction test 2024-04-19T21:34:09.218 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction check succeeded. 2024-04-19T21:34:09.218 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction test 2024-04-19T21:34:10.058 INFO:teuthology.orchestra.run.smithi060.stdout:Transaction test succeeded. 2024-04-19T21:34:10.059 INFO:teuthology.orchestra.run.smithi060.stdout:Running transaction 2024-04-19T21:34:10.110 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction test succeeded. 2024-04-19T21:34:10.110 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction 2024-04-19T21:34:11.343 INFO:teuthology.orchestra.run.smithi191.stdout: Preparing : 1/1 2024-04-19T21:34:11.982 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:34:12.078 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:12.394 INFO:teuthology.orchestra.run.smithi060.stdout: Preparing : 1/1 2024-04-19T21:34:12.447 INFO:teuthology.orchestra.run.smithi053.stdout: Preparing : 1/1 2024-04-19T21:34:13.056 INFO:teuthology.orchestra.run.smithi060.stdout: Installing : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:34:13.111 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:34:13.151 INFO:teuthology.orchestra.run.smithi060.stdout: Installing : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:13.210 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:14.380 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:14.520 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:15.608 INFO:teuthology.orchestra.run.smithi060.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:15.634 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:15.752 INFO:teuthology.orchestra.run.smithi060.stdout: Installing : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:15.777 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:19.313 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:19.459 INFO:teuthology.orchestra.run.smithi191.stdout: Installing : kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:20.920 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:20.926 INFO:teuthology.orchestra.run.smithi060.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:20.958 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:20.967 INFO:teuthology.orchestra.run.smithi060.stdout: Installing : kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:24.248 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:26.120 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:26.157 INFO:teuthology.orchestra.run.smithi060.stdout: Running scriptlet: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:53.859 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:53.860 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-19T21:34:53.860 INFO:teuthology.orchestra.run.smithi191.stdout:gzip: /lib/modules/6.9.0-0.rc2.1.el10.x86_64/symvers.xz: not in gzip format 2024-04-19T21:34:53.860 INFO:teuthology.orchestra.run.smithi191.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-19T21:34:53.860 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-19T21:34:53.902 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:54.245 INFO:teuthology.orchestra.run.smithi191.stdout: Running scriptlet: kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:54.245 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:34:54.245 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:54.246 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:54.693 INFO:teuthology.orchestra.run.smithi191.stdout: Verifying : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:54.694 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-19T21:34:54.694 INFO:teuthology.orchestra.run.smithi191.stdout:Installed: 2024-04-19T21:34:54.694 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:54.694 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:54.694 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:54.694 INFO:teuthology.orchestra.run.smithi191.stdout: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:54.694 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-19T21:34:54.694 INFO:teuthology.orchestra.run.smithi191.stdout:Complete! 2024-04-19T21:34:55.131 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:34:55.241 INFO:teuthology.orchestra.run.smithi191.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:55.241 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:55.242 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-19T21:34:55.242 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-19T21:34:55.242 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-19T21:34:55.242 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-19T21:34:55.242 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi191.front.sepia.ceph.com, path=None, version=distro) 2024-04-19T21:34:55.242 DEBUG:teuthology.orchestra.run.smithi191:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:34:55.321 INFO:teuthology.orchestra.run.smithi191.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:55.322 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:55.322 DEBUG:teuthology.orchestra.run.smithi191:> sudo rpm -qi grub2-tools 2024-04-19T21:34:55.356 INFO:teuthology.orchestra.run.smithi191.stdout:Name : grub2-tools 2024-04-19T21:34:55.356 INFO:teuthology.orchestra.run.smithi191.stdout:Epoch : 1 2024-04-19T21:34:55.356 INFO:teuthology.orchestra.run.smithi191.stdout:Version : 2.06 2024-04-19T21:34:55.356 INFO:teuthology.orchestra.run.smithi191.stdout:Release : 68.el9 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Architecture: x86_64 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Group : Unspecified 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Size : 8264254 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:License : GPLv3+ 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Packager : builder@centos.org 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Vendor : CentOS 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-19T21:34:55.357 INFO:teuthology.orchestra.run.smithi191.stdout:Summary : Support tools for GRUB. 2024-04-19T21:34:55.358 INFO:teuthology.orchestra.run.smithi191.stdout:Description : 2024-04-19T21:34:55.358 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-19T21:34:55.358 INFO:teuthology.orchestra.run.smithi191.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-19T21:34:55.358 INFO:teuthology.orchestra.run.smithi191.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-19T21:34:55.358 INFO:teuthology.orchestra.run.smithi191.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-19T21:34:55.358 INFO:teuthology.orchestra.run.smithi191.stdout:hardware devices. 2024-04-19T21:34:55.358 INFO:teuthology.orchestra.run.smithi191.stdout: 2024-04-19T21:34:55.358 INFO:teuthology.orchestra.run.smithi191.stdout:This subpackage provides tools for support of all platforms. 2024-04-19T21:34:55.359 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-19T21:34:55.359 INFO:teuthology.task.kernel:Updating grub on smithi191 to boot 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:55.359 DEBUG:teuthology.orchestra.run.smithi191:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-19T21:34:55.985 INFO:teuthology.orchestra.run.smithi191.stderr:Generating grub configuration file ... 2024-04-19T21:34:57.112 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:57.113 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-04-19T21:34:57.113 INFO:teuthology.orchestra.run.smithi053.stdout:gzip: /lib/modules/6.9.0-0.rc2.1.el10.x86_64/symvers.xz: not in gzip format 2024-04-19T21:34:57.113 INFO:teuthology.orchestra.run.smithi053.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-19T21:34:57.113 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-04-19T21:34:57.156 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:57.407 INFO:teuthology.orchestra.run.smithi191.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-19T21:34:57.436 INFO:teuthology.orchestra.run.smithi191.stderr:done 2024-04-19T21:34:57.439 DEBUG:teuthology.orchestra.run.smithi191:> mktemp 2024-04-19T21:34:57.443 INFO:teuthology.orchestra.run.smithi060.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:57.443 INFO:teuthology.orchestra.run.smithi060.stdout: 2024-04-19T21:34:57.443 INFO:teuthology.orchestra.run.smithi060.stdout:gzip: /lib/modules/6.9.0-0.rc2.1.el10.x86_64/symvers.xz: not in gzip format 2024-04-19T21:34:57.443 INFO:teuthology.orchestra.run.smithi060.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-19T21:34:57.444 INFO:teuthology.orchestra.run.smithi060.stdout: 2024-04-19T21:34:57.454 INFO:teuthology.orchestra.run.smithi191.stdout:/tmp/tmp.FCtHGkPOy7 2024-04-19T21:34:57.454 DEBUG:teuthology.orchestra.run.smithi191:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.FCtHGkPOy7 2024-04-19T21:34:57.491 INFO:teuthology.orchestra.run.smithi060.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:57.523 DEBUG:teuthology.orchestra.run.smithi191:> sudo chmod 0666 /tmp/tmp.FCtHGkPOy7 2024-04-19T21:34:57.551 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:57.551 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : kernel-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:34:57.551 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:57.551 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:57.662 DEBUG:teuthology.orchestra.remote:smithi191:/tmp/tmp.FCtHGkPOy7 is 6KB 2024-04-19T21:34:57.711 DEBUG:teuthology.orchestra.run.smithi191:> rm -fr /tmp/tmp.FCtHGkPOy7 2024-04-19T21:34:57.725 DEBUG:teuthology.orchestra.run.smithi191:> sudo /bin/ls /boot/loader/entries || true 2024-04-19T21:34:57.789 INFO:teuthology.orchestra.run.smithi191.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-19T21:34:57.790 INFO:teuthology.orchestra.run.smithi191.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-19T21:34:57.790 INFO:teuthology.orchestra.run.smithi191.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-19T21:34:57.790 INFO:teuthology.orchestra.run.smithi191.stdout:15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64.conf 2024-04-19T21:34:57.791 DEBUG:teuthology.orchestra.run.smithi191:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:57.836 INFO:teuthology.orchestra.run.smithi060.stdout: Running scriptlet: kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:57.836 INFO:teuthology.orchestra.run.smithi060.stdout: Verifying : kernel-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:34:57.836 INFO:teuthology.orchestra.run.smithi060.stdout: Verifying : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:34:57.836 INFO:teuthology.orchestra.run.smithi060.stdout: Verifying : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:34:57.943 DEBUG:teuthology.orchestra.run.smithi191:> sudo shutdown -r now 2024-04-19T21:34:57.994 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:57.994 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-04-19T21:34:57.994 INFO:teuthology.orchestra.run.smithi053.stdout:Installed: 2024-04-19T21:34:57.994 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:57.994 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:57.994 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:57.995 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:57.995 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-04-19T21:34:57.995 INFO:teuthology.orchestra.run.smithi053.stdout:Complete! 2024-04-19T21:34:58.270 INFO:teuthology.orchestra.run.smithi060.stdout: Verifying : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:34:58.271 INFO:teuthology.orchestra.run.smithi060.stdout: 2024-04-19T21:34:58.271 INFO:teuthology.orchestra.run.smithi060.stdout:Installed: 2024-04-19T21:34:58.271 INFO:teuthology.orchestra.run.smithi060.stdout: kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.271 INFO:teuthology.orchestra.run.smithi060.stdout: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.271 INFO:teuthology.orchestra.run.smithi060.stdout: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.271 INFO:teuthology.orchestra.run.smithi060.stdout: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.271 INFO:teuthology.orchestra.run.smithi060.stdout: 2024-04-19T21:34:58.271 INFO:teuthology.orchestra.run.smithi060.stdout:Complete! 2024-04-19T21:34:58.310 DEBUG:teuthology.orchestra.run.smithi053:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:34:58.410 INFO:teuthology.orchestra.run.smithi053.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.411 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.411 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-19T21:34:58.411 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-19T21:34:58.411 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-19T21:34:58.411 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-19T21:34:58.411 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi053.front.sepia.ceph.com, path=None, version=distro) 2024-04-19T21:34:58.412 DEBUG:teuthology.orchestra.run.smithi053:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:34:58.494 INFO:teuthology.orchestra.run.smithi053.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.494 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.494 DEBUG:teuthology.orchestra.run.smithi053:> sudo rpm -qi grub2-tools 2024-04-19T21:34:58.532 INFO:teuthology.orchestra.run.smithi053.stdout:Name : grub2-tools 2024-04-19T21:34:58.532 INFO:teuthology.orchestra.run.smithi053.stdout:Epoch : 1 2024-04-19T21:34:58.532 INFO:teuthology.orchestra.run.smithi053.stdout:Version : 2.06 2024-04-19T21:34:58.532 INFO:teuthology.orchestra.run.smithi053.stdout:Release : 68.el9 2024-04-19T21:34:58.532 INFO:teuthology.orchestra.run.smithi053.stdout:Architecture: x86_64 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:Group : Unspecified 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:Size : 8264254 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:License : GPLv3+ 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-19T21:34:58.533 INFO:teuthology.orchestra.run.smithi053.stdout:Packager : builder@centos.org 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout:Vendor : CentOS 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout:Summary : Support tools for GRUB. 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout:Description : 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-19T21:34:58.534 INFO:teuthology.orchestra.run.smithi053.stdout:hardware devices. 2024-04-19T21:34:58.535 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-04-19T21:34:58.535 INFO:teuthology.orchestra.run.smithi053.stdout:This subpackage provides tools for support of all platforms. 2024-04-19T21:34:58.535 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-19T21:34:58.536 INFO:teuthology.task.kernel:Updating grub on smithi053 to boot 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.536 DEBUG:teuthology.orchestra.run.smithi053:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-19T21:34:58.618 DEBUG:teuthology.orchestra.run.smithi060:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:34:58.718 INFO:teuthology.orchestra.run.smithi060.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.718 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.718 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-19T21:34:58.718 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-19T21:34:58.718 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-19T21:34:58.718 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-19T21:34:58.718 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi060.front.sepia.ceph.com, path=None, version=distro) 2024-04-19T21:34:58.719 DEBUG:teuthology.orchestra.run.smithi060:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:34:58.802 INFO:teuthology.orchestra.run.smithi060.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.802 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.802 DEBUG:teuthology.orchestra.run.smithi060:> sudo rpm -qi grub2-tools 2024-04-19T21:34:58.845 INFO:teuthology.orchestra.run.smithi060.stdout:Name : grub2-tools 2024-04-19T21:34:58.845 INFO:teuthology.orchestra.run.smithi060.stdout:Epoch : 1 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Version : 2.06 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Release : 68.el9 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Architecture: x86_64 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Group : Unspecified 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Size : 8264254 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:License : GPLv3+ 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-19T21:34:58.846 INFO:teuthology.orchestra.run.smithi060.stdout:Packager : builder@centos.org 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:Vendor : CentOS 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:Summary : Support tools for GRUB. 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:Description : 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout: 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:hardware devices. 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout: 2024-04-19T21:34:58.847 INFO:teuthology.orchestra.run.smithi060.stdout:This subpackage provides tools for support of all platforms. 2024-04-19T21:34:58.848 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-19T21:34:58.848 INFO:teuthology.task.kernel:Updating grub on smithi060 to boot 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:34:58.848 DEBUG:teuthology.orchestra.run.smithi060:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-19T21:34:59.171 INFO:teuthology.orchestra.run.smithi053.stderr:Generating grub configuration file ... 2024-04-19T21:34:59.442 INFO:teuthology.orchestra.run.smithi060.stderr:Generating grub configuration file ... 2024-04-19T21:35:00.619 INFO:teuthology.orchestra.run.smithi053.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-19T21:35:00.648 INFO:teuthology.orchestra.run.smithi053.stderr:done 2024-04-19T21:35:00.654 DEBUG:teuthology.orchestra.run.smithi053:> mktemp 2024-04-19T21:35:00.670 INFO:teuthology.orchestra.run.smithi053.stdout:/tmp/tmp.p15leS8YXb 2024-04-19T21:35:00.670 DEBUG:teuthology.orchestra.run.smithi053:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.p15leS8YXb 2024-04-19T21:35:00.741 DEBUG:teuthology.orchestra.run.smithi053:> sudo chmod 0666 /tmp/tmp.p15leS8YXb 2024-04-19T21:35:00.854 INFO:teuthology.orchestra.run.smithi060.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-19T21:35:00.882 DEBUG:teuthology.orchestra.remote:smithi053:/tmp/tmp.p15leS8YXb is 6KB 2024-04-19T21:35:00.893 INFO:teuthology.orchestra.run.smithi060.stderr:done 2024-04-19T21:35:00.896 DEBUG:teuthology.orchestra.run.smithi060:> mktemp 2024-04-19T21:35:00.911 INFO:teuthology.orchestra.run.smithi060.stdout:/tmp/tmp.nDvNI10OOz 2024-04-19T21:35:00.911 DEBUG:teuthology.orchestra.run.smithi060:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.nDvNI10OOz 2024-04-19T21:35:00.931 DEBUG:teuthology.orchestra.run.smithi053:> rm -fr /tmp/tmp.p15leS8YXb 2024-04-19T21:35:00.946 DEBUG:teuthology.orchestra.run.smithi053:> sudo /bin/ls /boot/loader/entries || true 2024-04-19T21:35:01.002 DEBUG:teuthology.orchestra.run.smithi060:> sudo chmod 0666 /tmp/tmp.nDvNI10OOz 2024-04-19T21:35:01.014 INFO:teuthology.orchestra.run.smithi053.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-19T21:35:01.014 INFO:teuthology.orchestra.run.smithi053.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-19T21:35:01.014 INFO:teuthology.orchestra.run.smithi053.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-19T21:35:01.014 INFO:teuthology.orchestra.run.smithi053.stdout:15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64.conf 2024-04-19T21:35:01.015 DEBUG:teuthology.orchestra.run.smithi053:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:35:01.108 DEBUG:teuthology.orchestra.remote:smithi060:/tmp/tmp.nDvNI10OOz is 6KB 2024-04-19T21:35:01.157 DEBUG:teuthology.orchestra.run.smithi060:> rm -fr /tmp/tmp.nDvNI10OOz 2024-04-19T21:35:01.172 DEBUG:teuthology.orchestra.run.smithi060:> sudo /bin/ls /boot/loader/entries || true 2024-04-19T21:35:01.175 DEBUG:teuthology.orchestra.run.smithi053:> sudo shutdown -r now 2024-04-19T21:35:01.241 INFO:teuthology.orchestra.run.smithi060.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-19T21:35:01.241 INFO:teuthology.orchestra.run.smithi060.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-19T21:35:01.241 INFO:teuthology.orchestra.run.smithi060.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-19T21:35:01.241 INFO:teuthology.orchestra.run.smithi060.stdout:15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64.conf 2024-04-19T21:35:01.243 DEBUG:teuthology.orchestra.run.smithi060:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:35:01.410 DEBUG:teuthology.orchestra.run.smithi060:> sudo shutdown -r now 2024-04-19T21:35:27.971 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-19T21:35:27.972 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-19T21:35:27.973 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:35:31.179 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-19T21:35:31.179 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-04-19T21:35:31.180 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:35:31.413 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-19T21:35:31.413 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi060.front.sepia.ceph.com' 2024-04-19T21:35:31.414 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi060.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:35:46.466 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.191 2024-04-19T21:35:49.534 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.53 2024-04-19T21:35:49.794 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.60 2024-04-19T21:35:55.470 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-19T21:35:55.471 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:35:58.526 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.191 2024-04-19T21:35:58.535 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-04-19T21:35:58.535 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:35:58.795 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi060.front.sepia.ceph.com' 2024-04-19T21:35:58.796 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi060.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:36:10.538 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-19T21:36:10.539 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi191.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:36:16.926 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.53 2024-04-19T21:36:28.936 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-04-19T21:36:28.938 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:36:29.325 DEBUG:teuthology.orchestra.run.smithi053:> true 2024-04-19T21:36:29.756 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-04-19T21:36:29.756 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "6.9.0-0.rc2.1.el10.x86_64"... 2024-04-19T21:36:29.756 DEBUG:teuthology.orchestra.run.smithi053:> uname -r 2024-04-19T21:36:29.771 INFO:teuthology.orchestra.run.smithi053.stdout:6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:36:29.772 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-19T21:36:29.772 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-19T21:36:29.772 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-19T21:36:30.773 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-19T21:36:30.773 DEBUG:teuthology.orchestra.run.smithi053:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-19T21:36:30.840 INFO:teuthology.orchestra.run.smithi053.stdout:ttyS1 2024-04-19T21:36:30.871 DEBUG:teuthology.parallel:result is None 2024-04-19T21:36:42.350 DEBUG:teuthology.orchestra.run.smithi191:> true 2024-04-19T21:36:42.791 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi191.front.sepia.ceph.com' 2024-04-19T21:36:42.791 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "6.9.0-0.rc2.1.el10.x86_64"... 2024-04-19T21:36:42.791 DEBUG:teuthology.orchestra.run.smithi191:> uname -r 2024-04-19T21:36:42.806 INFO:teuthology.orchestra.run.smithi191.stdout:6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:36:42.806 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-19T21:36:42.806 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-19T21:36:42.806 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-19T21:36:43.807 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-19T21:36:43.808 DEBUG:teuthology.orchestra.run.smithi191:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-19T21:36:43.872 INFO:teuthology.orchestra.run.smithi191.stdout:ttyS1 2024-04-19T21:36:43.927 DEBUG:teuthology.parallel:result is None 2024-04-19T21:36:58.797 DEBUG:teuthology.orchestra.remote:timed out 2024-04-19T21:37:10.799 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi060.front.sepia.ceph.com' 2024-04-19T21:37:10.800 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi060.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:37:11.123 DEBUG:teuthology.orchestra.run.smithi060:> true 2024-04-19T21:37:11.533 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi060.front.sepia.ceph.com' 2024-04-19T21:37:11.534 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "6.9.0-0.rc2.1.el10.x86_64"... 2024-04-19T21:37:11.534 DEBUG:teuthology.orchestra.run.smithi060:> uname -r 2024-04-19T21:37:11.551 INFO:teuthology.orchestra.run.smithi060.stdout:6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:37:11.552 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-19T21:37:11.552 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-19T21:37:11.552 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-19T21:37:12.553 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-19T21:37:12.553 DEBUG:teuthology.orchestra.run.smithi060:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-19T21:37:12.631 INFO:teuthology.orchestra.run.smithi060.stdout:ttyS1 2024-04-19T21:37:12.687 DEBUG:teuthology.parallel:result is None 2024-04-19T21:37:12.688 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-19T21:37:12.695 INFO:teuthology.task.internal:Creating test directory... 2024-04-19T21:37:12.695 DEBUG:teuthology.orchestra.run.smithi053:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-19T21:37:12.699 DEBUG:teuthology.orchestra.run.smithi060:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-19T21:37:12.702 DEBUG:teuthology.orchestra.run.smithi191:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-19T21:37:12.722 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-19T21:37:12.729 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-19T21:37:12.738 INFO:teuthology.task.internal:Creating archive directory... 2024-04-19T21:37:12.738 DEBUG:teuthology.orchestra.run.smithi053:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-19T21:37:12.759 DEBUG:teuthology.orchestra.run.smithi060:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-19T21:37:12.762 DEBUG:teuthology.orchestra.run.smithi191:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-19T21:37:13.076 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-19T21:37:13.083 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-19T21:37:13.084 DEBUG:teuthology.orchestra.run.smithi053:> 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-19T21:37:13.086 DEBUG:teuthology.orchestra.run.smithi060:> 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-19T21:37:13.089 DEBUG:teuthology.orchestra.run.smithi191:> 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-19T21:37:13.129 INFO:teuthology.orchestra.run.smithi053.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:37:13.130 INFO:teuthology.orchestra.run.smithi060.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:37:13.135 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:37:13.144 INFO:teuthology.orchestra.run.smithi060.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:37:13.144 INFO:teuthology.orchestra.run.smithi053.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:37:13.150 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:37:13.152 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-19T21:37:13.160 INFO:teuthology.task.internal:Configuring sudo... 2024-04-19T21:37:13.160 DEBUG:teuthology.orchestra.run.smithi053:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-19T21:37:13.162 DEBUG:teuthology.orchestra.run.smithi060:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-19T21:37:13.189 DEBUG:teuthology.orchestra.run.smithi191:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-19T21:37:13.223 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-19T21:37:13.237 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-19T21:37:13.237 DEBUG:teuthology.orchestra.run.smithi053:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-19T21:37:13.241 DEBUG:teuthology.orchestra.run.smithi060:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-19T21:37:13.261 DEBUG:teuthology.orchestra.run.smithi191:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-19T21:37:13.280 DEBUG:teuthology.orchestra.run.smithi053:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:37:13.338 DEBUG:teuthology.orchestra.run.smithi053:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:37:13.431 DEBUG:teuthology.orchestra.run.smithi053:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:37:13.468 DEBUG:teuthology.orchestra.run.smithi053:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:37:13.519 DEBUG:teuthology.orchestra.run.smithi053:> set -ex 2024-04-19T21:37:13.519 DEBUG:teuthology.orchestra.run.smithi053:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-19T21:37:13.588 DEBUG:teuthology.orchestra.run.smithi060:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:37:13.633 DEBUG:teuthology.orchestra.run.smithi060:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:37:13.713 DEBUG:teuthology.orchestra.run.smithi060:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:37:13.752 DEBUG:teuthology.orchestra.run.smithi060:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:37:13.804 DEBUG:teuthology.orchestra.run.smithi060:> set -ex 2024-04-19T21:37:13.804 DEBUG:teuthology.orchestra.run.smithi060:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-19T21:37:13.874 DEBUG:teuthology.orchestra.run.smithi191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:37:13.916 DEBUG:teuthology.orchestra.run.smithi191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:37:14.004 DEBUG:teuthology.orchestra.run.smithi191:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:37:14.049 DEBUG:teuthology.orchestra.run.smithi191:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:37:14.098 DEBUG:teuthology.orchestra.run.smithi191:> set -ex 2024-04-19T21:37:14.098 DEBUG:teuthology.orchestra.run.smithi191:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-19T21:37:14.170 DEBUG:teuthology.orchestra.run.smithi053:> sudo service rsyslog restart 2024-04-19T21:37:14.172 DEBUG:teuthology.orchestra.run.smithi060:> sudo service rsyslog restart 2024-04-19T21:37:14.175 DEBUG:teuthology.orchestra.run.smithi191:> sudo service rsyslog restart 2024-04-19T21:37:14.224 INFO:teuthology.orchestra.run.smithi060.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:37:14.229 INFO:teuthology.orchestra.run.smithi053.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:37:14.261 INFO:teuthology.orchestra.run.smithi191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:37:14.697 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-19T21:37:14.705 INFO:teuthology.task.internal:Starting timer... 2024-04-19T21:37:14.705 INFO:teuthology.run_tasks:Running task pcp... 2024-04-19T21:37:14.716 INFO:teuthology.run_tasks:Running task selinux... 2024-04-19T21:37:14.752 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-19T21:37:14.753 DEBUG:teuthology.orchestra.run.smithi053:> sudo service auditd rotate 2024-04-19T21:37:14.841 INFO:teuthology.orchestra.run.smithi053.stdout:Rotating logs: 2024-04-19T21:37:14.843 DEBUG:teuthology.orchestra.run.smithi060:> sudo service auditd rotate 2024-04-19T21:37:14.917 INFO:teuthology.orchestra.run.smithi060.stdout:Rotating logs: 2024-04-19T21:37:14.919 DEBUG:teuthology.orchestra.run.smithi191:> sudo service auditd rotate 2024-04-19T21:37:15.023 INFO:teuthology.orchestra.run.smithi191.stdout:Rotating logs: 2024-04-19T21:37:15.025 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-19T21:37:15.025 DEBUG:teuthology.orchestra.run.smithi053:> /usr/sbin/getenforce 2024-04-19T21:37:15.048 INFO:teuthology.orchestra.run.smithi053.stdout:Permissive 2024-04-19T21:37:15.049 DEBUG:teuthology.orchestra.run.smithi060:> /usr/sbin/getenforce 2024-04-19T21:37:15.070 INFO:teuthology.orchestra.run.smithi060.stdout:Permissive 2024-04-19T21:37:15.070 DEBUG:teuthology.orchestra.run.smithi191:> /usr/sbin/getenforce 2024-04-19T21:37:15.091 INFO:teuthology.orchestra.run.smithi191.stdout:Permissive 2024-04-19T21:37:15.091 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi053.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi060.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi191.front.sepia.ceph.com': 'permissive'} 2024-04-19T21:37:15.091 DEBUG:teuthology.orchestra.run.smithi053:> 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-19T21:37:15.121 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:37:15.121 DEBUG:teuthology.orchestra.run.smithi060:> 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-19T21:37:15.151 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:37:15.151 DEBUG:teuthology.orchestra.run.smithi191:> 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-19T21:37:15.181 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:37:15.181 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-19T21:37:15.182 DEBUG:teuthology.orchestra.run.smithi053:> sudo /usr/sbin/setenforce permissive 2024-04-19T21:37:15.217 DEBUG:teuthology.orchestra.run.smithi060:> sudo /usr/sbin/setenforce permissive 2024-04-19T21:37:15.255 DEBUG:teuthology.orchestra.run.smithi191:> sudo /usr/sbin/setenforce permissive 2024-04-19T21:37:15.291 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-19T21:37:15.301 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-19T21:37:15.321 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-19T21:37:15.322 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi053.front.sepia.ceph.com,smithi060.front.sepia.ceph.com,smithi191.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-19T21:41:03.385 INFO:teuthology.task.ansible:Archiving ansible failure log at: /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796/ansible_failures.yaml 2024-04-19T21:41:03.388 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: smithi191.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: []smithi053.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: []smithi060.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-19T21:41:03.633 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=2d58db948e3849f2b1d29cc5f0407e96 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: smithi191.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: []smithi053.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: []smithi060.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-19T21:41:03.635 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-19T21:41:03.645 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-19T21:41:03.645 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-19T21:41:03.652 DEBUG:teuthology.orchestra.run.smithi053:> 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-19T21:41:03.723 DEBUG:teuthology.orchestra.run.smithi060:> 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-19T21:41:03.790 DEBUG:teuthology.orchestra.run.smithi191:> 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-19T21:41:03.858 DEBUG:teuthology.orchestra.run.smithi053:> 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-19T21:41:03.892 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:41:03.892 DEBUG:teuthology.orchestra.run.smithi060:> 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-19T21:41:03.925 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:41:03.925 DEBUG:teuthology.orchestra.run.smithi191:> 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-19T21:41:03.959 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:41:03.960 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-19T21:41:03.968 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-19T21:41:03.976 INFO:teuthology.task.internal:Duration was 229.271199 seconds 2024-04-19T21:41:03.976 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-19T21:41:03.984 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-19T21:41:03.984 DEBUG:teuthology.orchestra.run.smithi053:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-19T21:41:03.987 DEBUG:teuthology.orchestra.run.smithi060:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-19T21:41:03.989 DEBUG:teuthology.orchestra.run.smithi191:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-19T21:41:04.034 INFO:teuthology.orchestra.run.smithi053.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:41:04.035 INFO:teuthology.orchestra.run.smithi060.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:41:04.048 INFO:teuthology.orchestra.run.smithi191.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:41:04.451 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-19T21:41:04.451 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi053.front.sepia.ceph.com 2024-04-19T21:41:04.452 DEBUG:teuthology.orchestra.run.smithi053:> 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-19T21:41:04.484 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi060.front.sepia.ceph.com 2024-04-19T21:41:04.484 DEBUG:teuthology.orchestra.run.smithi060:> 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-19T21:41:04.514 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi191.front.sepia.ceph.com 2024-04-19T21:41:04.514 DEBUG:teuthology.orchestra.run.smithi191:> 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-19T21:41:04.546 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-19T21:41:04.547 DEBUG:teuthology.orchestra.run.smithi053:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-19T21:41:04.550 DEBUG:teuthology.orchestra.run.smithi060:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-19T21:41:04.556 DEBUG:teuthology.orchestra.run.smithi191:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-19T21:41:04.620 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-19T21:41:04.620 DEBUG:teuthology.orchestra.run.smithi053:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-19T21:41:04.622 DEBUG:teuthology.orchestra.run.smithi060:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-19T21:41:04.627 DEBUG:teuthology.orchestra.run.smithi191:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-19T21:41:04.747 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-19T21:41:04.756 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-19T21:41:04.756 DEBUG:teuthology.orchestra.run.smithi053:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-19T21:41:04.785 DEBUG:teuthology.orchestra.run.smithi060:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-19T21:41:04.814 DEBUG:teuthology.orchestra.run.smithi191:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-19T21:41:04.843 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-19T21:41:04.853 DEBUG:teuthology.orchestra.run.smithi053:> 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-19T21:41:04.856 DEBUG:teuthology.orchestra.run.smithi060:> 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-19T21:41:04.858 DEBUG:teuthology.orchestra.run.smithi191:> 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-19T21:41:04.880 INFO:teuthology.orchestra.run.smithi053.stdout:kernel.core_pattern = core 2024-04-19T21:41:04.883 INFO:teuthology.orchestra.run.smithi060.stdout:kernel.core_pattern = core 2024-04-19T21:41:04.910 INFO:teuthology.orchestra.run.smithi191.stdout:kernel.core_pattern = core 2024-04-19T21:41:04.937 DEBUG:teuthology.orchestra.run.smithi053:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-19T21:41:04.965 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:41:04.965 DEBUG:teuthology.orchestra.run.smithi060:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-19T21:41:04.980 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:41:04.980 DEBUG:teuthology.orchestra.run.smithi191:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-19T21:41:04.995 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:41:04.995 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-19T21:41:05.004 INFO:teuthology.task.internal:Transferring archived files... 2024-04-19T21:41:05.006 DEBUG:teuthology.misc:Transferring archived files from smithi053:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796/remote/smithi053 2024-04-19T21:41:05.007 DEBUG:teuthology.orchestra.run.smithi053:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-19T21:41:05.058 DEBUG:teuthology.misc:Transferring archived files from smithi060:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796/remote/smithi060 2024-04-19T21:41:05.059 DEBUG:teuthology.orchestra.run.smithi060:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-19T21:41:05.139 DEBUG:teuthology.misc:Transferring archived files from smithi191:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796/remote/smithi191 2024-04-19T21:41:05.140 DEBUG:teuthology.orchestra.run.smithi191:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-19T21:41:05.183 INFO:teuthology.task.internal:Removing archive directory... 2024-04-19T21:41:05.183 DEBUG:teuthology.orchestra.run.smithi053:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-19T21:41:05.185 DEBUG:teuthology.orchestra.run.smithi060:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-19T21:41:05.188 DEBUG:teuthology.orchestra.run.smithi191:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-19T21:41:05.233 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-19T21:41:05.245 INFO:teuthology.task.internal:Not uploading archives. 2024-04-19T21:41:05.246 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-19T21:41:05.254 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-19T21:41:05.254 DEBUG:teuthology.orchestra.run.smithi053:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-19T21:41:05.257 DEBUG:teuthology.orchestra.run.smithi060:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-19T21:41:05.259 DEBUG:teuthology.orchestra.run.smithi191:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-19T21:41:05.269 INFO:teuthology.orchestra.run.smithi053.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 19 21:41 /home/ubuntu/cephtest 2024-04-19T21:41:05.272 INFO:teuthology.orchestra.run.smithi060.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 19 21:41 /home/ubuntu/cephtest 2024-04-19T21:41:05.289 INFO:teuthology.orchestra.run.smithi191.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 19 21:41 /home/ubuntu/cephtest 2024-04-19T21:41:05.290 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-19T21:41:05.300 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-19T21:41:05.345 INFO:teuthology.nuke:Checking targets against current locks 2024-04-19T21:41:05.372 DEBUG:teuthology.nuke:shortname: smithi053 2024-04-19T21:41:05.373 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T21:41:05.398 DEBUG:teuthology.nuke:shortname: smithi060 2024-04-19T21:41:05.398 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T21:41:05.404 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi053.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796', '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 21:27:16.974256', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKDcH92ET/UU39y+TiNBp9Ah12DWHftZY+9qNnKr/IFMs/9J0VCAAv8K4hdtWvCZPpgGIWAYxI8VqUeXD8jTR58='} 2024-04-19T21:41:05.423 DEBUG:teuthology.nuke:shortname: smithi191 2024-04-19T21:41:05.423 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T21:41:05.428 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi060.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796', '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 21:27:16.973142', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPSWSRdcJGKzGN7/zCSzE9J2+zayq1qGY8JHKnmtQXiD0cNj3Nl1b8PMjaNMYmrJy76u68KJPTyfijv09VE27mA='} 2024-04-19T21:41:05.446 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi191.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663796', '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 21:27:16.975191', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMdSiM+uUaXASwue64PvIZP9Puw7ThgXPV9Fb5TrmMOU4TJzT9g3P7kjHuX3OLL1h3iJStUbOnz0DIeXCp1i0js='} 2024-04-19T21:41:05.457 INFO:teuthology.orchestra.console.smithi053:Power off 2024-04-19T21:41:05.457 DEBUG:teuthology.orchestra.console.smithi053:pexpect command: ipmitool -H smithi053.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-19T21:41:05.484 DEBUG:teuthology.orchestra.console.smithi053:power off output: Chassis Power Control: Down/Off 2024-04-19T21:41:05.484 DEBUG:teuthology.orchestra.console.smithi053:pexpect command: ipmitool -H smithi053.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:05.500 INFO:teuthology.orchestra.console.smithi191:Power off 2024-04-19T21:41:05.500 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-19T21:41:05.515 INFO:teuthology.orchestra.console.smithi060:Power off 2024-04-19T21:41:05.515 DEBUG:teuthology.orchestra.console.smithi060:pexpect command: ipmitool -H smithi060.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-19T21:41:05.524 DEBUG:teuthology.orchestra.console.smithi053:check power output: Chassis Power is on 2024-04-19T21:41:05.524 DEBUG:teuthology.orchestra.console.smithi191:power off output: Chassis Power Control: Down/Off 2024-04-19T21:41:05.524 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:05.538 DEBUG:teuthology.orchestra.console.smithi060:power off output: Chassis Power Control: Down/Off 2024-04-19T21:41:05.538 DEBUG:teuthology.orchestra.console.smithi060:pexpect command: ipmitool -H smithi060.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:05.549 DEBUG:teuthology.orchestra.console.smithi191:check power output: Chassis Power is on 2024-04-19T21:41:05.562 DEBUG:teuthology.orchestra.console.smithi060:check power output: Chassis Power is on 2024-04-19T21:41:09.525 DEBUG:teuthology.orchestra.console.smithi053:pexpect command: ipmitool -H smithi053.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:09.550 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:09.563 DEBUG:teuthology.orchestra.console.smithi060:pexpect command: ipmitool -H smithi060.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:09.636 DEBUG:teuthology.orchestra.console.smithi053:check power output: Chassis Power is on 2024-04-19T21:41:09.661 DEBUG:teuthology.orchestra.console.smithi191:check power output: Chassis Power is on 2024-04-19T21:41:09.673 DEBUG:teuthology.orchestra.console.smithi060:check power output: Chassis Power is on 2024-04-19T21:41:13.638 DEBUG:teuthology.orchestra.console.smithi053:pexpect command: ipmitool -H smithi053.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:13.662 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:13.673 DEBUG:teuthology.orchestra.console.smithi060:pexpect command: ipmitool -H smithi060.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:13.750 DEBUG:teuthology.orchestra.console.smithi053:check power output: Chassis Power is off 2024-04-19T21:41:13.772 DEBUG:teuthology.orchestra.console.smithi191:check power output: Chassis Power is on 2024-04-19T21:41:13.783 DEBUG:teuthology.orchestra.console.smithi060:check power output: Chassis Power is off 2024-04-19T21:41:13.851 INFO:teuthology.orchestra.console.smithi053:Power off completed 2024-04-19T21:41:13.884 INFO:teuthology.orchestra.console.smithi060:Power off completed 2024-04-19T21:41:17.774 DEBUG:teuthology.orchestra.console.smithi191:pexpect command: ipmitool -H smithi191.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:41:17.888 DEBUG:teuthology.orchestra.console.smithi191:check power output: Chassis Power is off 2024-04-19T21:41:17.988 INFO:teuthology.orchestra.console.smithi191:Power off completed 2024-04-19T21:41:18.135 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 229.27119946479797 failure_reason: 'smithi191.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: []smithi053.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: []smithi060.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=2d58db948e3849f2b1d29cc5f0407e96 status: dead success: false 2024-04-19T21:41:18.135 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-19T21:41:18.223 INFO:teuthology.run:DEAD