2024-09-16T02:09:47.846 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-16T02:09:47.863 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T02:09:47.979 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-15_20:00:16-rados-main-distro-default-smithi/7905752 branch: main 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: '7905752' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-15_20:00:16-rados-main-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: main 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: fc3e0bff7468fd55478adbae7f75508b749124b6 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: fc3e0bff7468fd55478adbae7f75508b749124b6 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: main sha1: 7498493279982dfe87f00616198a5967475f6169 owner: scheduled_teuthology@teuthology priority: 101 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 2855 sha1: fc3e0bff7468fd55478adbae7f75508b749124b6 sleep_before_teardown: 0 subset: 17936/100000 suite: rados suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_7498493279982dfe87f00616198a5967475f6169/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 7498493279982dfe87f00616198a5967475f6169 targets: smithi028.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOeCsqY/jV+HJug0h302qbLCSiHDsjQPw3FxMsGRXZOwJr1G7LDX1OFt1ByieCRgLzN4OzQJMdZJRF/aOyiCAwA= smithi159.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEoKnC2N8XVkZ+5eJr9/t1Unq3undksO1jdbpf8mYLj6arEFLy7sTB14+Ynu7A/jNRPpjc35xXyxP0fIbpGA2LM= smithi179.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE9xLB++J7av9taxYgltoVZkDrxftgUvlw2NKB8hifmmvMlhYnAnkI2DYVmbcCkv4zYhz3EAZXDeV8fXIm6erwE= 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_20:00:16 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-16T02:09:47.979 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_7498493279982dfe87f00616198a5967475f6169/qa; will attempt to use it 2024-09-16T02:09:47.980 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_7498493279982dfe87f00616198a5967475f6169/qa/tasks 2024-09-16T02:09:47.980 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-16T02:09:47.982 INFO:teuthology.task.internal:Checking packages... 2024-09-16T02:09:48.004 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'fc3e0bff7468fd55478adbae7f75508b749124b6' 2024-09-16T02:09:48.004 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-16T02:09:48.004 INFO:teuthology.packaging:ref: None 2024-09-16T02:09:48.004 INFO:teuthology.packaging:tag: None 2024-09-16T02:09:48.004 INFO:teuthology.packaging:branch: main 2024-09-16T02:09:48.004 INFO:teuthology.packaging:sha1: fc3e0bff7468fd55478adbae7f75508b749124b6 2024-09-16T02:09:48.004 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2024-09-16T02:09:48.226 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4937.g74984932 2024-09-16T02:09:48.228 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-16T02:09:48.240 INFO:teuthology.task.internal:no buildpackages task found 2024-09-16T02:09:48.240 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-16T02:09:48.269 INFO:teuthology.task.internal:Saving configuration 2024-09-16T02:09:48.282 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-16T02:09:48.294 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-16T02:09:48.315 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi028.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_20:00:16-rados-main-distro-default-smithi/7905752', '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 02:04:47.934098', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOeCsqY/jV+HJug0h302qbLCSiHDsjQPw3FxMsGRXZOwJr1G7LDX1OFt1ByieCRgLzN4OzQJMdZJRF/aOyiCAwA='} 2024-09-16T02:09:48.336 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi159.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_20:00:16-rados-main-distro-default-smithi/7905752', '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 02:04:47.932611', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEoKnC2N8XVkZ+5eJr9/t1Unq3undksO1jdbpf8mYLj6arEFLy7sTB14+Ynu7A/jNRPpjc35xXyxP0fIbpGA2LM='} 2024-09-16T02:09:48.357 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi179.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_20:00:16-rados-main-distro-default-smithi/7905752', '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 02:04:47.935335', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE9xLB++J7av9taxYgltoVZkDrxftgUvlw2NKB8hifmmvMlhYnAnkI2DYVmbcCkv4zYhz3EAZXDeV8fXIm6erwE='} 2024-09-16T02:09:48.357 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-16T02:09:48.366 INFO:teuthology.task.internal:roles: ubuntu@smithi028.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-16T02:09:48.367 INFO:teuthology.task.internal:roles: ubuntu@smithi159.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-16T02:09:48.367 INFO:teuthology.task.internal:roles: ubuntu@smithi179.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-16T02:09:48.367 INFO:teuthology.run_tasks:Running task console_log... 2024-09-16T02:09:48.456 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f69f3ce7ac0>, signals=[15]) 2024-09-16T02:09:48.456 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-16T02:09:48.468 INFO:teuthology.task.internal:Opening connections... 2024-09-16T02:09:48.468 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi028.front.sepia.ceph.com 2024-09-16T02:09:48.470 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi028.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T02:09:48.546 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi159.front.sepia.ceph.com 2024-09-16T02:09:48.547 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi159.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T02:09:48.624 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi179.front.sepia.ceph.com 2024-09-16T02:09:48.624 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi179.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T02:09:48.699 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-16T02:09:48.711 DEBUG:teuthology.orchestra.run.smithi028:> uname -m 2024-09-16T02:09:48.729 INFO:teuthology.orchestra.run.smithi028.stdout:x86_64 2024-09-16T02:09:48.729 DEBUG:teuthology.orchestra.run.smithi028:> cat /etc/os-release 2024-09-16T02:09:48.788 INFO:teuthology.orchestra.run.smithi028.stdout:NAME="CentOS Stream" 2024-09-16T02:09:48.788 INFO:teuthology.orchestra.run.smithi028.stdout:VERSION="9" 2024-09-16T02:09:48.788 INFO:teuthology.orchestra.run.smithi028.stdout:ID="centos" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:ID_LIKE="rhel fedora" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:VERSION_ID="9" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:PLATFORM_ID="platform:el9" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:ANSI_COLOR="0;31" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:LOGO="fedora-logo-icon" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:HOME_URL="https://centos.org/" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-16T02:09:48.789 INFO:teuthology.orchestra.run.smithi028.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-16T02:09:48.790 INFO:teuthology.lock.ops:Updating smithi028.front.sepia.ceph.com on lock server 2024-09-16T02:09:48.822 DEBUG:teuthology.orchestra.run.smithi159:> uname -m 2024-09-16T02:09:48.840 INFO:teuthology.orchestra.run.smithi159.stdout:x86_64 2024-09-16T02:09:48.841 DEBUG:teuthology.orchestra.run.smithi159:> cat /etc/os-release 2024-09-16T02:09:48.899 INFO:teuthology.orchestra.run.smithi159.stdout:NAME="CentOS Stream" 2024-09-16T02:09:48.900 INFO:teuthology.orchestra.run.smithi159.stdout:VERSION="9" 2024-09-16T02:09:48.900 INFO:teuthology.orchestra.run.smithi159.stdout:ID="centos" 2024-09-16T02:09:48.900 INFO:teuthology.orchestra.run.smithi159.stdout:ID_LIKE="rhel fedora" 2024-09-16T02:09:48.900 INFO:teuthology.orchestra.run.smithi159.stdout:VERSION_ID="9" 2024-09-16T02:09:48.900 INFO:teuthology.orchestra.run.smithi159.stdout:PLATFORM_ID="platform:el9" 2024-09-16T02:09:48.900 INFO:teuthology.orchestra.run.smithi159.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-16T02:09:48.900 INFO:teuthology.orchestra.run.smithi159.stdout:ANSI_COLOR="0;31" 2024-09-16T02:09:48.900 INFO:teuthology.orchestra.run.smithi159.stdout:LOGO="fedora-logo-icon" 2024-09-16T02:09:48.901 INFO:teuthology.orchestra.run.smithi159.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-16T02:09:48.901 INFO:teuthology.orchestra.run.smithi159.stdout:HOME_URL="https://centos.org/" 2024-09-16T02:09:48.901 INFO:teuthology.orchestra.run.smithi159.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-16T02:09:48.901 INFO:teuthology.orchestra.run.smithi159.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-16T02:09:48.901 INFO:teuthology.orchestra.run.smithi159.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-16T02:09:48.901 INFO:teuthology.lock.ops:Updating smithi159.front.sepia.ceph.com on lock server 2024-09-16T02:09:48.930 DEBUG:teuthology.orchestra.run.smithi179:> uname -m 2024-09-16T02:09:48.948 INFO:teuthology.orchestra.run.smithi179.stdout:x86_64 2024-09-16T02:09:48.948 DEBUG:teuthology.orchestra.run.smithi179:> cat /etc/os-release 2024-09-16T02:09:49.006 INFO:teuthology.orchestra.run.smithi179.stdout:NAME="CentOS Stream" 2024-09-16T02:09:49.006 INFO:teuthology.orchestra.run.smithi179.stdout:VERSION="9" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:ID="centos" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:ID_LIKE="rhel fedora" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:VERSION_ID="9" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:PLATFORM_ID="platform:el9" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:ANSI_COLOR="0;31" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:LOGO="fedora-logo-icon" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:HOME_URL="https://centos.org/" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-16T02:09:49.007 INFO:teuthology.orchestra.run.smithi179.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-16T02:09:49.008 INFO:teuthology.lock.ops:Updating smithi179.front.sepia.ceph.com on lock server 2024-09-16T02:09:49.030 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-16T02:09:49.043 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-16T02:09:49.055 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-16T02:09:49.056 DEBUG:teuthology.orchestra.run.smithi028:> test '!' -e /home/ubuntu/cephtest 2024-09-16T02:09:49.058 DEBUG:teuthology.orchestra.run.smithi159:> test '!' -e /home/ubuntu/cephtest 2024-09-16T02:09:49.060 DEBUG:teuthology.orchestra.run.smithi179:> test '!' -e /home/ubuntu/cephtest 2024-09-16T02:09:49.076 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-16T02:09:49.087 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-16T02:09:49.088 DEBUG:teuthology.orchestra.run.smithi028:> test -z $(ls -A /var/lib/ceph) 2024-09-16T02:09:49.116 DEBUG:teuthology.orchestra.run.smithi159:> test -z $(ls -A /var/lib/ceph) 2024-09-16T02:09:49.118 DEBUG:teuthology.orchestra.run.smithi179:> test -z $(ls -A /var/lib/ceph) 2024-09-16T02:09:49.154 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-16T02:09:49.234 INFO:teuthology.run_tasks:Running task kernel... 2024-09-16T02:09:49.253 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-16T02:09:49.253 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-16T02:09:49.253 DEBUG:teuthology.orchestra.run.smithi028:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T02:09:49.254 DEBUG:teuthology.orchestra.run.smithi159:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T02:09:49.254 DEBUG:teuthology.orchestra.run.smithi179:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T02:09:49.271 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T02:09:49.272 DEBUG:teuthology.orchestra.run.smithi028:> uname -r 2024-09-16T02:09:49.273 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T02:09:49.273 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T02:09:49.273 DEBUG:teuthology.orchestra.run.smithi179:> uname -r 2024-09-16T02:09:49.274 DEBUG:teuthology.orchestra.run.smithi159:> uname -r 2024-09-16T02:09:49.330 INFO:teuthology.orchestra.run.smithi028.stdout:5.14.0-503.el9.x86_64 2024-09-16T02:09:49.330 INFO:teuthology.task.kernel:Running kernel on smithi028: 5.14.0-503.el9.x86_64 2024-09-16T02:09:49.330 DEBUG:teuthology.orchestra.run.smithi028:> sudo yum install -y kernel 2024-09-16T02:09:49.332 INFO:teuthology.orchestra.run.smithi159.stdout:5.14.0-503.el9.x86_64 2024-09-16T02:09:49.333 INFO:teuthology.task.kernel:Running kernel on smithi159: 5.14.0-503.el9.x86_64 2024-09-16T02:09:49.333 DEBUG:teuthology.orchestra.run.smithi159:> sudo yum install -y kernel 2024-09-16T02:09:49.334 INFO:teuthology.orchestra.run.smithi179.stdout:5.14.0-503.el9.x86_64 2024-09-16T02:09:49.334 INFO:teuthology.task.kernel:Running kernel on smithi179: 5.14.0-503.el9.x86_64 2024-09-16T02:09:49.335 DEBUG:teuthology.orchestra.run.smithi179:> sudo yum install -y kernel 2024-09-16T02:09:51.667 INFO:teuthology.orchestra.run.smithi028.stdout:CentOS Stream 9 - BaseOS 15 MB/s | 8.2 MB 00:00 2024-09-16T02:09:51.902 INFO:teuthology.orchestra.run.smithi179.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.2 MB 00:00 2024-09-16T02:09:53.460 INFO:teuthology.orchestra.run.smithi028.stdout:CentOS Stream 9 - AppStream 32 MB/s | 20 MB 00:00 2024-09-16T02:09:55.795 INFO:teuthology.orchestra.run.smithi159.stdout:CentOS Stream 9 - BaseOS 1.8 MB/s | 8.2 MB 00:04 2024-09-16T02:09:55.803 INFO:teuthology.orchestra.run.smithi179.stdout:CentOS Stream 9 - AppStream 7.3 MB/s | 20 MB 00:02 2024-09-16T02:09:57.513 INFO:teuthology.orchestra.run.smithi159.stdout:CentOS Stream 9 - AppStream 34 MB/s | 20 MB 00:00 2024-09-16T02:09:57.518 ERROR:paramiko.transport:Socket exception: Connection reset by peer (104) 2024-09-16T02:09:57.518 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T02:09:57.519 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-16T02:09:57.689 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=4648d8df8a0d485a86cf10cce51242a4 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-16T02:09:57.692 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-16T02:09:57.700 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-16T02:09:57.729 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=4648d8df8a0d485a86cf10cce51242a4 status: dead success: false 2024-09-16T02:09:57.729 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T02:09:57.826 INFO:teuthology.run:DEAD