2026-03-08T22:44:48.228 INFO:root:teuthology version: 1.2.4.dev6+g1c580df7a 2026-03-08T22:44:48.233 DEBUG:teuthology.report:Pushing job info to http://localhost:8080 2026-03-08T22:44:48.253 INFO:teuthology.run:Config: archive_path: /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/287 branch: squid description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: null first_in_suite: false flavor: default job_id: '287' ktype: distro last_in_suite: false machine_type: vps name: kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: squid ansible.cephlab: branch: main skip_tags: nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs vars: timezone: UTC ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd mclock iops capacity threshold hdd: 49000 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: e911bdebe5c8faa3800735d1568fcdca65db60df ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: e911bdebe5c8faa3800735d1568fcdca65db60df extra_system_packages: deb: - python3-xmltodict - python3-jmespath rpm: - bzip2 - perl-Test-Harness - python3-xmltodict - python3-jmespath workunit: branch: tt-squid sha1: 569c3e99c9b32a51b4eaf08731c728f4513ed589 owner: kyr priority: 1000 repo: https://github.com/ceph/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 8017 sha1: e911bdebe5c8faa3800735d1568fcdca65db60df sleep_before_teardown: 0 subset: 1/64 suite: orch:cephadm suite_branch: tt-squid suite_path: /home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa suite_relpath: qa suite_repo: https://github.com/kshtsk/ceph.git suite_sha1: 569c3e99c9b32a51b4eaf08731c728f4513ed589 targets: vm02.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBJcOV8jvh1y5qZ1Um+0eE7MzboqjrOrwFD7LOw1m8H5dmXNu+OlFblwIHHfPF6D4o95IXMhF+IC+532JmVP3F8= vm07.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBA51kmD3h7Qu+RSY+bNmPDdWGC+IUbnE4J0eF5rW6HCsvgSiWxnRRF4dvOeK6kq3n8CIS2+VWqhOBwmVCAgWgbU= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: clyso-debian-13 teuthology_repo: https://github.com/clyso/teuthology teuthology_sha1: 1c580df7a9c7c2aadc272da296344fd99f27c444 timestamp: 2026-03-08_22:22:45 tube: vps user: kyr verbose: false worker_log: /home/teuthos/.teuthology/dispatcher/dispatcher.vps.611473 2026-03-08T22:44:48.254 INFO:teuthology.run:suite_path is set to /home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa; will attempt to use it 2026-03-08T22:44:48.254 INFO:teuthology.run:Found tasks at /home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa/tasks 2026-03-08T22:44:48.254 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-03-08T22:44:48.254 INFO:teuthology.task.internal:Checking packages... 2026-03-08T22:44:48.254 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'e911bdebe5c8faa3800735d1568fcdca65db60df' 2026-03-08T22:44:48.254 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-03-08T22:44:48.254 INFO:teuthology.packaging:ref: None 2026-03-08T22:44:48.254 INFO:teuthology.packaging:tag: None 2026-03-08T22:44:48.254 INFO:teuthology.packaging:branch: squid 2026-03-08T22:44:48.254 INFO:teuthology.packaging:sha1: e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T22:44:48.255 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=squid 2026-03-08T22:44:48.887 INFO:teuthology.task.internal:Found packages for ceph version 19.2.3-678-ge911bdeb-1jammy 2026-03-08T22:44:48.888 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-03-08T22:44:48.889 INFO:teuthology.task.internal:no buildpackages task found 2026-03-08T22:44:48.889 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-03-08T22:44:48.889 INFO:teuthology.task.internal:Saving configuration 2026-03-08T22:44:48.895 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-03-08T22:44:48.896 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-03-08T22:44:48.903 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm02.local', 'description': '/archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/287', 'up': True, 'machine_type': 'vps', 'is_vm': True, 'vm_host': {'name': 'localhost', 'description': None, 'up': True, 'machine_type': 'libvirt', 'is_vm': False, 'vm_host': None, 'os_type': None, 'os_version': None, 'arch': None, 'locked': True, 'locked_since': None, 'locked_by': None, 'mac_address': None, 'ssh_pub_key': None}, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-03-08 22:43:44.689090', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:02', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBJcOV8jvh1y5qZ1Um+0eE7MzboqjrOrwFD7LOw1m8H5dmXNu+OlFblwIHHfPF6D4o95IXMhF+IC+532JmVP3F8='} 2026-03-08T22:44:48.908 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm07.local', 'description': '/archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/287', 'up': True, 'machine_type': 'vps', 'is_vm': True, 'vm_host': {'name': 'localhost', 'description': None, 'up': True, 'machine_type': 'libvirt', 'is_vm': False, 'vm_host': None, 'os_type': None, 'os_version': None, 'arch': None, 'locked': True, 'locked_since': None, 'locked_by': None, 'mac_address': None, 'ssh_pub_key': None}, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-03-08 22:43:44.689562', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:07', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBA51kmD3h7Qu+RSY+bNmPDdWGC+IUbnE4J0eF5rW6HCsvgSiWxnRRF4dvOeK6kq3n8CIS2+VWqhOBwmVCAgWgbU='} 2026-03-08T22:44:48.908 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-03-08T22:44:48.909 INFO:teuthology.task.internal:roles: ubuntu@vm02.local - ['host.a', 'client.0'] 2026-03-08T22:44:48.909 INFO:teuthology.task.internal:roles: ubuntu@vm07.local - ['host.b', 'client.1'] 2026-03-08T22:44:48.909 INFO:teuthology.run_tasks:Running task console_log... 2026-03-08T22:44:48.916 DEBUG:teuthology.task.console_log:vm02 does not support IPMI; excluding 2026-03-08T22:44:48.923 DEBUG:teuthology.task.console_log:vm07 does not support IPMI; excluding 2026-03-08T22:44:48.923 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f8b43fd9360>, signals=[15]) 2026-03-08T22:44:48.923 INFO:teuthology.run_tasks:Running task internal.connect... 2026-03-08T22:44:48.924 INFO:teuthology.task.internal:Opening connections... 2026-03-08T22:44:48.924 DEBUG:teuthology.task.internal:connecting to ubuntu@vm02.local 2026-03-08T22:44:48.924 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm02.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T22:44:48.982 DEBUG:teuthology.task.internal:connecting to ubuntu@vm07.local 2026-03-08T22:44:48.982 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm07.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T22:44:49.043 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-03-08T22:44:49.044 DEBUG:teuthology.orchestra.run.vm02:> uname -m 2026-03-08T22:44:49.049 INFO:teuthology.orchestra.run.vm02.stdout:x86_64 2026-03-08T22:44:49.050 DEBUG:teuthology.orchestra.run.vm02:> cat /etc/os-release 2026-03-08T22:44:49.094 INFO:teuthology.orchestra.run.vm02.stdout:PRETTY_NAME="Ubuntu 22.04.5 LTS" 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:NAME="Ubuntu" 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:VERSION_ID="22.04" 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:VERSION="22.04.5 LTS (Jammy Jellyfish)" 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:VERSION_CODENAME=jammy 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:ID=ubuntu 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:ID_LIKE=debian 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:HOME_URL="https://www.ubuntu.com/" 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2026-03-08T22:44:49.095 INFO:teuthology.orchestra.run.vm02.stdout:UBUNTU_CODENAME=jammy 2026-03-08T22:44:49.095 INFO:teuthology.lock.ops:Updating vm02.local on lock server 2026-03-08T22:44:49.100 DEBUG:teuthology.orchestra.run.vm07:> uname -m 2026-03-08T22:44:49.111 INFO:teuthology.orchestra.run.vm07.stdout:x86_64 2026-03-08T22:44:49.111 DEBUG:teuthology.orchestra.run.vm07:> cat /etc/os-release 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:PRETTY_NAME="Ubuntu 22.04.5 LTS" 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:NAME="Ubuntu" 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:VERSION_ID="22.04" 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:VERSION="22.04.5 LTS (Jammy Jellyfish)" 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:VERSION_CODENAME=jammy 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:ID=ubuntu 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:ID_LIKE=debian 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:HOME_URL="https://www.ubuntu.com/" 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2026-03-08T22:44:49.156 INFO:teuthology.orchestra.run.vm07.stdout:UBUNTU_CODENAME=jammy 2026-03-08T22:44:49.157 INFO:teuthology.lock.ops:Updating vm07.local on lock server 2026-03-08T22:44:49.161 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-03-08T22:44:49.163 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-03-08T22:44:49.164 INFO:teuthology.task.internal:Checking for old test directory... 2026-03-08T22:44:49.164 DEBUG:teuthology.orchestra.run.vm02:> test '!' -e /home/ubuntu/cephtest 2026-03-08T22:44:49.165 DEBUG:teuthology.orchestra.run.vm07:> test '!' -e /home/ubuntu/cephtest 2026-03-08T22:44:49.199 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-03-08T22:44:49.200 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-03-08T22:44:49.200 DEBUG:teuthology.orchestra.run.vm02:> test -z $(ls -A /var/lib/ceph) 2026-03-08T22:44:49.208 DEBUG:teuthology.orchestra.run.vm07:> test -z $(ls -A /var/lib/ceph) 2026-03-08T22:44:49.210 INFO:teuthology.orchestra.run.vm02.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-08T22:44:49.244 INFO:teuthology.orchestra.run.vm07.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-08T22:44:49.245 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-03-08T22:44:49.252 DEBUG:teuthology.orchestra.run.vm02:> test -e /ceph-qa-ready 2026-03-08T22:44:49.259 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T22:44:49.663 DEBUG:teuthology.orchestra.run.vm07:> test -e /ceph-qa-ready 2026-03-08T22:44:49.665 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T22:44:49.907 INFO:teuthology.run_tasks:Running task internal.base... 2026-03-08T22:44:49.908 INFO:teuthology.task.internal:Creating test directory... 2026-03-08T22:44:49.908 DEBUG:teuthology.orchestra.run.vm02:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-08T22:44:49.909 DEBUG:teuthology.orchestra.run.vm07:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-08T22:44:49.913 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-03-08T22:44:49.914 INFO:teuthology.run_tasks:Running task internal.archive... 2026-03-08T22:44:49.915 INFO:teuthology.task.internal:Creating archive directory... 2026-03-08T22:44:49.915 DEBUG:teuthology.orchestra.run.vm02:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-08T22:44:49.956 DEBUG:teuthology.orchestra.run.vm07:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-08T22:44:49.964 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-03-08T22:44:49.965 INFO:teuthology.task.internal:Enabling coredump saving... 2026-03-08T22:44:49.965 DEBUG:teuthology.orchestra.run.vm02:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-08T22:44:50.001 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T22:44:50.001 DEBUG:teuthology.orchestra.run.vm07:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-08T22:44:50.007 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T22:44:50.007 DEBUG:teuthology.orchestra.run.vm02:> 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-03-08T22:44:50.043 DEBUG:teuthology.orchestra.run.vm07:> 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-03-08T22:44:50.050 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T22:44:50.054 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T22:44:50.056 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T22:44:50.061 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T22:44:50.062 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-03-08T22:44:50.064 INFO:teuthology.task.internal:Configuring sudo... 2026-03-08T22:44:50.064 DEBUG:teuthology.orchestra.run.vm02:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-03-08T22:44:50.100 DEBUG:teuthology.orchestra.run.vm07:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-03-08T22:44:50.111 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-03-08T22:44:50.113 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-03-08T22:44:50.114 DEBUG:teuthology.orchestra.run.vm02:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-08T22:44:50.147 DEBUG:teuthology.orchestra.run.vm07:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-08T22:44:50.155 DEBUG:teuthology.orchestra.run.vm02:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-08T22:44:50.193 DEBUG:teuthology.orchestra.run.vm02:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-08T22:44:50.237 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T22:44:50.237 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-08T22:44:50.286 DEBUG:teuthology.orchestra.run.vm07:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-08T22:44:50.289 DEBUG:teuthology.orchestra.run.vm07:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-08T22:44:50.334 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-08T22:44:50.335 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-08T22:44:50.384 DEBUG:teuthology.orchestra.run.vm02:> sudo service rsyslog restart 2026-03-08T22:44:50.384 DEBUG:teuthology.orchestra.run.vm07:> sudo service rsyslog restart 2026-03-08T22:44:50.440 INFO:teuthology.run_tasks:Running task internal.timer... 2026-03-08T22:44:50.442 INFO:teuthology.task.internal:Starting timer... 2026-03-08T22:44:50.442 INFO:teuthology.run_tasks:Running task pcp... 2026-03-08T22:44:50.445 INFO:teuthology.run_tasks:Running task selinux... 2026-03-08T22:44:50.447 INFO:teuthology.task.selinux:Excluding vm02: VMs are not yet supported 2026-03-08T22:44:50.447 INFO:teuthology.task.selinux:Excluding vm07: VMs are not yet supported 2026-03-08T22:44:50.447 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-03-08T22:44:50.447 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2026-03-08T22:44:50.447 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-03-08T22:44:50.447 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-03-08T22:44:50.449 DEBUG:teuthology.task:Applying overrides for task ansible.cephlab: {'branch': 'main', 'skip_tags': 'nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs', 'vars': {'timezone': 'UTC'}} 2026-03-08T22:44:50.449 DEBUG:teuthology.repo_utils:Setting repo remote to https://github.com/ceph/ceph-cm-ansible.git 2026-03-08T22:44:50.451 INFO:teuthology.repo_utils:Fetching github.com_ceph_ceph-cm-ansible_main from origin 2026-03-08T22:44:50.941 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthos/src/github.com_ceph_ceph-cm-ansible_main to origin/main 2026-03-08T22:44:50.947 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-03-08T22:44:50.947 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu", "timezone": "UTC"}' -i /tmp/teuth_ansible_inventorycifn42tk --limit vm02.local,vm07.local /home/teuthos/src/github.com_ceph_ceph-cm-ansible_main/cephlab.yml --skip-tags nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs 2026-03-08T22:47:15.812 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@vm02.local'), Remote(name='ubuntu@vm07.local')] 2026-03-08T22:47:15.813 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@vm02.local' 2026-03-08T22:47:15.813 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm02.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T22:47:15.872 DEBUG:teuthology.orchestra.run.vm02:> true 2026-03-08T22:47:16.093 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@vm02.local' 2026-03-08T22:47:16.093 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@vm07.local' 2026-03-08T22:47:16.093 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm07.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T22:47:16.156 DEBUG:teuthology.orchestra.run.vm07:> true 2026-03-08T22:47:16.372 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@vm07.local' 2026-03-08T22:47:16.372 INFO:teuthology.run_tasks:Running task clock... 2026-03-08T22:47:16.375 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-03-08T22:47:16.375 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-03-08T22:47:16.375 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-08T22:47:16.376 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-03-08T22:47:16.376 DEBUG:teuthology.orchestra.run.vm07:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-08T22:47:16.392 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Command line: ntpd -gq 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: ---------------------------------------------------- 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: ntp-4 is maintained by Network Time Foundation, 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: corporation. Support and training for ntp-4 are 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: available at https://www.nwtime.org/support 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: ---------------------------------------------------- 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: proto: precision = 0.029 usec (-25) 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: basedate set to 2022-02-04 2026-03-08T22:47:16.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: gps base set to 2022-02-06 (week 2196) 2026-03-08T22:47:16.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: leapsecond file ('/usr/share/zoneinfo/leap-seconds.list'): good hash signature 2026-03-08T22:47:16.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: leapsecond file ('/usr/share/zoneinfo/leap-seconds.list'): loaded, expire=2025-12-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37 2026-03-08T22:47:16.394 INFO:teuthology.orchestra.run.vm02.stderr: 8 Mar 22:47:16 ntpd[15982]: leapsecond file ('/usr/share/zoneinfo/leap-seconds.list'): expired 71 days ago 2026-03-08T22:47:16.395 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Listen and drop on 0 v6wildcard [::]:123 2026-03-08T22:47:16.395 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2026-03-08T22:47:16.395 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Listen normally on 2 lo 127.0.0.1:123 2026-03-08T22:47:16.395 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Listen normally on 3 ens3 192.168.123.102:123 2026-03-08T22:47:16.395 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Listen normally on 4 lo [::1]:123 2026-03-08T22:47:16.395 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Listen normally on 5 ens3 [fe80::5055:ff:fe00:2%2]:123 2026-03-08T22:47:16.395 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:16 ntpd[15982]: Listening on routing socket on fd #22 for interface updates 2026-03-08T22:47:16.429 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Command line: ntpd -gq 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: ---------------------------------------------------- 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: ntp-4 is maintained by Network Time Foundation, 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: corporation. Support and training for ntp-4 are 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: available at https://www.nwtime.org/support 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: ---------------------------------------------------- 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: proto: precision = 0.030 usec (-25) 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: basedate set to 2022-02-04 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: gps base set to 2022-02-06 (week 2196) 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: leapsecond file ('/usr/share/zoneinfo/leap-seconds.list'): good hash signature 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: leapsecond file ('/usr/share/zoneinfo/leap-seconds.list'): loaded, expire=2025-12-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37 2026-03-08T22:47:16.430 INFO:teuthology.orchestra.run.vm07.stderr: 8 Mar 22:47:16 ntpd[15992]: leapsecond file ('/usr/share/zoneinfo/leap-seconds.list'): expired 71 days ago 2026-03-08T22:47:16.431 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Listen and drop on 0 v6wildcard [::]:123 2026-03-08T22:47:16.431 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2026-03-08T22:47:16.431 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Listen normally on 2 lo 127.0.0.1:123 2026-03-08T22:47:16.431 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Listen normally on 3 ens3 192.168.123.107:123 2026-03-08T22:47:16.431 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Listen normally on 4 lo [::1]:123 2026-03-08T22:47:16.431 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Listen normally on 5 ens3 [fe80::5055:ff:fe00:7%2]:123 2026-03-08T22:47:16.431 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:16 ntpd[15992]: Listening on routing socket on fd #22 for interface updates 2026-03-08T22:47:17.395 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:17 ntpd[15982]: Soliciting pool server 51.75.67.47 2026-03-08T22:47:17.430 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:17 ntpd[15992]: Soliciting pool server 51.75.67.47 2026-03-08T22:47:18.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:18 ntpd[15982]: Soliciting pool server 217.154.182.60 2026-03-08T22:47:18.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:18 ntpd[15982]: Soliciting pool server 46.41.21.10 2026-03-08T22:47:18.429 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:18 ntpd[15992]: Soliciting pool server 217.154.182.60 2026-03-08T22:47:18.429 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:18 ntpd[15992]: Soliciting pool server 46.41.21.10 2026-03-08T22:47:19.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:19 ntpd[15982]: Soliciting pool server 49.12.199.148 2026-03-08T22:47:19.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:19 ntpd[15982]: Soliciting pool server 94.16.122.152 2026-03-08T22:47:19.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:19 ntpd[15982]: Soliciting pool server 134.60.1.30 2026-03-08T22:47:19.429 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:19 ntpd[15992]: Soliciting pool server 49.12.199.148 2026-03-08T22:47:19.429 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:19 ntpd[15992]: Soliciting pool server 94.16.122.152 2026-03-08T22:47:19.429 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:19 ntpd[15992]: Soliciting pool server 134.60.1.30 2026-03-08T22:47:20.393 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:20 ntpd[15982]: Soliciting pool server 213.239.234.28 2026-03-08T22:47:20.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:20 ntpd[15982]: Soliciting pool server 213.239.234.28 2026-03-08T22:47:20.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:20 ntpd[15982]: Soliciting pool server 162.159.200.123 2026-03-08T22:47:20.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:20 ntpd[15982]: Soliciting pool server 157.90.247.99 2026-03-08T22:47:20.428 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:20 ntpd[15992]: Soliciting pool server 213.239.234.28 2026-03-08T22:47:20.428 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:20 ntpd[15992]: Soliciting pool server 213.239.234.28 2026-03-08T22:47:20.428 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:20 ntpd[15992]: Soliciting pool server 162.159.200.123 2026-03-08T22:47:20.428 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:20 ntpd[15992]: Soliciting pool server 157.90.247.99 2026-03-08T22:47:21.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:21 ntpd[15982]: Soliciting pool server 195.128.102.95 2026-03-08T22:47:21.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:21 ntpd[15982]: Soliciting pool server 185.248.189.10 2026-03-08T22:47:21.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:21 ntpd[15982]: Soliciting pool server 185.125.190.56 2026-03-08T22:47:21.428 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:21 ntpd[15992]: Soliciting pool server 195.128.102.95 2026-03-08T22:47:21.428 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:21 ntpd[15992]: Soliciting pool server 185.248.189.10 2026-03-08T22:47:21.428 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:21 ntpd[15992]: Soliciting pool server 185.125.190.56 2026-03-08T22:47:22.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:22 ntpd[15982]: Soliciting pool server 185.125.190.57 2026-03-08T22:47:22.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:22 ntpd[15982]: Soliciting pool server 104.167.24.26 2026-03-08T22:47:22.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:22 ntpd[15982]: Soliciting pool server 49.12.35.6 2026-03-08T22:47:22.427 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:22 ntpd[15992]: Soliciting pool server 185.125.190.57 2026-03-08T22:47:22.427 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:22 ntpd[15992]: Soliciting pool server 104.167.24.26 2026-03-08T22:47:22.427 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:22 ntpd[15992]: Soliciting pool server 49.12.35.6 2026-03-08T22:47:23.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:23 ntpd[15982]: Soliciting pool server 185.125.190.58 2026-03-08T22:47:23.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:23 ntpd[15982]: Soliciting pool server 144.76.59.106 2026-03-08T22:47:23.394 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:23 ntpd[15982]: Soliciting pool server 2001:8d8:1801:8156::1 2026-03-08T22:47:23.426 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:23 ntpd[15992]: Soliciting pool server 185.125.190.58 2026-03-08T22:47:23.426 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:23 ntpd[15992]: Soliciting pool server 144.76.59.106 2026-03-08T22:47:23.426 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:23 ntpd[15992]: Soliciting pool server 2001:8d8:1801:8156::1 2026-03-08T22:47:24.415 INFO:teuthology.orchestra.run.vm02.stdout: 8 Mar 22:47:24 ntpd[15982]: ntpd: time slew +0.000739 s 2026-03-08T22:47:24.415 INFO:teuthology.orchestra.run.vm02.stdout:ntpd: time slew +0.000739s 2026-03-08T22:47:24.435 INFO:teuthology.orchestra.run.vm02.stdout: remote refid st t when poll reach delay offset jitter 2026-03-08T22:47:24.435 INFO:teuthology.orchestra.run.vm02.stdout:============================================================================== 2026-03-08T22:47:24.435 INFO:teuthology.orchestra.run.vm02.stdout: 0.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.435 INFO:teuthology.orchestra.run.vm02.stdout: 1.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.435 INFO:teuthology.orchestra.run.vm02.stdout: 2.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.435 INFO:teuthology.orchestra.run.vm02.stdout: 3.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.435 INFO:teuthology.orchestra.run.vm02.stdout: ntp.ubuntu.com .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.447 INFO:teuthology.orchestra.run.vm07.stdout: 8 Mar 22:47:24 ntpd[15992]: ntpd: time slew +0.010804 s 2026-03-08T22:47:24.447 INFO:teuthology.orchestra.run.vm07.stdout:ntpd: time slew +0.010804s 2026-03-08T22:47:24.467 INFO:teuthology.orchestra.run.vm07.stdout: remote refid st t when poll reach delay offset jitter 2026-03-08T22:47:24.467 INFO:teuthology.orchestra.run.vm07.stdout:============================================================================== 2026-03-08T22:47:24.468 INFO:teuthology.orchestra.run.vm07.stdout: 0.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.468 INFO:teuthology.orchestra.run.vm07.stdout: 1.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.468 INFO:teuthology.orchestra.run.vm07.stdout: 2.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.468 INFO:teuthology.orchestra.run.vm07.stdout: 3.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.468 INFO:teuthology.orchestra.run.vm07.stdout: ntp.ubuntu.com .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:24.468 INFO:teuthology.run_tasks:Running task nvme_loop... 2026-03-08T22:47:24.471 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2026-03-08T22:47:24.471 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T22:47:24.471 DEBUG:teuthology.orchestra.run.vm02:> dd if=/scratch_devs of=/dev/stdout 2026-03-08T22:47:24.481 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T22:47:24.481 DEBUG:teuthology.orchestra.run.vm02:> ls /dev/[sv]d? 2026-03-08T22:47:24.525 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vda 2026-03-08T22:47:24.525 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vdb 2026-03-08T22:47:24.525 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vdc 2026-03-08T22:47:24.525 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vdd 2026-03-08T22:47:24.525 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vde 2026-03-08T22:47:24.525 WARNING:teuthology.misc:Removing root device: /dev/vda from device list 2026-03-08T22:47:24.525 DEBUG:teuthology.misc:devs=['/dev/vdb', '/dev/vdc', '/dev/vdd', '/dev/vde'] 2026-03-08T22:47:24.525 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vdb 2026-03-08T22:47:24.569 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vdb 2026-03-08T22:47:24.569 INFO:teuthology.orchestra.run.vm02.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-03-08T22:47:24.569 INFO:teuthology.orchestra.run.vm02.stdout:Device: 5h/5d Inode: 24 Links: 1 Device type: fe,10 2026-03-08T22:47:24.569 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T22:47:24.569 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-08 22:43:48.242117269 +0000 2026-03-08T22:47:24.569 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-08 22:43:47.214117269 +0000 2026-03-08T22:47:24.569 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-08 22:43:47.214117269 +0000 2026-03-08T22:47:24.569 INFO:teuthology.orchestra.run.vm02.stdout: Birth: - 2026-03-08T22:47:24.569 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vdb of=/dev/null count=1 2026-03-08T22:47:24.616 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-08T22:47:24.616 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-08T22:47:24.617 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000123371 s, 4.2 MB/s 2026-03-08T22:47:24.617 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vdb 2026-03-08T22:47:24.663 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vdc 2026-03-08T22:47:24.709 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vdc 2026-03-08T22:47:24.710 INFO:teuthology.orchestra.run.vm02.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-03-08T22:47:24.710 INFO:teuthology.orchestra.run.vm02.stdout:Device: 5h/5d Inode: 25 Links: 1 Device type: fe,20 2026-03-08T22:47:24.710 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T22:47:24.710 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-08 22:43:48.250117269 +0000 2026-03-08T22:47:24.710 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-08 22:43:47.214117269 +0000 2026-03-08T22:47:24.710 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-08 22:43:47.214117269 +0000 2026-03-08T22:47:24.710 INFO:teuthology.orchestra.run.vm02.stdout: Birth: - 2026-03-08T22:47:24.710 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vdc of=/dev/null count=1 2026-03-08T22:47:24.756 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-08T22:47:24.757 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-08T22:47:24.757 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000138539 s, 3.7 MB/s 2026-03-08T22:47:24.757 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vdc 2026-03-08T22:47:24.802 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vdd 2026-03-08T22:47:24.845 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vdd 2026-03-08T22:47:24.845 INFO:teuthology.orchestra.run.vm02.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-03-08T22:47:24.845 INFO:teuthology.orchestra.run.vm02.stdout:Device: 5h/5d Inode: 26 Links: 1 Device type: fe,30 2026-03-08T22:47:24.845 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T22:47:24.845 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-08 22:43:48.242117269 +0000 2026-03-08T22:47:24.845 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-08 22:43:47.214117269 +0000 2026-03-08T22:47:24.845 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-08 22:43:47.214117269 +0000 2026-03-08T22:47:24.845 INFO:teuthology.orchestra.run.vm02.stdout: Birth: - 2026-03-08T22:47:24.845 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vdd of=/dev/null count=1 2026-03-08T22:47:24.894 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-08T22:47:24.894 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-08T22:47:24.894 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000187381 s, 2.7 MB/s 2026-03-08T22:47:24.894 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vdd 2026-03-08T22:47:24.939 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vde 2026-03-08T22:47:24.986 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vde 2026-03-08T22:47:24.986 INFO:teuthology.orchestra.run.vm02.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-03-08T22:47:24.986 INFO:teuthology.orchestra.run.vm02.stdout:Device: 5h/5d Inode: 27 Links: 1 Device type: fe,40 2026-03-08T22:47:24.986 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T22:47:24.986 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-08 22:43:48.250117269 +0000 2026-03-08T22:47:24.986 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-08 22:43:47.186117269 +0000 2026-03-08T22:47:24.986 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-08 22:43:47.186117269 +0000 2026-03-08T22:47:24.986 INFO:teuthology.orchestra.run.vm02.stdout: Birth: - 2026-03-08T22:47:24.986 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vde of=/dev/null count=1 2026-03-08T22:47:25.033 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-08T22:47:25.033 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-08T22:47:25.033 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000151188 s, 3.4 MB/s 2026-03-08T22:47:25.033 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vde 2026-03-08T22:47:25.079 DEBUG:teuthology.orchestra.run.vm02:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2026-03-08T22:47:25.130 INFO:teuthology.orchestra.run.vm02.stderr:modprobe: FATAL: Module nvme_loop not found in directory /lib/modules/5.15.0-1092-kvm 2026-03-08T22:47:25.131 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T22:47:25.131 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthos/teuthology/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/home/teuthos/.local/share/uv/python/cpython-3.10.19-linux-x86_64-gnu/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa/tasks/nvme_loop.py", line 27, in task remote.run( File "/home/teuthos/teuthology/teuthology/orchestra/remote.py", line 575, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthos/teuthology/teuthology/orchestra/run.py", line 461, in run r.wait() File "/home/teuthos/teuthology/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthos/teuthology/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on vm02 with status 1: "grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype" 2026-03-08T22:47:25.131 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2026-03-08T22:47:25.138 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-03-08T22:47:25.139 INFO:teuthology.task.clock:Checking final clock skew... 2026-03-08T22:47:25.140 DEBUG:teuthology.orchestra.run.vm02:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-08T22:47:25.175 DEBUG:teuthology.orchestra.run.vm07:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-08T22:47:25.178 INFO:teuthology.orchestra.run.vm02.stdout: remote refid st t when poll reach delay offset jitter 2026-03-08T22:47:25.178 INFO:teuthology.orchestra.run.vm02.stdout:============================================================================== 2026-03-08T22:47:25.178 INFO:teuthology.orchestra.run.vm02.stdout: 0.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.178 INFO:teuthology.orchestra.run.vm02.stdout: 1.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.178 INFO:teuthology.orchestra.run.vm02.stdout: 2.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.178 INFO:teuthology.orchestra.run.vm02.stdout: 3.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.178 INFO:teuthology.orchestra.run.vm02.stdout: ntp.ubuntu.com .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.180 INFO:teuthology.orchestra.run.vm07.stdout: remote refid st t when poll reach delay offset jitter 2026-03-08T22:47:25.180 INFO:teuthology.orchestra.run.vm07.stdout:============================================================================== 2026-03-08T22:47:25.180 INFO:teuthology.orchestra.run.vm07.stdout: 0.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.180 INFO:teuthology.orchestra.run.vm07.stdout: 1.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.180 INFO:teuthology.orchestra.run.vm07.stdout: 2.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.180 INFO:teuthology.orchestra.run.vm07.stdout: 3.ubuntu.pool.n .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.180 INFO:teuthology.orchestra.run.vm07.stdout: ntp.ubuntu.com .POOL. 16 p - 64 0 0.000 +0.000 0.000 2026-03-08T22:47:25.180 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-03-08T22:47:25.183 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-03-08T22:47:25.183 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-03-08T22:47:25.185 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-03-08T22:47:25.188 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-03-08T22:47:25.194 INFO:teuthology.task.internal:Duration was 154.751622 seconds 2026-03-08T22:47:25.194 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-03-08T22:47:25.199 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-03-08T22:47:25.199 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-08T22:47:25.223 DEBUG:teuthology.orchestra.run.vm07:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-08T22:47:25.246 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-03-08T22:47:25.246 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm02.local 2026-03-08T22:47:25.246 DEBUG:teuthology.orchestra.run.vm02:> 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-03-08T22:47:25.300 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm07.local 2026-03-08T22:47:25.300 DEBUG:teuthology.orchestra.run.vm07:> 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-03-08T22:47:25.312 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-03-08T22:47:25.312 DEBUG:teuthology.orchestra.run.vm02:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-08T22:47:25.343 DEBUG:teuthology.orchestra.run.vm07:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-08T22:47:25.370 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-03-08T22:47:25.370 DEBUG:teuthology.orchestra.run.vm02:> 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-03-08T22:47:25.403 DEBUG:teuthology.orchestra.run.vm07:> 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-03-08T22:47:25.408 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-08T22:47:25.408 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-08T22:47:25.409 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-08T22:47:25.409 INFO:teuthology.orchestra.run.vm02.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-03-08T22:47:25.409 INFO:teuthology.orchestra.run.vm02.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-08T22:47:25.412 INFO:teuthology.orchestra.run.vm02.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 83.5% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-08T22:47:25.417 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-08T22:47:25.417 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-08T22:47:25.417 INFO:teuthology.orchestra.run.vm07.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-03-08T22:47:25.417 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-08T22:47:25.418 INFO:teuthology.orchestra.run.vm07.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0%/home/ubuntu/cephtest/archive/syslog/journalctl.log: -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-08T22:47:25.420 INFO:teuthology.orchestra.run.vm07.stderr: 83.5% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-08T22:47:25.421 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-03-08T22:47:25.424 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-03-08T22:47:25.424 DEBUG:teuthology.orchestra.run.vm02:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-08T22:47:25.460 DEBUG:teuthology.orchestra.run.vm07:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-08T22:47:25.469 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-03-08T22:47:25.472 DEBUG:teuthology.orchestra.run.vm02:> 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-03-08T22:47:25.504 DEBUG:teuthology.orchestra.run.vm07:> 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-03-08T22:47:25.511 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern = core 2026-03-08T22:47:25.518 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern = core 2026-03-08T22:47:25.526 DEBUG:teuthology.orchestra.run.vm02:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-08T22:47:25.565 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T22:47:25.565 DEBUG:teuthology.orchestra.run.vm07:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-08T22:47:25.569 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T22:47:25.569 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-03-08T22:47:25.571 INFO:teuthology.task.internal:Transferring archived files... 2026-03-08T22:47:25.571 DEBUG:teuthology.misc:Transferring archived files from vm02:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/287/remote/vm02 2026-03-08T22:47:25.571 DEBUG:teuthology.orchestra.run.vm02:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-08T22:47:25.615 DEBUG:teuthology.misc:Transferring archived files from vm07:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/287/remote/vm07 2026-03-08T22:47:25.615 DEBUG:teuthology.orchestra.run.vm07:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-08T22:47:25.623 INFO:teuthology.task.internal:Removing archive directory... 2026-03-08T22:47:25.623 DEBUG:teuthology.orchestra.run.vm02:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-08T22:47:25.659 DEBUG:teuthology.orchestra.run.vm07:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-08T22:47:25.669 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-03-08T22:47:25.671 INFO:teuthology.task.internal:Not uploading archives. 2026-03-08T22:47:25.671 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-03-08T22:47:25.673 INFO:teuthology.task.internal:Tidying up after the test... 2026-03-08T22:47:25.674 DEBUG:teuthology.orchestra.run.vm02:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-08T22:47:25.703 DEBUG:teuthology.orchestra.run.vm07:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-08T22:47:25.705 INFO:teuthology.orchestra.run.vm02.stdout: 258079 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 8 22:47 /home/ubuntu/cephtest 2026-03-08T22:47:25.713 INFO:teuthology.orchestra.run.vm07.stdout: 258067 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 8 22:47 /home/ubuntu/cephtest 2026-03-08T22:47:25.717 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-03-08T22:47:25.739 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 154.75162172317505 failure_reason: 'Command failed on vm02 with status 1: "grep ''^nvme_loop'' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype"' owner: kyr sentry_event: null status: fail success: false 2026-03-08T22:47:25.739 DEBUG:teuthology.report:Pushing job info to http://localhost:8080 2026-03-08T22:47:25.763 INFO:teuthology.run:FAIL