2026-03-09T17:10:00.364 INFO:root:teuthology version: 1.2.4.dev6+g1c580df7a 2026-03-09T17:10:00.369 DEBUG:teuthology.report:Pushing job info to http://localhost:8080 2026-03-09T17:10:00.391 INFO:teuthology.run:Config: archive_path: /archive/kyr-2026-03-09_11:23:05-orch-squid-none-default-vps/580 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: null first_in_suite: false flavor: default job_id: '580' last_in_suite: false machine_type: vps name: kyr-2026-03-09_11:23:05-orch-squid-none-default-vps no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream 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 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 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: 3443 sha1: e911bdebe5c8faa3800735d1568fcdca65db60df sleep_before_teardown: 0 subset: 1/64 suite: orch 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: vm04.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCAZcpmLmytqHehBroMIXFokkRQox5k+xdDYOKmg2hLJTxwI3uuI+OV9y2QhMgfkDRrAzVVBPz+cLGk3q5ILUwM= vm07.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLgpeWmMGzdpqz1Rp3CBmpYR7Y80+NG5SfqEZWvhBrk6ZgMUiA9BASlO50t5yso8yvYBf005AvcOeqXyhFHTXM4= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install runc nvmetcli nvme-cli -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - 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 --bucket foobucket --cluster-id foo --pseudo-path /foobucket - 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}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/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 /foobucket - 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-09_11:23:05 tube: vps user: kyr verbose: false worker_log: /home/teuthos/.teuthology/dispatcher/dispatcher.vps.611473 2026-03-09T17:10:00.391 INFO:teuthology.run:suite_path is set to /home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa; will attempt to use it 2026-03-09T17:10:00.392 INFO:teuthology.run:Found tasks at /home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa/tasks 2026-03-09T17:10:00.392 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-03-09T17:10:00.392 INFO:teuthology.task.internal:Checking packages... 2026-03-09T17:10:00.392 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'e911bdebe5c8faa3800735d1568fcdca65db60df' 2026-03-09T17:10:00.392 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-03-09T17:10:00.392 INFO:teuthology.packaging:ref: None 2026-03-09T17:10:00.392 INFO:teuthology.packaging:tag: None 2026-03-09T17:10:00.392 INFO:teuthology.packaging:branch: squid 2026-03-09T17:10:00.392 INFO:teuthology.packaging:sha1: e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-09T17:10:00.392 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2026-03-09T17:10:01.156 INFO:teuthology.task.internal:Found packages for ceph version 19.2.3-678.ge911bdeb 2026-03-09T17:10:01.157 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-03-09T17:10:01.158 INFO:teuthology.task.internal:no buildpackages task found 2026-03-09T17:10:01.158 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-03-09T17:10:01.158 INFO:teuthology.task.internal:Saving configuration 2026-03-09T17:10:01.164 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-03-09T17:10:01.165 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-03-09T17:10:01.171 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm04.local', 'description': '/archive/kyr-2026-03-09_11:23:05-orch-squid-none-default-vps/580', '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': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-03-09 17:08:52.531719', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:04', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCAZcpmLmytqHehBroMIXFokkRQox5k+xdDYOKmg2hLJTxwI3uuI+OV9y2QhMgfkDRrAzVVBPz+cLGk3q5ILUwM='} 2026-03-09T17:10:01.177 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm07.local', 'description': '/archive/kyr-2026-03-09_11:23:05-orch-squid-none-default-vps/580', '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': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-03-09 17:08:52.532249', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:07', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLgpeWmMGzdpqz1Rp3CBmpYR7Y80+NG5SfqEZWvhBrk6ZgMUiA9BASlO50t5yso8yvYBf005AvcOeqXyhFHTXM4='} 2026-03-09T17:10:01.178 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-03-09T17:10:01.178 INFO:teuthology.task.internal:roles: ubuntu@vm04.local - ['host.a', 'client.0'] 2026-03-09T17:10:01.178 INFO:teuthology.task.internal:roles: ubuntu@vm07.local - ['host.b', 'client.1'] 2026-03-09T17:10:01.178 INFO:teuthology.run_tasks:Running task console_log... 2026-03-09T17:10:01.185 DEBUG:teuthology.task.console_log:vm04 does not support IPMI; excluding 2026-03-09T17:10:01.190 DEBUG:teuthology.task.console_log:vm07 does not support IPMI; excluding 2026-03-09T17:10:01.191 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f4b55c22170>, signals=[15]) 2026-03-09T17:10:01.191 INFO:teuthology.run_tasks:Running task internal.connect... 2026-03-09T17:10:01.192 INFO:teuthology.task.internal:Opening connections... 2026-03-09T17:10:01.192 DEBUG:teuthology.task.internal:connecting to ubuntu@vm04.local 2026-03-09T17:10:01.192 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm04.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-09T17:10:01.254 DEBUG:teuthology.task.internal:connecting to ubuntu@vm07.local 2026-03-09T17:10:01.254 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm07.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-09T17:10:01.313 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-03-09T17:10:01.315 DEBUG:teuthology.orchestra.run.vm04:> uname -m 2026-03-09T17:10:01.363 INFO:teuthology.orchestra.run.vm04.stdout:x86_64 2026-03-09T17:10:01.363 DEBUG:teuthology.orchestra.run.vm04:> cat /etc/os-release 2026-03-09T17:10:01.419 INFO:teuthology.orchestra.run.vm04.stdout:NAME="CentOS Stream" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:VERSION="9" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:ID="centos" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:ID_LIKE="rhel fedora" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:VERSION_ID="9" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:PLATFORM_ID="platform:el9" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:PRETTY_NAME="CentOS Stream 9" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:ANSI_COLOR="0;31" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:LOGO="fedora-logo-icon" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:HOME_URL="https://centos.org/" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-03-09T17:10:01.420 INFO:teuthology.orchestra.run.vm04.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-03-09T17:10:01.420 INFO:teuthology.lock.ops:Updating vm04.local on lock server 2026-03-09T17:10:01.425 DEBUG:teuthology.orchestra.run.vm07:> uname -m 2026-03-09T17:10:01.440 INFO:teuthology.orchestra.run.vm07.stdout:x86_64 2026-03-09T17:10:01.440 DEBUG:teuthology.orchestra.run.vm07:> cat /etc/os-release 2026-03-09T17:10:01.495 INFO:teuthology.orchestra.run.vm07.stdout:NAME="CentOS Stream" 2026-03-09T17:10:01.495 INFO:teuthology.orchestra.run.vm07.stdout:VERSION="9" 2026-03-09T17:10:01.495 INFO:teuthology.orchestra.run.vm07.stdout:ID="centos" 2026-03-09T17:10:01.495 INFO:teuthology.orchestra.run.vm07.stdout:ID_LIKE="rhel fedora" 2026-03-09T17:10:01.495 INFO:teuthology.orchestra.run.vm07.stdout:VERSION_ID="9" 2026-03-09T17:10:01.495 INFO:teuthology.orchestra.run.vm07.stdout:PLATFORM_ID="platform:el9" 2026-03-09T17:10:01.495 INFO:teuthology.orchestra.run.vm07.stdout:PRETTY_NAME="CentOS Stream 9" 2026-03-09T17:10:01.495 INFO:teuthology.orchestra.run.vm07.stdout:ANSI_COLOR="0;31" 2026-03-09T17:10:01.496 INFO:teuthology.orchestra.run.vm07.stdout:LOGO="fedora-logo-icon" 2026-03-09T17:10:01.496 INFO:teuthology.orchestra.run.vm07.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-03-09T17:10:01.496 INFO:teuthology.orchestra.run.vm07.stdout:HOME_URL="https://centos.org/" 2026-03-09T17:10:01.496 INFO:teuthology.orchestra.run.vm07.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-03-09T17:10:01.496 INFO:teuthology.orchestra.run.vm07.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-03-09T17:10:01.496 INFO:teuthology.orchestra.run.vm07.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-03-09T17:10:01.496 INFO:teuthology.lock.ops:Updating vm07.local on lock server 2026-03-09T17:10:01.501 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-03-09T17:10:01.503 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-03-09T17:10:01.504 INFO:teuthology.task.internal:Checking for old test directory... 2026-03-09T17:10:01.504 DEBUG:teuthology.orchestra.run.vm04:> test '!' -e /home/ubuntu/cephtest 2026-03-09T17:10:01.506 DEBUG:teuthology.orchestra.run.vm07:> test '!' -e /home/ubuntu/cephtest 2026-03-09T17:10:01.550 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-03-09T17:10:01.551 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-03-09T17:10:01.551 DEBUG:teuthology.orchestra.run.vm04:> test -z $(ls -A /var/lib/ceph) 2026-03-09T17:10:01.563 DEBUG:teuthology.orchestra.run.vm07:> test -z $(ls -A /var/lib/ceph) 2026-03-09T17:10:01.577 INFO:teuthology.orchestra.run.vm04.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-09T17:10:01.608 INFO:teuthology.orchestra.run.vm07.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-09T17:10:01.609 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-03-09T17:10:01.616 DEBUG:teuthology.orchestra.run.vm04:> test -e /ceph-qa-ready 2026-03-09T17:10:01.633 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T17:10:01.833 DEBUG:teuthology.orchestra.run.vm07:> test -e /ceph-qa-ready 2026-03-09T17:10:01.849 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T17:10:02.035 INFO:teuthology.run_tasks:Running task internal.base... 2026-03-09T17:10:02.036 INFO:teuthology.task.internal:Creating test directory... 2026-03-09T17:10:02.036 DEBUG:teuthology.orchestra.run.vm04:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-09T17:10:02.038 DEBUG:teuthology.orchestra.run.vm07:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-09T17:10:02.055 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-03-09T17:10:02.056 INFO:teuthology.run_tasks:Running task internal.archive... 2026-03-09T17:10:02.057 INFO:teuthology.task.internal:Creating archive directory... 2026-03-09T17:10:02.057 DEBUG:teuthology.orchestra.run.vm04:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-09T17:10:02.097 DEBUG:teuthology.orchestra.run.vm07:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-09T17:10:02.115 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-03-09T17:10:02.116 INFO:teuthology.task.internal:Enabling coredump saving... 2026-03-09T17:10:02.116 DEBUG:teuthology.orchestra.run.vm04:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-09T17:10:02.170 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T17:10:02.170 DEBUG:teuthology.orchestra.run.vm07:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-09T17:10:02.185 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T17:10:02.185 DEBUG:teuthology.orchestra.run.vm04:> 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-09T17:10:02.212 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-09T17:10:02.235 INFO:teuthology.orchestra.run.vm04.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-09T17:10:02.246 INFO:teuthology.orchestra.run.vm04.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-09T17:10:02.250 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-09T17:10:02.260 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-09T17:10:02.261 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-03-09T17:10:02.263 INFO:teuthology.task.internal:Configuring sudo... 2026-03-09T17:10:02.263 DEBUG:teuthology.orchestra.run.vm04:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-03-09T17:10:02.290 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-09T17:10:02.325 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-03-09T17:10:02.327 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-03-09T17:10:02.327 DEBUG:teuthology.orchestra.run.vm04:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-09T17:10:02.356 DEBUG:teuthology.orchestra.run.vm07:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-09T17:10:02.382 DEBUG:teuthology.orchestra.run.vm04:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-09T17:10:02.434 DEBUG:teuthology.orchestra.run.vm04:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-09T17:10:02.489 DEBUG:teuthology.orchestra.run.vm04:> set -ex 2026-03-09T17:10:02.489 DEBUG:teuthology.orchestra.run.vm04:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-09T17:10:02.550 DEBUG:teuthology.orchestra.run.vm07:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-09T17:10:02.575 DEBUG:teuthology.orchestra.run.vm07:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-09T17:10:02.633 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-09T17:10:02.633 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-09T17:10:02.697 DEBUG:teuthology.orchestra.run.vm04:> sudo service rsyslog restart 2026-03-09T17:10:02.699 DEBUG:teuthology.orchestra.run.vm07:> sudo service rsyslog restart 2026-03-09T17:10:02.728 INFO:teuthology.orchestra.run.vm04.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-09T17:10:02.768 INFO:teuthology.orchestra.run.vm07.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-09T17:10:03.158 INFO:teuthology.run_tasks:Running task internal.timer... 2026-03-09T17:10:03.159 INFO:teuthology.task.internal:Starting timer... 2026-03-09T17:10:03.159 INFO:teuthology.run_tasks:Running task pcp... 2026-03-09T17:10:03.162 INFO:teuthology.run_tasks:Running task selinux... 2026-03-09T17:10:03.164 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2026-03-09T17:10:03.164 INFO:teuthology.task.selinux:Excluding vm04: VMs are not yet supported 2026-03-09T17:10:03.164 INFO:teuthology.task.selinux:Excluding vm07: VMs are not yet supported 2026-03-09T17:10:03.164 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-03-09T17:10:03.164 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2026-03-09T17:10:03.164 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-03-09T17:10:03.164 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-03-09T17:10:03.166 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-09T17:10:03.166 DEBUG:teuthology.repo_utils:Setting repo remote to https://github.com/ceph/ceph-cm-ansible.git 2026-03-09T17:10:03.168 INFO:teuthology.repo_utils:Fetching github.com_ceph_ceph-cm-ansible_main from origin 2026-03-09T17:10:03.676 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthos/src/github.com_ceph_ceph-cm-ansible_main to origin/main 2026-03-09T17:10:03.681 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-09T17:10:03.682 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu", "timezone": "UTC"}' -i /tmp/teuth_ansible_inventory2o07ljug --limit vm04.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-09T17:11:01.937 INFO:teuthology.task.ansible:Archiving ansible failure log at: /archive/kyr-2026-03-09_11:23:05-orch-squid-none-default-vps/580/ansible_failures.yaml 2026-03-09T17:11:01.937 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/teuthology/teuthology/task/__init__.py", line 123, in __enter__ self.begin() File "/home/teuthos/teuthology/teuthology/task/ansible.py", line 490, in begin super(CephLab, self).begin() File "/home/teuthos/teuthology/teuthology/task/ansible.py", line 324, in begin self.execute_playbook() File "/home/teuthos/teuthology/teuthology/task/ansible.py", line 356, in execute_playbook self._handle_failure(command, status) File "/home/teuthos/teuthology/teuthology/task/ansible.py", line 384, in _handle_failure raise AnsibleFailedError(failures) teuthology.exceptions.AnsibleFailedError: vm07.local: _ansible_no_log: false changed: false invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false best: null bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - ceph - ceph-base - ceph-selinux - ceph-common - ceph-debuginfo - ceph-release - libcephfs1 - ceph-radosgw - python-ceph - python-rados - python-rbd - python-cephfs - librbd1 - librados2 - mod_fastcgi nobest: null releasever: null security: false skip_broken: false sslverify: true state: absent update_cache: false update_only: false use_backend: auto validate_certs: true msg: 'Failed to download metadata for repo ''baseos'': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried' rc: 1 results: []vm04.local: _ansible_no_log: false changed: false invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false best: null bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - ceph - ceph-base - ceph-selinux - ceph-common - ceph-debuginfo - ceph-release - libcephfs1 - ceph-radosgw - python-ceph - python-rados - python-rbd - python-cephfs - librbd1 - librados2 - mod_fastcgi nobest: null releasever: null security: false skip_broken: false sslverify: true state: absent update_cache: false update_only: false use_backend: auto validate_certs: true msg: 'Failed to download metadata for repo ''baseos'': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried' rc: 1 results: [] 2026-03-09T17:11:01.938 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-03-09T17:11:01.939 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-03-09T17:11:01.939 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-03-09T17:11:01.941 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-03-09T17:11:01.942 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-03-09T17:11:01.944 INFO:teuthology.task.internal:Duration was 58.784573 seconds 2026-03-09T17:11:01.944 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-03-09T17:11:01.946 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-03-09T17:11:01.946 DEBUG:teuthology.orchestra.run.vm04:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-09T17:11:01.949 DEBUG:teuthology.orchestra.run.vm07:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-09T17:11:01.995 INFO:teuthology.orchestra.run.vm04.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-09T17:11:02.000 INFO:teuthology.orchestra.run.vm07.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-09T17:11:14.549 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-03-09T17:11:14.549 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm04.local 2026-03-09T17:11:14.549 DEBUG:teuthology.orchestra.run.vm04:> 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-09T17:11:14.598 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm07.local 2026-03-09T17:11:14.598 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-09T17:11:14.638 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-03-09T17:11:14.638 DEBUG:teuthology.orchestra.run.vm04:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T17:11:14.640 DEBUG:teuthology.orchestra.run.vm07:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T17:11:14.811 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-03-09T17:11:14.812 DEBUG:teuthology.orchestra.run.vm04:> 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-09T17:11:14.814 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-09T17:11:14.839 INFO:teuthology.orchestra.run.vm04.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-09T17:11:14.840 INFO:teuthology.orchestra.run.vm04.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-09T17:11:14.840 INFO:teuthology.orchestra.run.vm04.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-09T17:11:14.840 INFO:teuthology.orchestra.run.vm04.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T17:11:14.843 INFO:teuthology.orchestra.run.vm04.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-03-09T17:11:14.848 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-09T17:11:14.849 INFO:teuthology.orchestra.run.vm07.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-09T17:11:14.849 INFO:teuthology.orchestra.run.vm07.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gzgzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T17:11:14.849 INFO:teuthology.orchestra.run.vm07.stderr: 2026-03-09T17:11:14.849 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-09T17:11:14.876 INFO:teuthology.orchestra.run.vm04.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 98.1% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-09T17:11:14.881 INFO:teuthology.orchestra.run.vm07.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 98.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-09T17:11:14.882 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-03-09T17:11:14.885 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-03-09T17:11:14.885 DEBUG:teuthology.orchestra.run.vm04:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-09T17:11:14.950 DEBUG:teuthology.orchestra.run.vm07:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-09T17:11:14.985 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-03-09T17:11:14.987 DEBUG:teuthology.orchestra.run.vm04:> 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-09T17:11:14.992 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-09T17:11:15.025 INFO:teuthology.orchestra.run.vm04.stdout:kernel.core_pattern = core 2026-03-09T17:11:15.065 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern = core 2026-03-09T17:11:15.083 DEBUG:teuthology.orchestra.run.vm04:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-09T17:11:15.102 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T17:11:15.102 DEBUG:teuthology.orchestra.run.vm07:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-09T17:11:15.147 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T17:11:15.147 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-03-09T17:11:15.149 INFO:teuthology.task.internal:Transferring archived files... 2026-03-09T17:11:15.149 DEBUG:teuthology.misc:Transferring archived files from vm04:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-09_11:23:05-orch-squid-none-default-vps/580/remote/vm04 2026-03-09T17:11:15.149 DEBUG:teuthology.orchestra.run.vm04:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-09T17:11:15.187 DEBUG:teuthology.misc:Transferring archived files from vm07:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-09_11:23:05-orch-squid-none-default-vps/580/remote/vm07 2026-03-09T17:11:15.187 DEBUG:teuthology.orchestra.run.vm07:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-09T17:11:15.223 INFO:teuthology.task.internal:Removing archive directory... 2026-03-09T17:11:15.223 DEBUG:teuthology.orchestra.run.vm04:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-09T17:11:15.231 DEBUG:teuthology.orchestra.run.vm07:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-09T17:11:15.285 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-03-09T17:11:15.287 INFO:teuthology.task.internal:Not uploading archives. 2026-03-09T17:11:15.287 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-03-09T17:11:15.289 INFO:teuthology.task.internal:Tidying up after the test... 2026-03-09T17:11:15.289 DEBUG:teuthology.orchestra.run.vm04:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-09T17:11:15.291 DEBUG:teuthology.orchestra.run.vm07:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-09T17:11:15.310 INFO:teuthology.orchestra.run.vm04.stdout: 71303424 0 drwxr-xr-x 2 ubuntu ubuntu 6 Mar 9 17:11 /home/ubuntu/cephtest 2026-03-09T17:11:15.349 INFO:teuthology.orchestra.run.vm07.stdout: 71303424 0 drwxr-xr-x 2 ubuntu ubuntu 6 Mar 9 17:11 /home/ubuntu/cephtest 2026-03-09T17:11:15.350 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-03-09T17:11:15.357 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 58.78457260131836 failure_reason: 'vm07.local: _ansible_no_log: false changed: false invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false best: null bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - ceph - ceph-base - ceph-selinux - ceph-common - ceph-debuginfo - ceph-release - libcephfs1 - ceph-radosgw - python-ceph - python-rados - python-rbd - python-cephfs - librbd1 - librados2 - mod_fastcgi nobest: null releasever: null security: false skip_broken: false sslverify: true state: absent update_cache: false update_only: false use_backend: auto validate_certs: true msg: ''Failed to download metadata for repo ''''baseos'''': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried'' rc: 1 results: []vm04.local: _ansible_no_log: false changed: false invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false best: null bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - ceph - ceph-base - ceph-selinux - ceph-common - ceph-debuginfo - ceph-release - libcephfs1 - ceph-radosgw - python-ceph - python-rados - python-rbd - python-cephfs - librbd1 - librados2 - mod_fastcgi nobest: null releasever: null security: false skip_broken: false sslverify: true state: absent update_cache: false update_only: false use_backend: auto validate_certs: true msg: ''Failed to download metadata for repo ''''baseos'''': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried'' rc: 1 results: []' owner: kyr sentry_event: null status: dead success: false 2026-03-09T17:11:15.357 DEBUG:teuthology.report:Pushing job info to http://localhost:8080 2026-03-09T17:11:15.375 INFO:teuthology.run:DEAD