2026-02-22T05:51:39.429 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-22T05:51:39.443 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-22T05:51:39.525 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial/63472 branch: wip-bharath9-testing-2026-02-21-2044-tentacle description: rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} email: skanta@redhat.com first_in_suite: false flavor: default job_id: '63472' kernel: branch: distro kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: trial name: skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial no_nested_subset: false os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-bharath9-testing-2026-02-21-2044-tentacle 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 - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 7b5cebfcf1ca6de8a0e819c6217fece9f535154a ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 7b5cebfcf1ca6de8a0e819c6217fece9f535154a workunit: branch: wip-bharath9-testing-2026-02-21-2044-tentacle sha1: 7b5cebfcf1ca6de8a0e819c6217fece9f535154a owner: scheduled_skanta@soko04.front.sepia.ceph.com priority: 60 repo: https://github.com/ceph/ceph-ci.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: 9352 sha1: 7b5cebfcf1ca6de8a0e819c6217fece9f535154a sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-bharath9-testing-2026-02-21-2044-tentacle suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_7b5cebfcf1ca6de8a0e819c6217fece9f535154a/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 7b5cebfcf1ca6de8a0e819c6217fece9f535154a targets: trial041.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLfK0Tj/vJekGBLbKtM+G1r7D6HFGE42ShssUV7G6C+Bn2Rud4lZTwkAhaX0ukT5BGGQgQabtJ13v5ecPFs2+XM= trial050.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPrfKY+xw3f9v7ivejVYj6p/idlbckycUtMi2KYALZMglWZauEulhK21Pq23nixOj2qWiZqk7m6KXN+mthcsHQU= trial189.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNjBBfzWCW0wlGa7ZZTFcw+ZEZqPHmVx6tRL3ulVgHUI7usVfzNKRfwMneXfdLtTr3EVAV2VCDwYZRUXHUez/4Q= 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: fa17720d0088c3ac28e473468bfc79eeaff5cd38 timestamp: 2026-02-22_05:22:34 tube: trial user: skanta verbose: true worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.1540699 2026-02-22T05:51:39.525 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_7b5cebfcf1ca6de8a0e819c6217fece9f535154a/qa; will attempt to use it 2026-02-22T05:51:39.525 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_7b5cebfcf1ca6de8a0e819c6217fece9f535154a/qa/tasks 2026-02-22T05:51:39.525 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-22T05:51:39.527 INFO:teuthology.task.internal:Checking packages... 2026-02-22T05:51:39.527 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '7b5cebfcf1ca6de8a0e819c6217fece9f535154a' 2026-02-22T05:51:39.527 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-22T05:51:39.527 INFO:teuthology.packaging:ref: None 2026-02-22T05:51:39.527 INFO:teuthology.packaging:tag: None 2026-02-22T05:51:39.527 INFO:teuthology.packaging:branch: wip-bharath9-testing-2026-02-21-2044-tentacle 2026-02-22T05:51:39.527 INFO:teuthology.packaging:sha1: 7b5cebfcf1ca6de8a0e819c6217fece9f535154a 2026-02-22T05:51:39.527 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-bharath9-testing-2026-02-21-2044-tentacle 2026-02-22T05:51:39.645 INFO:teuthology.task.internal:Found packages for ceph version 20.2.0-687-g7b5cebfc-1jammy 2026-02-22T05:51:39.646 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-22T05:51:39.661 INFO:teuthology.task.internal:no buildpackages task found 2026-02-22T05:51:39.661 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-22T05:51:39.675 INFO:teuthology.task.internal:Saving configuration 2026-02-22T05:51:39.685 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-22T05:51:39.697 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-22T05:51:39.777 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial041.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial/63472', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-22 05:47:10.700620', 'locked_by': 'scheduled_skanta@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICBFuFS/637woYtQZ8iD+vVlCJWpI1zzKn6l7471+ivW'} 2026-02-22T05:51:39.834 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial050.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial/63472', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-22 05:47:10.699635', 'locked_by': 'scheduled_skanta@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIByakUiHNyS9BCzj0hmVPdzS1Dp5rdpkYShLhe5Oov3v'} 2026-02-22T05:51:39.897 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial189.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial/63472', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-22 05:47:10.700222', 'locked_by': 'scheduled_skanta@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM7Gj+vIRvNreOAMMdvn5mtSEnrQP+78MBKgPyVr6ium'} 2026-02-22T05:51:39.897 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-22T05:51:39.908 INFO:teuthology.task.internal:roles: ubuntu@trial041.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2026-02-22T05:51:39.908 INFO:teuthology.task.internal:roles: ubuntu@trial050.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2026-02-22T05:51:39.908 INFO:teuthology.task.internal:roles: ubuntu@trial189.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2026-02-22T05:51:39.908 INFO:teuthology.run_tasks:Running task console_log... 2026-02-22T05:51:40.096 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x70fdbbb884a0>, signals=[15]) 2026-02-22T05:51:40.096 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-22T05:51:40.107 INFO:teuthology.task.internal:Opening connections... 2026-02-22T05:51:40.107 DEBUG:teuthology.task.internal:connecting to ubuntu@trial041.front.sepia.ceph.com 2026-02-22T05:51:40.108 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial041.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T05:51:40.171 DEBUG:teuthology.task.internal:connecting to ubuntu@trial050.front.sepia.ceph.com 2026-02-22T05:51:40.172 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T05:51:40.231 DEBUG:teuthology.task.internal:connecting to ubuntu@trial189.front.sepia.ceph.com 2026-02-22T05:51:40.231 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial189.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T05:51:40.292 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-22T05:51:40.303 DEBUG:teuthology.orchestra.run.trial041:> uname -m 2026-02-22T05:51:40.383 INFO:teuthology.orchestra.run.trial041.stdout:x86_64 2026-02-22T05:51:40.383 DEBUG:teuthology.orchestra.run.trial041:> cat /etc/os-release 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:PRETTY_NAME="Ubuntu 22.04.5 LTS" 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:NAME="Ubuntu" 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:VERSION_ID="22.04" 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:VERSION="22.04.5 LTS (Jammy Jellyfish)" 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:VERSION_CODENAME=jammy 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:ID=ubuntu 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:ID_LIKE=debian 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:HOME_URL="https://www.ubuntu.com/" 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2026-02-22T05:51:40.432 INFO:teuthology.orchestra.run.trial041.stdout:UBUNTU_CODENAME=jammy 2026-02-22T05:51:40.433 INFO:teuthology.lock.ops:Updating trial041.front.sepia.ceph.com on lock server 2026-02-22T05:51:40.512 DEBUG:teuthology.orchestra.run.trial050:> uname -m 2026-02-22T05:51:40.516 INFO:teuthology.orchestra.run.trial050.stdout:x86_64 2026-02-22T05:51:40.517 DEBUG:teuthology.orchestra.run.trial050:> cat /etc/os-release 2026-02-22T05:51:40.564 INFO:teuthology.orchestra.run.trial050.stdout:PRETTY_NAME="Ubuntu 22.04.5 LTS" 2026-02-22T05:51:40.564 INFO:teuthology.orchestra.run.trial050.stdout:NAME="Ubuntu" 2026-02-22T05:51:40.564 INFO:teuthology.orchestra.run.trial050.stdout:VERSION_ID="22.04" 2026-02-22T05:51:40.564 INFO:teuthology.orchestra.run.trial050.stdout:VERSION="22.04.5 LTS (Jammy Jellyfish)" 2026-02-22T05:51:40.564 INFO:teuthology.orchestra.run.trial050.stdout:VERSION_CODENAME=jammy 2026-02-22T05:51:40.564 INFO:teuthology.orchestra.run.trial050.stdout:ID=ubuntu 2026-02-22T05:51:40.564 INFO:teuthology.orchestra.run.trial050.stdout:ID_LIKE=debian 2026-02-22T05:51:40.564 INFO:teuthology.orchestra.run.trial050.stdout:HOME_URL="https://www.ubuntu.com/" 2026-02-22T05:51:40.565 INFO:teuthology.orchestra.run.trial050.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2026-02-22T05:51:40.565 INFO:teuthology.orchestra.run.trial050.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2026-02-22T05:51:40.565 INFO:teuthology.orchestra.run.trial050.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2026-02-22T05:51:40.565 INFO:teuthology.orchestra.run.trial050.stdout:UBUNTU_CODENAME=jammy 2026-02-22T05:51:40.565 INFO:teuthology.lock.ops:Updating trial050.front.sepia.ceph.com on lock server 2026-02-22T05:51:40.647 DEBUG:teuthology.orchestra.run.trial189:> uname -m 2026-02-22T05:51:40.651 INFO:teuthology.orchestra.run.trial189.stdout:x86_64 2026-02-22T05:51:40.651 DEBUG:teuthology.orchestra.run.trial189:> cat /etc/os-release 2026-02-22T05:51:40.696 INFO:teuthology.orchestra.run.trial189.stdout:PRETTY_NAME="Ubuntu 22.04.5 LTS" 2026-02-22T05:51:40.696 INFO:teuthology.orchestra.run.trial189.stdout:NAME="Ubuntu" 2026-02-22T05:51:40.696 INFO:teuthology.orchestra.run.trial189.stdout:VERSION_ID="22.04" 2026-02-22T05:51:40.696 INFO:teuthology.orchestra.run.trial189.stdout:VERSION="22.04.5 LTS (Jammy Jellyfish)" 2026-02-22T05:51:40.696 INFO:teuthology.orchestra.run.trial189.stdout:VERSION_CODENAME=jammy 2026-02-22T05:51:40.697 INFO:teuthology.orchestra.run.trial189.stdout:ID=ubuntu 2026-02-22T05:51:40.697 INFO:teuthology.orchestra.run.trial189.stdout:ID_LIKE=debian 2026-02-22T05:51:40.697 INFO:teuthology.orchestra.run.trial189.stdout:HOME_URL="https://www.ubuntu.com/" 2026-02-22T05:51:40.697 INFO:teuthology.orchestra.run.trial189.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2026-02-22T05:51:40.697 INFO:teuthology.orchestra.run.trial189.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2026-02-22T05:51:40.697 INFO:teuthology.orchestra.run.trial189.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2026-02-22T05:51:40.697 INFO:teuthology.orchestra.run.trial189.stdout:UBUNTU_CODENAME=jammy 2026-02-22T05:51:40.697 INFO:teuthology.lock.ops:Updating trial189.front.sepia.ceph.com on lock server 2026-02-22T05:51:40.772 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-22T05:51:40.784 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-22T05:51:40.795 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-22T05:51:40.796 DEBUG:teuthology.orchestra.run.trial041:> test '!' -e /home/ubuntu/cephtest 2026-02-22T05:51:40.797 DEBUG:teuthology.orchestra.run.trial050:> test '!' -e /home/ubuntu/cephtest 2026-02-22T05:51:40.798 DEBUG:teuthology.orchestra.run.trial189:> test '!' -e /home/ubuntu/cephtest 2026-02-22T05:51:40.801 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-22T05:51:40.812 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-22T05:51:40.812 DEBUG:teuthology.orchestra.run.trial041:> test -z $(ls -A /var/lib/ceph) 2026-02-22T05:51:40.841 DEBUG:teuthology.orchestra.run.trial050:> test -z $(ls -A /var/lib/ceph) 2026-02-22T05:51:40.844 INFO:teuthology.orchestra.run.trial041.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-02-22T05:51:40.849 DEBUG:teuthology.orchestra.run.trial189:> test -z $(ls -A /var/lib/ceph) 2026-02-22T05:51:40.852 INFO:teuthology.orchestra.run.trial050.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-02-22T05:51:40.853 INFO:teuthology.orchestra.run.trial189.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-02-22T05:51:40.854 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-22T05:51:41.057 INFO:teuthology.run_tasks:Running task kernel... 2026-02-22T05:51:41.075 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'} 2026-02-22T05:51:41.075 INFO:teuthology.task.kernel:config {'host.a': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}, 'host.b': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}, 'host.c': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}}, timeout 300 2026-02-22T05:51:41.076 DEBUG:teuthology.orchestra.run.trial041:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-22T05:51:41.076 DEBUG:teuthology.orchestra.run.trial050:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-22T05:51:41.076 DEBUG:teuthology.orchestra.run.trial189:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-22T05:51:41.079 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T05:51:41.079 DEBUG:teuthology.orchestra.run.trial041:> uname -r 2026-02-22T05:51:41.080 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T05:51:41.080 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T05:51:41.080 DEBUG:teuthology.orchestra.run.trial189:> uname -r 2026-02-22T05:51:41.080 DEBUG:teuthology.orchestra.run.trial050:> uname -r 2026-02-22T05:51:41.124 INFO:teuthology.orchestra.run.trial041.stdout:5.15.0-170-generic 2026-02-22T05:51:41.124 INFO:teuthology.task.kernel:Running kernel on trial041: 5.15.0-170-generic 2026-02-22T05:51:41.124 DEBUG:teuthology.orchestra.run.trial041:> sudo apt-get clean 2026-02-22T05:51:41.124 INFO:teuthology.orchestra.run.trial189.stdout:5.15.0-170-generic 2026-02-22T05:51:41.124 INFO:teuthology.task.kernel:Running kernel on trial189: 5.15.0-170-generic 2026-02-22T05:51:41.124 DEBUG:teuthology.orchestra.run.trial189:> sudo apt-get clean 2026-02-22T05:51:41.127 INFO:teuthology.orchestra.run.trial050.stdout:5.15.0-170-generic 2026-02-22T05:51:41.127 INFO:teuthology.task.kernel:Running kernel on trial050: 5.15.0-170-generic 2026-02-22T05:51:41.127 DEBUG:teuthology.orchestra.run.trial050:> sudo apt-get clean 2026-02-22T05:51:41.182 DEBUG:teuthology.orchestra.run.trial041:> sudo apt-get update 2026-02-22T05:51:41.183 DEBUG:teuthology.orchestra.run.trial189:> sudo apt-get update 2026-02-22T05:51:41.184 DEBUG:teuthology.orchestra.run.trial050:> sudo apt-get update 2026-02-22T05:51:41.366 INFO:teuthology.orchestra.run.trial050.stdout:Hit:1 https://archive.ubuntu.com/ubuntu jammy InRelease 2026-02-22T05:51:41.369 INFO:teuthology.orchestra.run.trial189.stdout:Hit:1 https://archive.ubuntu.com/ubuntu jammy InRelease 2026-02-22T05:51:41.374 INFO:teuthology.orchestra.run.trial050.stdout:Get:2 https://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2026-02-22T05:51:41.376 INFO:teuthology.orchestra.run.trial189.stdout:Get:2 https://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2026-02-22T05:51:41.412 INFO:teuthology.orchestra.run.trial050.stdout:Get:3 https://archive.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2026-02-22T05:51:41.415 INFO:teuthology.orchestra.run.trial189.stdout:Get:3 https://archive.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2026-02-22T05:51:41.428 INFO:teuthology.orchestra.run.trial050.stdout:Get:4 https://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2026-02-22T05:51:41.431 INFO:teuthology.orchestra.run.trial189.stdout:Get:4 https://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2026-02-22T05:51:41.510 INFO:teuthology.orchestra.run.trial189.stdout:Get:5 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] 2026-02-22T05:51:41.511 INFO:teuthology.orchestra.run.trial050.stdout:Get:5 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] 2026-02-22T05:51:41.576 INFO:teuthology.orchestra.run.trial050.stdout:Get:6 https://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [495 kB] 2026-02-22T05:51:41.577 INFO:teuthology.orchestra.run.trial189.stdout:Get:6 https://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [495 kB] 2026-02-22T05:51:41.579 INFO:teuthology.orchestra.run.trial050.stdout:Get:7 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [19.1 kB] 2026-02-22T05:51:41.580 INFO:teuthology.orchestra.run.trial189.stdout:Get:7 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [19.1 kB] 2026-02-22T05:51:41.580 INFO:teuthology.orchestra.run.trial050.stdout:Get:8 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1256 kB] 2026-02-22T05:51:41.580 INFO:teuthology.orchestra.run.trial189.stdout:Get:8 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1256 kB] 2026-02-22T05:51:41.587 INFO:teuthology.orchestra.run.trial050.stdout:Get:9 https://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [314 kB] 2026-02-22T05:51:41.587 INFO:teuthology.orchestra.run.trial189.stdout:Get:9 https://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [314 kB] 2026-02-22T05:51:41.589 INFO:teuthology.orchestra.run.trial050.stdout:Get:10 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [30.3 kB] 2026-02-22T05:51:41.589 INFO:teuthology.orchestra.run.trial050.stdout:Get:11 https://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [5310 kB] 2026-02-22T05:51:41.590 INFO:teuthology.orchestra.run.trial189.stdout:Get:10 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [30.3 kB] 2026-02-22T05:51:41.590 INFO:teuthology.orchestra.run.trial189.stdout:Get:11 https://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [5310 kB] 2026-02-22T05:51:41.616 INFO:teuthology.orchestra.run.trial050.stdout:Get:12 https://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [1005 kB] 2026-02-22T05:51:41.619 INFO:teuthology.orchestra.run.trial050.stdout:Get:13 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2983 kB] 2026-02-22T05:51:41.620 INFO:teuthology.orchestra.run.trial189.stdout:Get:12 https://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [1005 kB] 2026-02-22T05:51:41.620 INFO:teuthology.orchestra.run.trial189.stdout:Get:13 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2983 kB] 2026-02-22T05:51:41.629 INFO:teuthology.orchestra.run.trial050.stdout:Get:14 https://archive.ubuntu.com/ubuntu jammy-security/main Translation-en [427 kB] 2026-02-22T05:51:41.633 INFO:teuthology.orchestra.run.trial050.stdout:Get:15 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [14.1 kB] 2026-02-22T05:51:41.633 INFO:teuthology.orchestra.run.trial050.stdout:Get:16 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1018 kB] 2026-02-22T05:51:41.634 INFO:teuthology.orchestra.run.trial050.stdout:Get:17 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [22.7 kB] 2026-02-22T05:51:41.634 INFO:teuthology.orchestra.run.trial050.stdout:Get:18 https://archive.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [5147 kB] 2026-02-22T05:51:41.637 INFO:teuthology.orchestra.run.trial189.stdout:Get:14 https://archive.ubuntu.com/ubuntu jammy-security/main Translation-en [427 kB] 2026-02-22T05:51:41.639 INFO:teuthology.orchestra.run.trial189.stdout:Get:15 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [14.1 kB] 2026-02-22T05:51:41.639 INFO:teuthology.orchestra.run.trial189.stdout:Get:16 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1018 kB] 2026-02-22T05:51:41.643 INFO:teuthology.orchestra.run.trial189.stdout:Get:17 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [22.7 kB] 2026-02-22T05:51:41.643 INFO:teuthology.orchestra.run.trial189.stdout:Get:18 https://archive.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [5147 kB] 2026-02-22T05:51:41.652 INFO:teuthology.orchestra.run.trial050.stdout:Get:19 https://archive.ubuntu.com/ubuntu jammy-security/restricted Translation-en [979 kB] 2026-02-22T05:51:41.663 INFO:teuthology.orchestra.run.trial189.stdout:Get:19 https://archive.ubuntu.com/ubuntu jammy-security/restricted Translation-en [979 kB] 2026-02-22T05:51:41.693 INFO:teuthology.orchestra.run.trial041.stdout:Hit:1 https://archive.ubuntu.com/ubuntu jammy InRelease 2026-02-22T05:51:41.786 INFO:teuthology.orchestra.run.trial041.stdout:Get:2 https://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2026-02-22T05:51:42.137 INFO:teuthology.orchestra.run.trial041.stdout:Get:3 https://archive.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2026-02-22T05:51:42.291 INFO:teuthology.orchestra.run.trial041.stdout:Get:4 https://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2026-02-22T05:51:42.436 INFO:teuthology.orchestra.run.trial041.stdout:Get:5 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] 2026-02-22T05:51:42.860 INFO:teuthology.orchestra.run.trial041.stdout:Get:6 https://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [495 kB] 2026-02-22T05:51:42.869 INFO:teuthology.orchestra.run.trial041.stdout:Get:7 https://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [19.1 kB] 2026-02-22T05:51:42.870 INFO:teuthology.orchestra.run.trial041.stdout:Get:8 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1256 kB] 2026-02-22T05:51:42.914 INFO:teuthology.orchestra.run.trial041.stdout:Get:9 https://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [314 kB] 2026-02-22T05:51:42.918 INFO:teuthology.orchestra.run.trial041.stdout:Get:10 https://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [30.3 kB] 2026-02-22T05:51:42.919 INFO:teuthology.orchestra.run.trial041.stdout:Get:11 https://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [5310 kB] 2026-02-22T05:51:43.094 INFO:teuthology.orchestra.run.trial041.stdout:Get:12 https://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [1005 kB] 2026-02-22T05:51:43.120 INFO:teuthology.orchestra.run.trial041.stdout:Get:13 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2983 kB] 2026-02-22T05:51:43.214 INFO:teuthology.orchestra.run.trial041.stdout:Get:14 https://archive.ubuntu.com/ubuntu jammy-security/main Translation-en [427 kB] 2026-02-22T05:51:43.223 INFO:teuthology.orchestra.run.trial041.stdout:Get:15 https://archive.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [14.1 kB] 2026-02-22T05:51:43.223 INFO:teuthology.orchestra.run.trial041.stdout:Get:16 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1018 kB] 2026-02-22T05:51:43.251 INFO:teuthology.orchestra.run.trial041.stdout:Get:17 https://archive.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [22.7 kB] 2026-02-22T05:51:43.251 INFO:teuthology.orchestra.run.trial041.stdout:Get:18 https://archive.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [5147 kB] 2026-02-22T05:51:43.426 INFO:teuthology.orchestra.run.trial041.stdout:Get:19 https://archive.ubuntu.com/ubuntu jammy-security/restricted Translation-en [979 kB] 2026-02-22T05:51:45.480 INFO:teuthology.orchestra.run.trial189.stdout:Fetched 22.6 MB in 2s (13.7 MB/s) 2026-02-22T05:51:45.521 INFO:teuthology.orchestra.run.trial050.stdout:Fetched 22.6 MB in 2s (13.5 MB/s) 2026-02-22T05:51:46.001 INFO:teuthology.orchestra.run.trial189.stdout:Reading package lists... 2026-02-22T05:51:46.014 DEBUG:teuthology.orchestra.run.trial189:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2026-02-22T05:51:46.042 INFO:teuthology.orchestra.run.trial050.stdout:Reading package lists... 2026-02-22T05:51:46.046 INFO:teuthology.orchestra.run.trial189.stdout:Reading package lists... 2026-02-22T05:51:46.055 DEBUG:teuthology.orchestra.run.trial050:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2026-02-22T05:51:46.089 INFO:teuthology.orchestra.run.trial050.stdout:Reading package lists... 2026-02-22T05:51:46.152 INFO:teuthology.orchestra.run.trial189.stdout:Building dependency tree... 2026-02-22T05:51:46.153 INFO:teuthology.orchestra.run.trial189.stdout:Reading state information... 2026-02-22T05:51:46.195 INFO:teuthology.orchestra.run.trial050.stdout:Building dependency tree... 2026-02-22T05:51:46.195 INFO:teuthology.orchestra.run.trial050.stdout:Reading state information... 2026-02-22T05:51:46.239 INFO:teuthology.orchestra.run.trial189.stdout:linux-image-generic is already the newest version (5.15.0.170.159). 2026-02-22T05:51:46.240 INFO:teuthology.orchestra.run.trial189.stdout:linux-image-generic set to manually installed. 2026-02-22T05:51:46.240 INFO:teuthology.orchestra.run.trial189.stdout:The following packages were automatically installed and are no longer required: 2026-02-22T05:51:46.240 INFO:teuthology.orchestra.run.trial189.stdout: kpartx libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 2026-02-22T05:51:46.240 INFO:teuthology.orchestra.run.trial189.stdout: libgfxdr0 libglusterfs0 libiscsi7 libpmemobj1 libsgutils2-2 sg3-utils 2026-02-22T05:51:46.240 INFO:teuthology.orchestra.run.trial189.stdout: sg3-utils-udev 2026-02-22T05:51:46.241 INFO:teuthology.orchestra.run.trial189.stdout:Use 'sudo apt autoremove' to remove them. 2026-02-22T05:51:46.258 INFO:teuthology.orchestra.run.trial189.stdout:0 upgraded, 0 newly installed, 0 to remove and 13 not upgraded. 2026-02-22T05:51:46.260 DEBUG:teuthology.orchestra.run.trial189:> dpkg -s linux-image-generic 2026-02-22T05:51:46.280 INFO:teuthology.orchestra.run.trial050.stdout:linux-image-generic is already the newest version (5.15.0.170.159). 2026-02-22T05:51:46.280 INFO:teuthology.orchestra.run.trial050.stdout:linux-image-generic set to manually installed. 2026-02-22T05:51:46.280 INFO:teuthology.orchestra.run.trial050.stdout:The following packages were automatically installed and are no longer required: 2026-02-22T05:51:46.280 INFO:teuthology.orchestra.run.trial050.stdout: kpartx libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 2026-02-22T05:51:46.280 INFO:teuthology.orchestra.run.trial050.stdout: libgfxdr0 libglusterfs0 libiscsi7 libpmemobj1 libsgutils2-2 sg3-utils 2026-02-22T05:51:46.280 INFO:teuthology.orchestra.run.trial050.stdout: sg3-utils-udev 2026-02-22T05:51:46.280 INFO:teuthology.orchestra.run.trial050.stdout:Use 'sudo apt autoremove' to remove them. 2026-02-22T05:51:46.300 INFO:teuthology.orchestra.run.trial050.stdout:0 upgraded, 0 newly installed, 0 to remove and 13 not upgraded. 2026-02-22T05:51:46.301 DEBUG:teuthology.orchestra.run.trial050:> dpkg -s linux-image-generic 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Package: linux-image-generic 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Status: install ok installed 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Priority: optional 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Section: kernel 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Installed-Size: 21 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Maintainer: Ubuntu Kernel Team 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Architecture: amd64 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Source: linux-meta 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Version: 5.15.0.170.159 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.6), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-170), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.6) 2026-02-22T05:51:46.310 INFO:teuthology.orchestra.run.trial189.stdout:Depends: linux-image-5.15.0-170-generic, linux-modules-extra-5.15.0-170-generic, linux-firmware, intel-microcode, amd64-microcode 2026-02-22T05:51:46.311 INFO:teuthology.orchestra.run.trial189.stdout:Recommends: thermald 2026-02-22T05:51:46.311 INFO:teuthology.orchestra.run.trial189.stdout:Description: Generic Linux kernel image 2026-02-22T05:51:46.311 INFO:teuthology.orchestra.run.trial189.stdout: This package will always depend on the latest generic kernel image 2026-02-22T05:51:46.311 INFO:teuthology.orchestra.run.trial189.stdout: available. 2026-02-22T05:51:46.311 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-22T05:51:46.311 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2026-02-22T05:51:46.311 DEBUG:teuthology.orchestra.run.trial189:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-22T05:51:46.353 INFO:teuthology.orchestra.run.trial050.stdout:Package: linux-image-generic 2026-02-22T05:51:46.353 INFO:teuthology.orchestra.run.trial050.stdout:Status: install ok installed 2026-02-22T05:51:46.353 INFO:teuthology.orchestra.run.trial050.stdout:Priority: optional 2026-02-22T05:51:46.353 INFO:teuthology.orchestra.run.trial050.stdout:Section: kernel 2026-02-22T05:51:46.353 INFO:teuthology.orchestra.run.trial050.stdout:Installed-Size: 21 2026-02-22T05:51:46.353 INFO:teuthology.orchestra.run.trial050.stdout:Maintainer: Ubuntu Kernel Team 2026-02-22T05:51:46.353 INFO:teuthology.orchestra.run.trial050.stdout:Architecture: amd64 2026-02-22T05:51:46.353 INFO:teuthology.orchestra.run.trial050.stdout:Source: linux-meta 2026-02-22T05:51:46.354 INFO:teuthology.orchestra.run.trial050.stdout:Version: 5.15.0.170.159 2026-02-22T05:51:46.354 INFO:teuthology.orchestra.run.trial050.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.6), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-170), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.6) 2026-02-22T05:51:46.354 INFO:teuthology.orchestra.run.trial050.stdout:Depends: linux-image-5.15.0-170-generic, linux-modules-extra-5.15.0-170-generic, linux-firmware, intel-microcode, amd64-microcode 2026-02-22T05:51:46.354 INFO:teuthology.orchestra.run.trial050.stdout:Recommends: thermald 2026-02-22T05:51:46.354 INFO:teuthology.orchestra.run.trial050.stdout:Description: Generic Linux kernel image 2026-02-22T05:51:46.354 INFO:teuthology.orchestra.run.trial050.stdout: This package will always depend on the latest generic kernel image 2026-02-22T05:51:46.354 INFO:teuthology.orchestra.run.trial050.stdout: available. 2026-02-22T05:51:46.354 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-22T05:51:46.354 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-22T05:51:46.355 DEBUG:teuthology.orchestra.run.trial050:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-22T05:51:46.365 INFO:teuthology.orchestra.run.trial189.stdout:ttyS1 2026-02-22T05:51:46.394 DEBUG:teuthology.parallel:result is None 2026-02-22T05:51:46.403 INFO:teuthology.orchestra.run.trial050.stdout:ttyS1 2026-02-22T05:51:46.421 DEBUG:teuthology.parallel:result is None 2026-02-22T05:51:46.845 INFO:teuthology.orchestra.run.trial041.stdout:Fetched 22.6 MB in 3s (7590 kB/s) 2026-02-22T05:51:47.368 INFO:teuthology.orchestra.run.trial041.stdout:Reading package lists... 2026-02-22T05:51:47.381 DEBUG:teuthology.orchestra.run.trial041:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2026-02-22T05:51:47.415 INFO:teuthology.orchestra.run.trial041.stdout:Reading package lists... 2026-02-22T05:51:47.522 INFO:teuthology.orchestra.run.trial041.stdout:Building dependency tree... 2026-02-22T05:51:47.523 INFO:teuthology.orchestra.run.trial041.stdout:Reading state information... 2026-02-22T05:51:47.608 INFO:teuthology.orchestra.run.trial041.stdout:linux-image-generic is already the newest version (5.15.0.170.159). 2026-02-22T05:51:47.608 INFO:teuthology.orchestra.run.trial041.stdout:linux-image-generic set to manually installed. 2026-02-22T05:51:47.608 INFO:teuthology.orchestra.run.trial041.stdout:The following packages were automatically installed and are no longer required: 2026-02-22T05:51:47.608 INFO:teuthology.orchestra.run.trial041.stdout: kpartx libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 2026-02-22T05:51:47.609 INFO:teuthology.orchestra.run.trial041.stdout: libgfxdr0 libglusterfs0 libiscsi7 libpmemobj1 libsgutils2-2 sg3-utils 2026-02-22T05:51:47.609 INFO:teuthology.orchestra.run.trial041.stdout: sg3-utils-udev 2026-02-22T05:51:47.609 INFO:teuthology.orchestra.run.trial041.stdout:Use 'sudo apt autoremove' to remove them. 2026-02-22T05:51:47.628 INFO:teuthology.orchestra.run.trial041.stdout:0 upgraded, 0 newly installed, 0 to remove and 13 not upgraded. 2026-02-22T05:51:47.630 DEBUG:teuthology.orchestra.run.trial041:> dpkg -s linux-image-generic 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Package: linux-image-generic 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Status: install ok installed 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Priority: optional 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Section: kernel 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Installed-Size: 21 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Maintainer: Ubuntu Kernel Team 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Architecture: amd64 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Source: linux-meta 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Version: 5.15.0.170.159 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.6), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-170), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.6) 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Depends: linux-image-5.15.0-170-generic, linux-modules-extra-5.15.0-170-generic, linux-firmware, intel-microcode, amd64-microcode 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Recommends: thermald 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout:Description: Generic Linux kernel image 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout: This package will always depend on the latest generic kernel image 2026-02-22T05:51:47.681 INFO:teuthology.orchestra.run.trial041.stdout: available. 2026-02-22T05:51:47.682 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-22T05:51:47.682 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-22T05:51:47.682 DEBUG:teuthology.orchestra.run.trial041:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-22T05:51:47.732 INFO:teuthology.orchestra.run.trial041.stdout:ttyS1 2026-02-22T05:51:47.754 DEBUG:teuthology.parallel:result is None 2026-02-22T05:51:47.754 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-22T05:51:47.766 INFO:teuthology.task.internal:Creating test directory... 2026-02-22T05:51:47.766 DEBUG:teuthology.orchestra.run.trial041:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-22T05:51:47.798 DEBUG:teuthology.orchestra.run.trial050:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-22T05:51:47.800 DEBUG:teuthology.orchestra.run.trial189:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-22T05:51:47.805 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-22T05:51:47.817 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-22T05:51:47.831 INFO:teuthology.task.internal:Creating archive directory... 2026-02-22T05:51:47.831 DEBUG:teuthology.orchestra.run.trial041:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-22T05:51:47.842 DEBUG:teuthology.orchestra.run.trial050:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-22T05:51:47.845 DEBUG:teuthology.orchestra.run.trial189:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-22T05:51:47.861 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-22T05:51:47.873 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-22T05:51:47.873 DEBUG:teuthology.orchestra.run.trial041:> 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 2026-02-22T05:51:47.890 DEBUG:teuthology.orchestra.run.trial050:> 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 2026-02-22T05:51:47.893 DEBUG:teuthology.orchestra.run.trial189:> 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 2026-02-22T05:51:47.897 INFO:teuthology.orchestra.run.trial041.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T05:51:47.900 INFO:teuthology.orchestra.run.trial050.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T05:51:47.903 INFO:teuthology.orchestra.run.trial041.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T05:51:47.905 INFO:teuthology.orchestra.run.trial189.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T05:51:47.906 INFO:teuthology.orchestra.run.trial050.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T05:51:47.912 INFO:teuthology.orchestra.run.trial189.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T05:51:47.913 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-22T05:51:47.929 INFO:teuthology.task.internal:Configuring sudo... 2026-02-22T05:51:47.929 DEBUG:teuthology.orchestra.run.trial041:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-22T05:51:47.950 DEBUG:teuthology.orchestra.run.trial050:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-22T05:51:47.953 DEBUG:teuthology.orchestra.run.trial189:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-22T05:51:47.965 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-22T05:51:47.984 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-22T05:51:47.984 DEBUG:teuthology.orchestra.run.trial041:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-22T05:51:48.002 DEBUG:teuthology.orchestra.run.trial050:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-22T05:51:48.004 DEBUG:teuthology.orchestra.run.trial189:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-22T05:51:48.012 DEBUG:teuthology.orchestra.run.trial041:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T05:51:48.048 DEBUG:teuthology.orchestra.run.trial041:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T05:51:48.092 DEBUG:teuthology.orchestra.run.trial041:> set -ex 2026-02-22T05:51:48.092 DEBUG:teuthology.orchestra.run.trial041:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-22T05:51:48.140 DEBUG:teuthology.orchestra.run.trial050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T05:51:48.144 DEBUG:teuthology.orchestra.run.trial050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T05:51:48.192 DEBUG:teuthology.orchestra.run.trial050:> set -ex 2026-02-22T05:51:48.193 DEBUG:teuthology.orchestra.run.trial050:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-22T05:51:48.246 DEBUG:teuthology.orchestra.run.trial189:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T05:51:48.251 DEBUG:teuthology.orchestra.run.trial189:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T05:51:48.297 DEBUG:teuthology.orchestra.run.trial189:> set -ex 2026-02-22T05:51:48.297 DEBUG:teuthology.orchestra.run.trial189:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-22T05:51:48.346 DEBUG:teuthology.orchestra.run.trial041:> sudo service rsyslog restart 2026-02-22T05:51:48.347 DEBUG:teuthology.orchestra.run.trial050:> sudo service rsyslog restart 2026-02-22T05:51:48.348 DEBUG:teuthology.orchestra.run.trial189:> sudo service rsyslog restart 2026-02-22T05:51:48.406 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-22T05:51:48.418 INFO:teuthology.task.internal:Starting timer... 2026-02-22T05:51:48.418 INFO:teuthology.run_tasks:Running task pcp... 2026-02-22T05:51:48.434 INFO:teuthology.run_tasks:Running task selinux... 2026-02-22T05:51:48.451 DEBUG:teuthology.task.selinux:Excluding trial041: OS 'ubuntu' does not support SELinux 2026-02-22T05:51:48.451 DEBUG:teuthology.task.selinux:Excluding trial050: OS 'ubuntu' does not support SELinux 2026-02-22T05:51:48.451 DEBUG:teuthology.task.selinux:Excluding trial189: OS 'ubuntu' does not support SELinux 2026-02-22T05:51:48.451 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-22T05:51:48.451 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2026-02-22T05:51:48.451 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-22T05:51:48.451 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-22T05:51:48.464 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2026-02-22T05:51:48.466 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2026-02-22T05:51:48.581 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-22T05:51:48.589 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'}]}] 2026-02-22T05:51:48.589 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial041.front.sepia.ceph.com,trial050.front.sepia.ceph.com,trial189.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-22T05:54:24.187 INFO:teuthology.task.ansible:Archiving ansible failure log at: /home/teuthworker/mnt/teuthology/skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial/63472/ansible_failures.yaml 2026-02-22T05:54:24.189 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/task/__init__.py", line 123, in __enter__ self.begin() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/task/ansible.py", line 490, in begin super(CephLab, self).begin() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/task/ansible.py", line 324, in begin self.execute_playbook() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/task/ansible.py", line 356, in execute_playbook self._handle_failure(command, status) File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/task/ansible.py", line 384, in _handle_failure raise AnsibleFailedError(failures) teuthology.exceptions.AnsibleFailedError: ["Unexpected failure during module execution: [Errno 28] No space left on device: '/home/teuthworker/.ansible/tmp/ansible-local-2129367u22vdq5f/tmpshsg2j22'"] 2026-02-22T05:54:24.192 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-22T05:54:24.209 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-22T05:54:24.209 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-22T05:54:24.224 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-22T05:54:24.238 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-22T05:54:24.252 INFO:teuthology.task.internal:Duration was 155.834674 seconds 2026-02-22T05:54:24.253 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-22T05:54:24.267 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-22T05:54:24.267 DEBUG:teuthology.orchestra.run.trial041:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-22T05:54:24.270 DEBUG:teuthology.orchestra.run.trial050:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-22T05:54:24.273 DEBUG:teuthology.orchestra.run.trial189:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-22T05:54:24.298 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-22T05:54:24.298 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial041.front.sepia.ceph.com 2026-02-22T05:54:24.299 DEBUG:teuthology.orchestra.run.trial041:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-22T05:54:24.341 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial050.front.sepia.ceph.com 2026-02-22T05:54:24.342 DEBUG:teuthology.orchestra.run.trial050:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-22T05:54:24.348 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial189.front.sepia.ceph.com 2026-02-22T05:54:24.349 DEBUG:teuthology.orchestra.run.trial189:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-22T05:54:24.355 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-22T05:54:24.355 DEBUG:teuthology.orchestra.run.trial041:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T05:54:24.385 DEBUG:teuthology.orchestra.run.trial050:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T05:54:24.390 DEBUG:teuthology.orchestra.run.trial189:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T05:54:24.608 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-22T05:54:24.608 DEBUG:teuthology.orchestra.run.trial041:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T05:54:24.610 DEBUG:teuthology.orchestra.run.trial050:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T05:54:24.612 DEBUG:teuthology.orchestra.run.trial189:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T05:54:24.618 INFO:teuthology.orchestra.run.trial041.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T05:54:24.619 INFO:teuthology.orchestra.run.trial041.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T05:54:24.619 INFO:teuthology.orchestra.run.trial041.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-22T05:54:24.619 INFO:teuthology.orchestra.run.trial041.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T05:54:24.620 INFO:teuthology.orchestra.run.trial041.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-22T05:54:24.620 INFO:teuthology.orchestra.run.trial050.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T05:54:24.621 INFO:teuthology.orchestra.run.trial050.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T05:54:24.621 INFO:teuthology.orchestra.run.trial050.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-22T05:54:24.621 INFO:teuthology.orchestra.run.trial050.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T05:54:24.621 INFO:teuthology.orchestra.run.trial050.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-22T05:54:24.622 INFO:teuthology.orchestra.run.trial189.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T05:54:24.623 INFO:teuthology.orchestra.run.trial189.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T05:54:24.623 INFO:teuthology.orchestra.run.trial189.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-22T05:54:24.623 INFO:teuthology.orchestra.run.trial189.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T05:54:24.624 INFO:teuthology.orchestra.run.trial189.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-22T05:54:24.685 INFO:teuthology.orchestra.run.trial041.stderr: 81.3% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-22T05:54:24.688 INFO:teuthology.orchestra.run.trial050.stderr: 81.3% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-22T05:54:24.692 INFO:teuthology.orchestra.run.trial189.stderr: 81.3% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-22T05:54:24.693 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-22T05:54:24.709 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-22T05:54:24.710 DEBUG:teuthology.orchestra.run.trial041:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-22T05:54:24.735 DEBUG:teuthology.orchestra.run.trial050:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-22T05:54:24.744 DEBUG:teuthology.orchestra.run.trial189:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-22T05:54:24.752 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-22T05:54:24.767 DEBUG:teuthology.orchestra.run.trial041:> 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 2026-02-22T05:54:24.781 DEBUG:teuthology.orchestra.run.trial050:> 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 2026-02-22T05:54:24.787 INFO:teuthology.orchestra.run.trial041.stdout:kernel.core_pattern = core 2026-02-22T05:54:24.790 DEBUG:teuthology.orchestra.run.trial189:> 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 2026-02-22T05:54:24.796 INFO:teuthology.orchestra.run.trial050.stdout:kernel.core_pattern = core 2026-02-22T05:54:24.802 INFO:teuthology.orchestra.run.trial189.stdout:kernel.core_pattern = core 2026-02-22T05:54:24.812 DEBUG:teuthology.orchestra.run.trial041:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-22T05:54:24.842 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T05:54:24.843 DEBUG:teuthology.orchestra.run.trial050:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-22T05:54:24.851 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T05:54:24.852 DEBUG:teuthology.orchestra.run.trial189:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-22T05:54:24.858 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T05:54:24.858 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-22T05:54:24.873 INFO:teuthology.task.internal:Transferring archived files... 2026-02-22T05:54:24.876 DEBUG:teuthology.misc:Transferring archived files from trial041:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial/63472/remote/trial041 2026-02-22T05:54:24.877 DEBUG:teuthology.orchestra.run.trial041:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-22T05:54:24.925 DEBUG:teuthology.misc:Transferring archived files from trial050:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial/63472/remote/trial050 2026-02-22T05:54:24.927 DEBUG:teuthology.orchestra.run.trial050:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-22T05:54:24.964 DEBUG:teuthology.misc:Transferring archived files from trial189:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/skanta-2026-02-22_05:22:34-rados-wip-bharath9-testing-2026-02-21-2044-tentacle-distro-default-trial/63472/remote/trial189 2026-02-22T05:54:24.965 DEBUG:teuthology.orchestra.run.trial189:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-22T05:54:25.000 INFO:teuthology.task.internal:Removing archive directory... 2026-02-22T05:54:25.000 DEBUG:teuthology.orchestra.run.trial041:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-22T05:54:25.002 DEBUG:teuthology.orchestra.run.trial050:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-22T05:54:25.003 DEBUG:teuthology.orchestra.run.trial189:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-22T05:54:25.031 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-22T05:54:25.045 INFO:teuthology.task.internal:Not uploading archives. 2026-02-22T05:54:25.046 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-22T05:54:25.058 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-22T05:54:25.059 DEBUG:teuthology.orchestra.run.trial041:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-22T05:54:25.060 DEBUG:teuthology.orchestra.run.trial050:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-22T05:54:25.062 DEBUG:teuthology.orchestra.run.trial189:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-22T05:54:25.064 INFO:teuthology.orchestra.run.trial041.stdout: 1179659 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 22 05:54 /home/ubuntu/cephtest 2026-02-22T05:54:25.065 INFO:teuthology.orchestra.run.trial050.stdout: 1179659 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 22 05:54 /home/ubuntu/cephtest 2026-02-22T05:54:25.075 INFO:teuthology.orchestra.run.trial189.stdout: 1179659 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 22 05:54 /home/ubuntu/cephtest 2026-02-22T05:54:25.076 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-22T05:54:25.089 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-22T05:54:25.121 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/off mon_election/classic task/test_host_drain} duration: 155.83467364311218 failure_reason: '["Unexpected failure during module execution: [Errno 28] No space left on device: ''/home/teuthworker/.ansible/tmp/ansible-local-2129367u22vdq5f/tmpshsg2j22''"]' owner: scheduled_skanta@soko04.front.sepia.ceph.com sentry_event: null status: dead success: false 2026-02-22T05:54:25.121 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-22T05:54:25.232 INFO:teuthology.run:DEAD