2024-09-16T06:53:58.615 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-16T06:53:58.631 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T06:53:58.709 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906603 branch: reef description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/on mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7906603' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: reef ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: e4e227b37858f5109138494e01e5ba1ba7b8ffe8 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: e4e227b37858f5109138494e01e5ba1ba7b8ffe8 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: reef sha1: ae7f37330c1a72493684eb1fcaed6f2a01195bb6 owner: scheduled_teuthology@teuthology priority: 931 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: 1390 sha1: e4e227b37858f5109138494e01e5ba1ba7b8ffe8 sleep_before_teardown: 0 subset: 5319/100000 suite: rados suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_ae7f37330c1a72493684eb1fcaed6f2a01195bb6/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: ae7f37330c1a72493684eb1fcaed6f2a01195bb6 targets: smithi162.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBByWg11KkvClc9Fh7hAxhE1lrXiyc47UmDiEu8k+ZW7E7HyMBd0K4O16JKEQJ4aivfryJ0pu822gyLz8DwSuHz0= smithi179.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBH5AW56eFQZmCgMyrXC3M2xodiza4zgpcHTUNDCEUw8dluwO8Y/6+hvpZG4ml++vzyT/3RTX8zP4hpdlbJPxxzw= smithi183.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFodetDH3W69iSlcTiE8vpdDIN5y9K9g/0fcQl1Kn2NGAVbPcGHy5ht5FZJk+yzPnB4tVfzzjrWiiALC+bX0Sc0= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - 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: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-15_22:00:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-16T06:53:58.709 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_ae7f37330c1a72493684eb1fcaed6f2a01195bb6/qa; will attempt to use it 2024-09-16T06:53:58.710 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_ae7f37330c1a72493684eb1fcaed6f2a01195bb6/qa/tasks 2024-09-16T06:53:58.710 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-16T06:53:58.712 INFO:teuthology.task.internal:Checking packages... 2024-09-16T06:53:58.739 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'e4e227b37858f5109138494e01e5ba1ba7b8ffe8' 2024-09-16T06:53:58.739 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-16T06:53:58.739 INFO:teuthology.packaging:ref: None 2024-09-16T06:53:58.739 INFO:teuthology.packaging:tag: None 2024-09-16T06:53:58.740 INFO:teuthology.packaging:branch: reef 2024-09-16T06:53:58.740 INFO:teuthology.packaging:sha1: e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T06:53:58.740 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=reef 2024-09-16T06:53:58.970 INFO:teuthology.task.internal:Found packages for ceph version 18.2.4-853.gae7f3733 2024-09-16T06:53:58.972 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-16T06:53:58.979 INFO:teuthology.task.internal:no buildpackages task found 2024-09-16T06:53:58.979 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-16T06:53:58.996 INFO:teuthology.task.internal:Saving configuration 2024-09-16T06:53:59.009 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-16T06:53:59.016 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-16T06:53:59.036 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi162.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906603', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 06:48:12.754583', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBByWg11KkvClc9Fh7hAxhE1lrXiyc47UmDiEu8k+ZW7E7HyMBd0K4O16JKEQJ4aivfryJ0pu822gyLz8DwSuHz0='} 2024-09-16T06:53:59.052 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi179.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906603', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 06:48:12.755675', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBH5AW56eFQZmCgMyrXC3M2xodiza4zgpcHTUNDCEUw8dluwO8Y/6+hvpZG4ml++vzyT/3RTX8zP4hpdlbJPxxzw='} 2024-09-16T06:53:59.066 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi183.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906603', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 06:48:12.753338', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFodetDH3W69iSlcTiE8vpdDIN5y9K9g/0fcQl1Kn2NGAVbPcGHy5ht5FZJk+yzPnB4tVfzzjrWiiALC+bX0Sc0='} 2024-09-16T06:53:59.067 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-16T06:53:59.073 INFO:teuthology.task.internal:roles: ubuntu@smithi162.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-16T06:53:59.073 INFO:teuthology.task.internal:roles: ubuntu@smithi179.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-16T06:53:59.073 INFO:teuthology.task.internal:roles: ubuntu@smithi183.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-16T06:53:59.073 INFO:teuthology.run_tasks:Running task console_log... 2024-09-16T06:53:59.150 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f208775bac0>, signals=[15]) 2024-09-16T06:53:59.150 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-16T06:53:59.156 INFO:teuthology.task.internal:Opening connections... 2024-09-16T06:53:59.156 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi162.front.sepia.ceph.com 2024-09-16T06:53:59.160 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T06:53:59.235 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi179.front.sepia.ceph.com 2024-09-16T06:53:59.236 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi179.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T06:53:59.312 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi183.front.sepia.ceph.com 2024-09-16T06:53:59.313 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T06:53:59.391 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-16T06:53:59.398 DEBUG:teuthology.orchestra.run.smithi162:> uname -m 2024-09-16T06:53:59.418 INFO:teuthology.orchestra.run.smithi162.stdout:x86_64 2024-09-16T06:53:59.418 DEBUG:teuthology.orchestra.run.smithi162:> cat /etc/os-release 2024-09-16T06:53:59.476 INFO:teuthology.orchestra.run.smithi162.stdout:NAME="CentOS Stream" 2024-09-16T06:53:59.476 INFO:teuthology.orchestra.run.smithi162.stdout:VERSION="9" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:ID="centos" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:ID_LIKE="rhel fedora" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:VERSION_ID="9" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:PLATFORM_ID="platform:el9" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:ANSI_COLOR="0;31" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:LOGO="fedora-logo-icon" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:HOME_URL="https://centos.org/" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-16T06:53:59.477 INFO:teuthology.orchestra.run.smithi162.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-16T06:53:59.478 INFO:teuthology.lock.ops:Updating smithi162.front.sepia.ceph.com on lock server 2024-09-16T06:53:59.494 DEBUG:teuthology.orchestra.run.smithi179:> uname -m 2024-09-16T06:53:59.513 INFO:teuthology.orchestra.run.smithi179.stdout:x86_64 2024-09-16T06:53:59.513 DEBUG:teuthology.orchestra.run.smithi179:> cat /etc/os-release 2024-09-16T06:53:59.573 INFO:teuthology.orchestra.run.smithi179.stdout:NAME="CentOS Stream" 2024-09-16T06:53:59.573 INFO:teuthology.orchestra.run.smithi179.stdout:VERSION="9" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:ID="centos" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:ID_LIKE="rhel fedora" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:VERSION_ID="9" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:PLATFORM_ID="platform:el9" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:ANSI_COLOR="0;31" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:LOGO="fedora-logo-icon" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:HOME_URL="https://centos.org/" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-16T06:53:59.574 INFO:teuthology.orchestra.run.smithi179.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-16T06:53:59.575 INFO:teuthology.lock.ops:Updating smithi179.front.sepia.ceph.com on lock server 2024-09-16T06:53:59.594 DEBUG:teuthology.orchestra.run.smithi183:> uname -m 2024-09-16T06:53:59.613 INFO:teuthology.orchestra.run.smithi183.stdout:x86_64 2024-09-16T06:53:59.613 DEBUG:teuthology.orchestra.run.smithi183:> cat /etc/os-release 2024-09-16T06:53:59.672 INFO:teuthology.orchestra.run.smithi183.stdout:NAME="CentOS Stream" 2024-09-16T06:53:59.672 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION="9" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:ID="centos" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:ID_LIKE="rhel fedora" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION_ID="9" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:PLATFORM_ID="platform:el9" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:ANSI_COLOR="0;31" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:LOGO="fedora-logo-icon" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:HOME_URL="https://centos.org/" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-16T06:53:59.673 INFO:teuthology.orchestra.run.smithi183.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-16T06:53:59.674 INFO:teuthology.lock.ops:Updating smithi183.front.sepia.ceph.com on lock server 2024-09-16T06:53:59.694 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-16T06:53:59.703 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-16T06:53:59.739 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-16T06:53:59.739 DEBUG:teuthology.orchestra.run.smithi162:> test '!' -e /home/ubuntu/cephtest 2024-09-16T06:53:59.742 DEBUG:teuthology.orchestra.run.smithi179:> test '!' -e /home/ubuntu/cephtest 2024-09-16T06:53:59.744 DEBUG:teuthology.orchestra.run.smithi183:> test '!' -e /home/ubuntu/cephtest 2024-09-16T06:53:59.762 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-16T06:53:59.768 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-16T06:53:59.768 DEBUG:teuthology.orchestra.run.smithi162:> test -z $(ls -A /var/lib/ceph) 2024-09-16T06:53:59.800 DEBUG:teuthology.orchestra.run.smithi179:> test -z $(ls -A /var/lib/ceph) 2024-09-16T06:53:59.802 DEBUG:teuthology.orchestra.run.smithi183:> test -z $(ls -A /var/lib/ceph) 2024-09-16T06:53:59.904 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-16T06:53:59.972 INFO:teuthology.run_tasks:Running task kernel... 2024-09-16T06:53:59.987 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-16T06:53:59.987 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-09-16T06:53:59.987 DEBUG:teuthology.orchestra.run.smithi162:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T06:53:59.988 DEBUG:teuthology.orchestra.run.smithi179:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T06:53:59.988 DEBUG:teuthology.orchestra.run.smithi183:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T06:54:00.005 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T06:54:00.006 DEBUG:teuthology.orchestra.run.smithi179:> uname -r 2024-09-16T06:54:00.007 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T06:54:00.007 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T06:54:00.008 DEBUG:teuthology.orchestra.run.smithi183:> uname -r 2024-09-16T06:54:00.008 DEBUG:teuthology.orchestra.run.smithi162:> uname -r 2024-09-16T06:54:00.063 INFO:teuthology.orchestra.run.smithi179.stdout:5.14.0-503.el9.x86_64 2024-09-16T06:54:00.064 INFO:teuthology.task.kernel:Running kernel on smithi179: 5.14.0-503.el9.x86_64 2024-09-16T06:54:00.064 DEBUG:teuthology.orchestra.run.smithi179:> sudo yum install -y kernel 2024-09-16T06:54:00.065 INFO:teuthology.orchestra.run.smithi183.stdout:5.14.0-503.el9.x86_64 2024-09-16T06:54:00.065 INFO:teuthology.task.kernel:Running kernel on smithi183: 5.14.0-503.el9.x86_64 2024-09-16T06:54:00.065 DEBUG:teuthology.orchestra.run.smithi183:> sudo yum install -y kernel 2024-09-16T06:54:00.066 INFO:teuthology.orchestra.run.smithi162.stdout:5.14.0-503.el9.x86_64 2024-09-16T06:54:00.066 INFO:teuthology.task.kernel:Running kernel on smithi162: 5.14.0-503.el9.x86_64 2024-09-16T06:54:00.066 DEBUG:teuthology.orchestra.run.smithi162:> sudo yum install -y kernel 2024-09-16T06:54:02.444 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.2 MB 00:00 2024-09-16T06:54:02.539 INFO:teuthology.orchestra.run.smithi183.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.2 MB 00:00 2024-09-16T06:54:02.643 INFO:teuthology.orchestra.run.smithi179.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.2 MB 00:00 2024-09-16T06:54:04.524 INFO:teuthology.orchestra.run.smithi183.stdout:CentOS Stream 9 - AppStream 23 MB/s | 20 MB 00:00 2024-09-16T06:54:05.228 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS Stream 9 - AppStream 12 MB/s | 20 MB 00:01 2024-09-16T06:54:05.345 INFO:teuthology.orchestra.run.smithi179.stdout:CentOS Stream 9 - AppStream 13 MB/s | 20 MB 00:01 2024-09-16T06:54:09.745 INFO:teuthology.orchestra.run.smithi179.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.5 MB 00:00 2024-09-16T06:54:10.870 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS Stream 9 - CRB 3.6 MB/s | 6.5 MB 00:01 2024-09-16T06:54:11.337 INFO:teuthology.orchestra.run.smithi179.stdout:CentOS Stream 9 - Extras packages 47 kB/s | 19 kB 00:00 2024-09-16T06:54:12.366 INFO:teuthology.orchestra.run.smithi179.stdout:Extra Packages for Enterprise Linux 25 MB/s | 23 MB 00:00 2024-09-16T06:54:12.657 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS Stream 9 - Extras packages 42 kB/s | 19 kB 00:00 2024-09-16T06:54:13.541 INFO:teuthology.orchestra.run.smithi162.stdout:Extra Packages for Enterprise Linux 30 MB/s | 23 MB 00:00 2024-09-16T06:54:17.148 INFO:teuthology.orchestra.run.smithi183.stdout:CentOS Stream 9 - CRB 752 kB/s | 6.5 MB 00:08 2024-09-16T06:54:17.697 INFO:teuthology.orchestra.run.smithi179.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-09-16T06:54:19.005 INFO:teuthology.orchestra.run.smithi162.stdout:lab-extras 26 kB/s | 1.7 kB 00:00 2024-09-16T06:54:19.200 INFO:teuthology.orchestra.run.smithi183.stdout:CentOS Stream 9 - Extras packages 22 kB/s | 19 kB 00:00 2024-09-16T06:54:19.687 INFO:teuthology.orchestra.run.smithi179.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-16T06:54:19.687 INFO:teuthology.orchestra.run.smithi179.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-16T06:54:19.779 INFO:teuthology.orchestra.run.smithi179.stdout:Dependencies resolved. 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout:================================================================================ 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout: Package Architecture Version Repository Size 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout:================================================================================ 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout:Installing: 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout:Installing dependencies: 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout: 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction Summary 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout:================================================================================ 2024-09-16T06:54:19.787 INFO:teuthology.orchestra.run.smithi179.stdout:Install 4 Packages 2024-09-16T06:54:19.788 INFO:teuthology.orchestra.run.smithi179.stdout: 2024-09-16T06:54:19.788 INFO:teuthology.orchestra.run.smithi179.stdout:Total download size: 79 M 2024-09-16T06:54:19.788 INFO:teuthology.orchestra.run.smithi179.stdout:Installed size: 126 M 2024-09-16T06:54:19.788 INFO:teuthology.orchestra.run.smithi179.stdout:Downloading Packages: 2024-09-16T06:54:19.965 INFO:teuthology.orchestra.run.smithi179.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 317 kB/s | 23 kB 00:00 2024-09-16T06:54:20.086 INFO:teuthology.orchestra.run.smithi183.stdout:Extra Packages for Enterprise Linux 30 MB/s | 23 MB 00:00 2024-09-16T06:54:21.020 INFO:teuthology.orchestra.run.smithi162.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-16T06:54:21.020 INFO:teuthology.orchestra.run.smithi162.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-16T06:54:21.105 INFO:teuthology.orchestra.run.smithi162.stdout:Dependencies resolved. 2024-09-16T06:54:21.117 INFO:teuthology.orchestra.run.smithi162.stdout:================================================================================ 2024-09-16T06:54:21.117 INFO:teuthology.orchestra.run.smithi162.stdout: Package Architecture Version Repository Size 2024-09-16T06:54:21.117 INFO:teuthology.orchestra.run.smithi162.stdout:================================================================================ 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout:Installing: 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout:Installing dependencies: 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout:Transaction Summary 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout:================================================================================ 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout:Install 4 Packages 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout:Total download size: 79 M 2024-09-16T06:54:21.118 INFO:teuthology.orchestra.run.smithi162.stdout:Installed size: 126 M 2024-09-16T06:54:21.119 INFO:teuthology.orchestra.run.smithi162.stdout:Downloading Packages: 2024-09-16T06:54:21.332 INFO:teuthology.orchestra.run.smithi179.stdout:(2/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 24 MB/s | 35 MB 00:01 2024-09-16T06:54:21.464 INFO:teuthology.orchestra.run.smithi162.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 247 kB/s | 23 kB 00:00 2024-09-16T06:54:21.615 INFO:teuthology.orchestra.run.smithi179.stdout:(3/4): kernel-core-5.14.0-505.el9.x86_64.rpm 9.1 MB/s | 16 MB 00:01 2024-09-16T06:54:21.856 INFO:teuthology.orchestra.run.smithi162.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 32 MB/s | 16 MB 00:00 2024-09-16T06:54:22.041 INFO:teuthology.orchestra.run.smithi179.stdout:(4/4): kernel-modules-core-5.14.0-505.el9.x86_6 14 MB/s | 29 MB 00:02 2024-09-16T06:54:22.041 INFO:teuthology.orchestra.run.smithi179.stdout:-------------------------------------------------------------------------------- 2024-09-16T06:54:22.041 INFO:teuthology.orchestra.run.smithi179.stdout:Total 35 MB/s | 79 MB 00:02 2024-09-16T06:54:22.306 INFO:teuthology.orchestra.run.smithi162.stdout:(3/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 37 MB/s | 35 MB 00:00 2024-09-16T06:54:22.582 INFO:teuthology.orchestra.run.smithi162.stdout:(4/4): kernel-modules-core-5.14.0-505.el9.x86_6 26 MB/s | 29 MB 00:01 2024-09-16T06:54:22.582 INFO:teuthology.orchestra.run.smithi162.stdout:-------------------------------------------------------------------------------- 2024-09-16T06:54:22.582 INFO:teuthology.orchestra.run.smithi162.stdout:Total 54 MB/s | 79 MB 00:01 2024-09-16T06:54:22.717 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction check 2024-09-16T06:54:23.063 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction check succeeded. 2024-09-16T06:54:23.064 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction test 2024-09-16T06:54:23.264 INFO:teuthology.orchestra.run.smithi162.stdout:Running transaction check 2024-09-16T06:54:23.616 INFO:teuthology.orchestra.run.smithi162.stdout:Transaction check succeeded. 2024-09-16T06:54:23.616 INFO:teuthology.orchestra.run.smithi162.stdout:Running transaction test 2024-09-16T06:54:24.052 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction test succeeded. 2024-09-16T06:54:24.053 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction 2024-09-16T06:54:24.578 INFO:teuthology.orchestra.run.smithi162.stdout:Transaction test succeeded. 2024-09-16T06:54:24.579 INFO:teuthology.orchestra.run.smithi162.stdout:Running transaction 2024-09-16T06:54:25.467 INFO:teuthology.orchestra.run.smithi183.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-16T06:54:26.484 INFO:teuthology.orchestra.run.smithi179.stdout: Preparing : 1/1 2024-09-16T06:54:27.038 INFO:teuthology.orchestra.run.smithi162.stdout: Preparing : 1/1 2024-09-16T06:54:27.131 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-16T06:54:27.208 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-16T06:54:27.473 INFO:teuthology.orchestra.run.smithi183.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-16T06:54:27.473 INFO:teuthology.orchestra.run.smithi183.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-16T06:54:27.557 INFO:teuthology.orchestra.run.smithi183.stdout:Dependencies resolved. 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout: Package Architecture Version Repository Size 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout:Installing: 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout:Installing dependencies: 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-16T06:54:27.569 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-16T06:54:27.570 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-16T06:54:27.570 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction Summary 2024-09-16T06:54:27.570 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-16T06:54:27.570 INFO:teuthology.orchestra.run.smithi183.stdout:Install 4 Packages 2024-09-16T06:54:27.570 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-16T06:54:27.570 INFO:teuthology.orchestra.run.smithi183.stdout:Total download size: 79 M 2024-09-16T06:54:27.570 INFO:teuthology.orchestra.run.smithi183.stdout:Installed size: 126 M 2024-09-16T06:54:27.571 INFO:teuthology.orchestra.run.smithi183.stdout:Downloading Packages: 2024-09-16T06:54:27.756 INFO:teuthology.orchestra.run.smithi162.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-16T06:54:27.809 INFO:teuthology.orchestra.run.smithi183.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 197 kB/s | 23 kB 00:00 2024-09-16T06:54:27.856 INFO:teuthology.orchestra.run.smithi162.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-16T06:54:28.410 INFO:teuthology.orchestra.run.smithi183.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 22 MB/s | 16 MB 00:00 2024-09-16T06:54:29.118 INFO:teuthology.orchestra.run.smithi183.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 22 MB/s | 29 MB 00:01 2024-09-16T06:54:29.419 INFO:teuthology.orchestra.run.smithi183.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 20 MB/s | 35 MB 00:01 2024-09-16T06:54:29.419 INFO:teuthology.orchestra.run.smithi183.stdout:-------------------------------------------------------------------------------- 2024-09-16T06:54:29.419 INFO:teuthology.orchestra.run.smithi183.stdout:Total 43 MB/s | 79 MB 00:01 2024-09-16T06:54:29.981 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-16T06:54:30.097 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction check 2024-09-16T06:54:30.118 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-16T06:54:30.453 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction check succeeded. 2024-09-16T06:54:30.453 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction test 2024-09-16T06:54:30.649 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-16T06:54:30.790 INFO:teuthology.orchestra.run.smithi162.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-16T06:54:31.411 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction test succeeded. 2024-09-16T06:54:31.411 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction 2024-09-16T06:54:33.864 INFO:teuthology.orchestra.run.smithi183.stdout: Preparing : 1/1 2024-09-16T06:54:34.545 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-16T06:54:34.628 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-16T06:54:34.935 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-16T06:54:35.035 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-16T06:54:35.607 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-16T06:54:35.717 INFO:teuthology.orchestra.run.smithi162.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-16T06:54:37.411 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-16T06:54:37.545 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-16T06:54:39.872 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-16T06:54:40.559 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-16T06:54:42.383 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-16T06:54:42.470 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-16T06:54:46.327 ERROR:paramiko.transport:Socket exception: Connection reset by peer (104) 2024-09-16T06:54:46.328 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T06:54:46.328 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-16T06:54:46.329 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/task/kernel.py", line 1236, in task with parallel() as p: File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/task/kernel.py", line 1270, in process_role version = need_to_install_distro(role_remote, role_config) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/task/kernel.py", line 761, in need_to_install_distro install_stdout = remote.sh( File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 174, in _raise_for_status raise ConnectionLostError(command=self.command, teuthology.exceptions.ConnectionLostError: SSH connection to smithi179 was lost: 'sudo yum install -y kernel' 2024-09-16T06:54:46.514 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=2575e69ac0514f1dac4d25b94641465f Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/task/kernel.py", line 1236, in task with parallel() as p: File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/task/kernel.py", line 1270, in process_role version = need_to_install_distro(role_remote, role_config) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/task/kernel.py", line 761, in need_to_install_distro install_stdout = remote.sh( File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/orchestra/run.py", line 174, in _raise_for_status raise ConnectionLostError(command=self.command, teuthology.exceptions.ConnectionLostError: SSH connection to smithi179 was lost: 'sudo yum install -y kernel' 2024-09-16T06:54:46.517 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-16T06:54:46.525 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-16T06:54:46.608 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/on mon_election/classic task/test_host_drain} failure_reason: 'SSH connection to smithi179 was lost: ''sudo yum install -y kernel''' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=2575e69ac0514f1dac4d25b94641465f status: dead success: false 2024-09-16T06:54:46.608 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T06:54:46.702 INFO:teuthology.run:DEAD