2024-04-22T22:29:39.277 INFO:root:teuthology version: 0.0.1.dev269+g9481b1d 2024-04-22T22:29:39.278 DEBUG:teuthology.run:Teuthology command: teuthology --owner scheduled_teuthology@teuthology --description orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --name teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi --archive /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908 --verbose -- /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908/orig.config.yaml 2024-04-22T22:29:39.315 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-22T22:29:39.402 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7668908' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid 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 shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) log-only-match: - CEPHADM_ sha1: 430e09df97c8fc7dc2b2ae424f68ed11366c540f ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 430e09df97c8fc7dc2b2ae424f68ed11366c540f selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 207 sha1: 430e09df97c8fc7dc2b2ae424f68ed11366c540f sleep_before_teardown: 0 subset: 24/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9 targets: smithi077.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHapL71xElS3ceQS/3thhy5sXB1xVPdQr1DCW9l1Dg3KWUebauY2phSfQb3uZo1KPanWUuOKBj9wQR0mGIiXLMw= smithi170.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM9oZwd7oxVU3Px1dEceK9NJl+C+LP5HKkDRNG7nwWD245F3SaB5jer7ZjISbUkmIVZ329yZPKXNuj7wKzPlQr0= 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: main teuthology_sha1: 9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17 timestamp: 2024-04-22_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-22T22:29:39.403 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa; will attempt to use it 2024-04-22T22:29:39.404 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa/tasks 2024-04-22T22:29:39.404 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-22T22:29:39.405 INFO:teuthology.task.internal:Checking packages... 2024-04-22T22:29:39.431 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '430e09df97c8fc7dc2b2ae424f68ed11366c540f' 2024-04-22T22:29:39.431 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-22T22:29:39.431 INFO:teuthology.packaging:ref: None 2024-04-22T22:29:39.431 INFO:teuthology.packaging:tag: None 2024-04-22T22:29:39.431 INFO:teuthology.packaging:branch: squid 2024-04-22T22:29:39.431 INFO:teuthology.packaging:sha1: 430e09df97c8fc7dc2b2ae424f68ed11366c540f 2024-04-22T22:29:39.431 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-04-22T22:29:39.713 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2420.g246d7127 2024-04-22T22:29:39.715 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-22T22:29:39.724 INFO:teuthology.task.internal:no buildpackages task found 2024-04-22T22:29:39.724 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-22T22:29:39.738 INFO:teuthology.task.internal:Saving configuration 2024-04-22T22:29:39.751 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-22T22:29:39.780 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-22T22:29:39.807 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi077.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-22 22:21:55.671334', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHapL71xElS3ceQS/3thhy5sXB1xVPdQr1DCW9l1Dg3KWUebauY2phSfQb3uZo1KPanWUuOKBj9wQR0mGIiXLMw='} 2024-04-22T22:29:39.833 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi170.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-22 22:21:55.669950', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM9oZwd7oxVU3Px1dEceK9NJl+C+LP5HKkDRNG7nwWD245F3SaB5jer7ZjISbUkmIVZ329yZPKXNuj7wKzPlQr0='} 2024-04-22T22:29:39.833 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-22T22:29:39.841 INFO:teuthology.task.internal:roles: ubuntu@smithi077.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-22T22:29:39.842 INFO:teuthology.task.internal:roles: ubuntu@smithi170.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-22T22:29:39.842 INFO:teuthology.run_tasks:Running task console_log... 2024-04-22T22:29:39.924 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7feed7edfee0>, signals=[15]) 2024-04-22T22:29:39.925 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-22T22:29:39.935 INFO:teuthology.task.internal:Opening connections... 2024-04-22T22:29:39.937 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi077.front.sepia.ceph.com 2024-04-22T22:29:39.939 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi077.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-22T22:29:40.017 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi170.front.sepia.ceph.com 2024-04-22T22:29:40.018 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-22T22:29:40.094 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-22T22:29:40.102 DEBUG:teuthology.orchestra.run.smithi077:> uname -m 2024-04-22T22:29:40.120 INFO:teuthology.orchestra.run.smithi077.stdout:x86_64 2024-04-22T22:29:40.120 DEBUG:teuthology.orchestra.run.smithi077:> cat /etc/os-release 2024-04-22T22:29:40.177 INFO:teuthology.orchestra.run.smithi077.stdout:NAME="CentOS Stream" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:VERSION="9" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:ID="centos" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:ID_LIKE="rhel fedora" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:VERSION_ID="9" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:PLATFORM_ID="platform:el9" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:ANSI_COLOR="0;31" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:LOGO="fedora-logo-icon" 2024-04-22T22:29:40.178 INFO:teuthology.orchestra.run.smithi077.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-22T22:29:40.179 INFO:teuthology.orchestra.run.smithi077.stdout:HOME_URL="https://centos.org/" 2024-04-22T22:29:40.179 INFO:teuthology.orchestra.run.smithi077.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-22T22:29:40.179 INFO:teuthology.orchestra.run.smithi077.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-22T22:29:40.179 INFO:teuthology.orchestra.run.smithi077.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-22T22:29:40.180 INFO:teuthology.lock.ops:Updating smithi077.front.sepia.ceph.com on lock server 2024-04-22T22:29:40.203 DEBUG:teuthology.orchestra.run.smithi170:> uname -m 2024-04-22T22:29:40.221 INFO:teuthology.orchestra.run.smithi170.stdout:x86_64 2024-04-22T22:29:40.221 DEBUG:teuthology.orchestra.run.smithi170:> cat /etc/os-release 2024-04-22T22:29:40.279 INFO:teuthology.orchestra.run.smithi170.stdout:NAME="CentOS Stream" 2024-04-22T22:29:40.279 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION="9" 2024-04-22T22:29:40.279 INFO:teuthology.orchestra.run.smithi170.stdout:ID="centos" 2024-04-22T22:29:40.279 INFO:teuthology.orchestra.run.smithi170.stdout:ID_LIKE="rhel fedora" 2024-04-22T22:29:40.279 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION_ID="9" 2024-04-22T22:29:40.279 INFO:teuthology.orchestra.run.smithi170.stdout:PLATFORM_ID="platform:el9" 2024-04-22T22:29:40.279 INFO:teuthology.orchestra.run.smithi170.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-22T22:29:40.279 INFO:teuthology.orchestra.run.smithi170.stdout:ANSI_COLOR="0;31" 2024-04-22T22:29:40.280 INFO:teuthology.orchestra.run.smithi170.stdout:LOGO="fedora-logo-icon" 2024-04-22T22:29:40.280 INFO:teuthology.orchestra.run.smithi170.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-22T22:29:40.280 INFO:teuthology.orchestra.run.smithi170.stdout:HOME_URL="https://centos.org/" 2024-04-22T22:29:40.280 INFO:teuthology.orchestra.run.smithi170.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-22T22:29:40.280 INFO:teuthology.orchestra.run.smithi170.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-22T22:29:40.280 INFO:teuthology.orchestra.run.smithi170.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-22T22:29:40.280 INFO:teuthology.lock.ops:Updating smithi170.front.sepia.ceph.com on lock server 2024-04-22T22:29:40.303 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-22T22:29:40.314 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-22T22:29:40.326 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-22T22:29:40.326 DEBUG:teuthology.orchestra.run.smithi077:> test '!' -e /home/ubuntu/cephtest 2024-04-22T22:29:40.329 DEBUG:teuthology.orchestra.run.smithi170:> test '!' -e /home/ubuntu/cephtest 2024-04-22T22:29:40.347 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-22T22:29:40.358 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-22T22:29:40.358 DEBUG:teuthology.orchestra.run.smithi077:> test -z $(ls -A /var/lib/ceph) 2024-04-22T22:29:40.390 DEBUG:teuthology.orchestra.run.smithi170:> test -z $(ls -A /var/lib/ceph) 2024-04-22T22:29:40.492 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-22T22:29:40.550 INFO:teuthology.run_tasks:Running task kernel... 2024-04-22T22:29:40.569 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-22T22:29:40.569 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-22T22:29:40.569 DEBUG:teuthology.orchestra.run.smithi077:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-22T22:29:40.570 DEBUG:teuthology.orchestra.run.smithi170:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-22T22:29:40.587 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:29:40.587 DEBUG:teuthology.orchestra.run.smithi077:> uname -r 2024-04-22T22:29:40.588 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:29:40.588 DEBUG:teuthology.orchestra.run.smithi170:> uname -r 2024-04-22T22:29:40.647 INFO:teuthology.orchestra.run.smithi077.stdout:5.14.0-437.el9.x86_64 2024-04-22T22:29:40.647 INFO:teuthology.orchestra.run.smithi170.stdout:5.14.0-437.el9.x86_64 2024-04-22T22:29:40.647 INFO:teuthology.task.kernel:Running kernel on smithi077: 5.14.0-437.el9.x86_64 2024-04-22T22:29:40.647 DEBUG:teuthology.orchestra.run.smithi077:> sudo yum install -y kernel 2024-04-22T22:29:40.647 INFO:teuthology.task.kernel:Running kernel on smithi170: 5.14.0-437.el9.x86_64 2024-04-22T22:29:40.648 DEBUG:teuthology.orchestra.run.smithi170:> sudo yum install -y kernel 2024-04-22T22:29:43.145 INFO:teuthology.orchestra.run.smithi170.stdout:CentOS Stream 9 - BaseOS 10 MB/s | 8.0 MB 00:00 2024-04-22T22:29:43.928 INFO:teuthology.orchestra.run.smithi077.stdout:CentOS Stream 9 - BaseOS 4.7 MB/s | 8.0 MB 00:01 2024-04-22T22:29:45.971 INFO:teuthology.orchestra.run.smithi170.stdout:CentOS Stream 9 - AppStream 11 MB/s | 19 MB 00:01 2024-04-22T22:29:50.391 INFO:teuthology.orchestra.run.smithi170.stdout:CentOS Stream 9 - CRB 7.2 MB/s | 6.2 MB 00:00 2024-04-22T22:29:52.348 INFO:teuthology.orchestra.run.smithi170.stdout:CentOS Stream 9 - Extras packages 27 kB/s | 16 kB 00:00 2024-04-22T22:29:53.233 INFO:teuthology.orchestra.run.smithi170.stdout:Extra Packages for Enterprise Linux 27 MB/s | 21 MB 00:00 2024-04-22T22:29:58.316 INFO:teuthology.orchestra.run.smithi170.stdout:lab-extras 13 kB/s | 1.7 kB 00:00 2024-04-22T22:30:00.130 INFO:teuthology.orchestra.run.smithi170.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-22T22:30:00.130 INFO:teuthology.orchestra.run.smithi170.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-04-22T22:30:00.232 INFO:teuthology.orchestra.run.smithi170.stdout:Dependencies resolved. 2024-04-22T22:30:00.233 INFO:teuthology.orchestra.run.smithi170.stdout:Nothing to do. 2024-04-22T22:30:00.233 INFO:teuthology.orchestra.run.smithi170.stdout:Complete! 2024-04-22T22:30:00.365 DEBUG:teuthology.orchestra.run.smithi170:> echo no | sudo yum reinstall kernel || true 2024-04-22T22:30:00.901 INFO:teuthology.orchestra.run.smithi170.stdout:Last metadata expiration check: 0:00:02 ago on Mon 22 Apr 2024 10:29:58 PM UTC. 2024-04-22T22:30:01.043 INFO:teuthology.orchestra.run.smithi170.stdout:Dependencies resolved. 2024-04-22T22:30:01.053 INFO:teuthology.orchestra.run.smithi170.stdout:================================================================================ 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout: Package Architecture Version Repository Size 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout:================================================================================ 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout:Reinstalling: 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout: kernel x86_64 5.14.0-437.el9 baseos 255 k 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout:Transaction Summary 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout:================================================================================ 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout:Total download size: 255 k 2024-04-22T22:30:01.054 INFO:teuthology.orchestra.run.smithi170.stdout:Installed size: 0 2024-04-22T22:30:01.055 INFO:teuthology.orchestra.run.smithi170.stderr:Operation aborted. 2024-04-22T22:30:01.114 INFO:teuthology.orchestra.run.smithi170.stdout:Is this ok [y/N]: 2024-04-22T22:30:01.114 DEBUG:teuthology.orchestra.run.smithi170:> sudo yum reinstall -y kernel || true 2024-04-22T22:30:01.604 INFO:teuthology.orchestra.run.smithi170.stdout:Last metadata expiration check: 0:00:03 ago on Mon 22 Apr 2024 10:29:58 PM UTC. 2024-04-22T22:30:01.720 INFO:teuthology.orchestra.run.smithi170.stdout:Dependencies resolved. 2024-04-22T22:30:01.721 INFO:teuthology.orchestra.run.smithi170.stdout:================================================================================ 2024-04-22T22:30:01.721 INFO:teuthology.orchestra.run.smithi170.stdout: Package Architecture Version Repository Size 2024-04-22T22:30:01.721 INFO:teuthology.orchestra.run.smithi170.stdout:================================================================================ 2024-04-22T22:30:01.721 INFO:teuthology.orchestra.run.smithi170.stdout:Reinstalling: 2024-04-22T22:30:01.721 INFO:teuthology.orchestra.run.smithi170.stdout: kernel x86_64 5.14.0-437.el9 baseos 255 k 2024-04-22T22:30:01.721 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-04-22T22:30:01.722 INFO:teuthology.orchestra.run.smithi170.stdout:Transaction Summary 2024-04-22T22:30:01.722 INFO:teuthology.orchestra.run.smithi170.stdout:================================================================================ 2024-04-22T22:30:01.722 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-04-22T22:30:01.722 INFO:teuthology.orchestra.run.smithi170.stdout:Total download size: 255 k 2024-04-22T22:30:01.722 INFO:teuthology.orchestra.run.smithi170.stdout:Installed size: 0 2024-04-22T22:30:01.722 INFO:teuthology.orchestra.run.smithi170.stdout:Downloading Packages: 2024-04-22T22:30:01.951 INFO:teuthology.orchestra.run.smithi170.stdout:kernel-5.14.0-437.el9.x86_64.rpm 1.5 MB/s | 255 kB 00:00 2024-04-22T22:30:01.951 INFO:teuthology.orchestra.run.smithi170.stdout:-------------------------------------------------------------------------------- 2024-04-22T22:30:01.951 INFO:teuthology.orchestra.run.smithi170.stdout:Total 1.1 MB/s | 255 kB 00:00 2024-04-22T22:30:01.967 INFO:teuthology.orchestra.run.smithi170.stdout:Running transaction check 2024-04-22T22:30:02.149 INFO:teuthology.orchestra.run.smithi170.stdout:Transaction check succeeded. 2024-04-22T22:30:02.150 INFO:teuthology.orchestra.run.smithi170.stdout:Running transaction test 2024-04-22T22:30:02.155 INFO:teuthology.orchestra.run.smithi170.stdout:Transaction test succeeded. 2024-04-22T22:30:02.155 INFO:teuthology.orchestra.run.smithi170.stdout:Running transaction 2024-04-22T22:30:02.284 INFO:teuthology.orchestra.run.smithi170.stdout: Preparing : 1/1 2024-04-22T22:30:02.352 INFO:teuthology.orchestra.run.smithi170.stdout: Reinstalling : kernel-5.14.0-437.el9.x86_64 1/2 2024-04-22T22:30:02.352 INFO:teuthology.orchestra.run.smithi170.stdout: Cleanup : kernel-5.14.0-437.el9.x86_64 2/2 2024-04-22T22:30:03.009 INFO:teuthology.orchestra.run.smithi170.stdout: Running scriptlet: kernel-5.14.0-437.el9.x86_64 2/2 2024-04-22T22:30:03.009 INFO:teuthology.orchestra.run.smithi170.stdout: Verifying : kernel-5.14.0-437.el9.x86_64 1/2 2024-04-22T22:30:03.727 INFO:teuthology.orchestra.run.smithi170.stdout: Verifying : kernel-5.14.0-437.el9.x86_64 2/2 2024-04-22T22:30:03.728 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-04-22T22:30:03.728 INFO:teuthology.orchestra.run.smithi170.stdout:Reinstalled: 2024-04-22T22:30:03.728 INFO:teuthology.orchestra.run.smithi170.stdout: kernel-5.14.0-437.el9.x86_64 2024-04-22T22:30:03.728 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-04-22T22:30:03.728 INFO:teuthology.orchestra.run.smithi170.stdout:Complete! 2024-04-22T22:30:03.917 DEBUG:teuthology.orchestra.run.smithi170:> rpm -q kernel | sort -rV | head -n 1 2024-04-22T22:30:03.964 INFO:teuthology.orchestra.run.smithi170.stdout:kernel-5.14.0-437.el9.x86_64 2024-04-22T22:30:03.964 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-437.el9.x86_64 2024-04-22T22:30:03.964 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-04-22T22:30:03.964 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-22T22:30:03.965 DEBUG:teuthology.orchestra.run.smithi170:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-22T22:30:03.997 INFO:teuthology.orchestra.run.smithi170.stdout:ttyS1 2024-04-22T22:30:04.019 DEBUG:teuthology.parallel:result is None 2024-04-22T22:30:05.803 INFO:teuthology.orchestra.run.smithi077.stdout:CentOS Stream 9 - AppStream 936 kB/s | 19 MB 00:20 2024-04-22T22:30:10.089 INFO:teuthology.orchestra.run.smithi077.stdout:CentOS Stream 9 - CRB 8.4 MB/s | 6.2 MB 00:00 2024-04-22T22:30:11.704 INFO:teuthology.orchestra.run.smithi077.stdout:CentOS Stream 9 - Extras packages 56 kB/s | 16 kB 00:00 2024-04-22T22:30:21.563 INFO:teuthology.orchestra.run.smithi077.stdout:Extra Packages for Enterprise Linux 2.1 MB/s | 21 MB 00:09 2024-04-22T22:30:26.539 INFO:teuthology.orchestra.run.smithi077.stdout:lab-extras 32 kB/s | 1.7 kB 00:00 2024-04-22T22:30:28.403 INFO:teuthology.orchestra.run.smithi077.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-22T22:30:28.403 INFO:teuthology.orchestra.run.smithi077.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-04-22T22:30:28.473 INFO:teuthology.orchestra.run.smithi077.stdout:Dependencies resolved. 2024-04-22T22:30:28.474 INFO:teuthology.orchestra.run.smithi077.stdout:Nothing to do. 2024-04-22T22:30:28.474 INFO:teuthology.orchestra.run.smithi077.stdout:Complete! 2024-04-22T22:30:28.578 DEBUG:teuthology.orchestra.run.smithi077:> echo no | sudo yum reinstall kernel || true 2024-04-22T22:30:29.074 INFO:teuthology.orchestra.run.smithi077.stdout:Last metadata expiration check: 0:00:03 ago on Mon 22 Apr 2024 10:30:26 PM UTC. 2024-04-22T22:30:29.216 INFO:teuthology.orchestra.run.smithi077.stdout:Dependencies resolved. 2024-04-22T22:30:29.220 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout: Package Architecture Version Repository Size 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout:Reinstalling: 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout: kernel x86_64 5.14.0-437.el9 baseos 255 k 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction Summary 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout:Total download size: 255 k 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stdout:Installed size: 0 2024-04-22T22:30:29.221 INFO:teuthology.orchestra.run.smithi077.stderr:Operation aborted. 2024-04-22T22:30:29.280 INFO:teuthology.orchestra.run.smithi077.stdout:Is this ok [y/N]: 2024-04-22T22:30:29.280 DEBUG:teuthology.orchestra.run.smithi077:> sudo yum reinstall -y kernel || true 2024-04-22T22:30:29.771 INFO:teuthology.orchestra.run.smithi077.stdout:Last metadata expiration check: 0:00:03 ago on Mon 22 Apr 2024 10:30:26 PM UTC. 2024-04-22T22:30:29.886 INFO:teuthology.orchestra.run.smithi077.stdout:Dependencies resolved. 2024-04-22T22:30:29.886 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-04-22T22:30:29.886 INFO:teuthology.orchestra.run.smithi077.stdout: Package Architecture Version Repository Size 2024-04-22T22:30:29.886 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout:Reinstalling: 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout: kernel x86_64 5.14.0-437.el9 baseos 255 k 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction Summary 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout:Total download size: 255 k 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout:Installed size: 0 2024-04-22T22:30:29.887 INFO:teuthology.orchestra.run.smithi077.stdout:Downloading Packages: 2024-04-22T22:30:30.041 INFO:teuthology.orchestra.run.smithi077.stdout:kernel-5.14.0-437.el9.x86_64.rpm 2.7 MB/s | 255 kB 00:00 2024-04-22T22:30:30.041 INFO:teuthology.orchestra.run.smithi077.stdout:-------------------------------------------------------------------------------- 2024-04-22T22:30:30.041 INFO:teuthology.orchestra.run.smithi077.stdout:Total 1.6 MB/s | 255 kB 00:00 2024-04-22T22:30:30.056 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction check 2024-04-22T22:30:30.246 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction check succeeded. 2024-04-22T22:30:30.246 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction test 2024-04-22T22:30:30.251 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction test succeeded. 2024-04-22T22:30:30.251 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction 2024-04-22T22:30:30.388 INFO:teuthology.orchestra.run.smithi077.stdout: Preparing : 1/1 2024-04-22T22:30:30.459 INFO:teuthology.orchestra.run.smithi077.stdout: Reinstalling : kernel-5.14.0-437.el9.x86_64 1/2 2024-04-22T22:30:30.459 INFO:teuthology.orchestra.run.smithi077.stdout: Cleanup : kernel-5.14.0-437.el9.x86_64 2/2 2024-04-22T22:30:31.086 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: kernel-5.14.0-437.el9.x86_64 2/2 2024-04-22T22:30:31.086 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : kernel-5.14.0-437.el9.x86_64 1/2 2024-04-22T22:30:31.775 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : kernel-5.14.0-437.el9.x86_64 2/2 2024-04-22T22:30:31.776 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-04-22T22:30:31.776 INFO:teuthology.orchestra.run.smithi077.stdout:Reinstalled: 2024-04-22T22:30:31.776 INFO:teuthology.orchestra.run.smithi077.stdout: kernel-5.14.0-437.el9.x86_64 2024-04-22T22:30:31.776 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-04-22T22:30:31.776 INFO:teuthology.orchestra.run.smithi077.stdout:Complete! 2024-04-22T22:30:31.936 DEBUG:teuthology.orchestra.run.smithi077:> rpm -q kernel | sort -rV | head -n 1 2024-04-22T22:30:31.982 INFO:teuthology.orchestra.run.smithi077.stdout:kernel-5.14.0-437.el9.x86_64 2024-04-22T22:30:31.983 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-437.el9.x86_64 2024-04-22T22:30:31.983 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-04-22T22:30:31.983 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-22T22:30:31.983 DEBUG:teuthology.orchestra.run.smithi077:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-22T22:30:32.017 INFO:teuthology.orchestra.run.smithi077.stdout:ttyS1 2024-04-22T22:30:32.040 DEBUG:teuthology.parallel:result is None 2024-04-22T22:30:32.040 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-22T22:30:32.054 INFO:teuthology.task.internal:Creating test directory... 2024-04-22T22:30:32.055 DEBUG:teuthology.orchestra.run.smithi077:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-22T22:30:32.083 DEBUG:teuthology.orchestra.run.smithi170:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-22T22:30:32.101 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-22T22:30:32.109 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-22T22:30:32.120 INFO:teuthology.task.internal:Creating archive directory... 2024-04-22T22:30:32.120 DEBUG:teuthology.orchestra.run.smithi077:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-22T22:30:32.138 DEBUG:teuthology.orchestra.run.smithi170:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-22T22:30:32.165 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-22T22:30:32.174 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-22T22:30:32.174 DEBUG:teuthology.orchestra.run.smithi077:> 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 2024-04-22T22:30:32.204 DEBUG:teuthology.orchestra.run.smithi170:> 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 2024-04-22T22:30:32.231 INFO:teuthology.orchestra.run.smithi077.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-22T22:30:32.243 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-22T22:30:32.244 INFO:teuthology.orchestra.run.smithi077.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-22T22:30:32.253 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-22T22:30:32.255 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-22T22:30:32.263 INFO:teuthology.task.internal:Configuring sudo... 2024-04-22T22:30:32.263 DEBUG:teuthology.orchestra.run.smithi077:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-22T22:30:32.287 DEBUG:teuthology.orchestra.run.smithi170:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-22T22:30:32.321 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-22T22:30:32.330 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-22T22:30:32.330 DEBUG:teuthology.orchestra.run.smithi077:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-22T22:30:32.350 DEBUG:teuthology.orchestra.run.smithi170:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-22T22:30:32.376 DEBUG:teuthology.orchestra.run.smithi077:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-22T22:30:32.444 DEBUG:teuthology.orchestra.run.smithi077:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-22T22:30:32.493 DEBUG:teuthology.orchestra.run.smithi077:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-22T22:30:32.577 DEBUG:teuthology.orchestra.run.smithi077:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-22T22:30:32.614 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-04-22T22:30:32.614 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-22T22:30:32.678 DEBUG:teuthology.orchestra.run.smithi170:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-22T22:30:32.723 DEBUG:teuthology.orchestra.run.smithi170:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-22T22:30:32.778 DEBUG:teuthology.orchestra.run.smithi170:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-22T22:30:32.861 DEBUG:teuthology.orchestra.run.smithi170:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-22T22:30:32.901 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-22T22:30:32.901 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-22T22:30:32.967 DEBUG:teuthology.orchestra.run.smithi077:> sudo service rsyslog restart 2024-04-22T22:30:32.969 DEBUG:teuthology.orchestra.run.smithi170:> sudo service rsyslog restart 2024-04-22T22:30:33.009 INFO:teuthology.orchestra.run.smithi077.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-22T22:30:33.040 INFO:teuthology.orchestra.run.smithi170.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-22T22:30:33.448 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-22T22:30:33.457 INFO:teuthology.task.internal:Starting timer... 2024-04-22T22:30:33.457 INFO:teuthology.run_tasks:Running task pcp... 2024-04-22T22:30:33.473 INFO:teuthology.run_tasks:Running task selinux... 2024-04-22T22:30:33.489 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-22T22:30:33.489 DEBUG:teuthology.orchestra.run.smithi077:> sudo service auditd rotate 2024-04-22T22:30:33.543 INFO:teuthology.orchestra.run.smithi077.stdout:Rotating logs: 2024-04-22T22:30:33.545 DEBUG:teuthology.orchestra.run.smithi170:> sudo service auditd rotate 2024-04-22T22:30:33.605 INFO:teuthology.orchestra.run.smithi170.stdout:Rotating logs: 2024-04-22T22:30:33.607 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-22T22:30:33.607 DEBUG:teuthology.orchestra.run.smithi077:> /usr/sbin/getenforce 2024-04-22T22:30:33.625 INFO:teuthology.orchestra.run.smithi077.stdout:Permissive 2024-04-22T22:30:33.626 DEBUG:teuthology.orchestra.run.smithi170:> /usr/sbin/getenforce 2024-04-22T22:30:33.652 INFO:teuthology.orchestra.run.smithi170.stdout:Permissive 2024-04-22T22:30:33.653 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi077.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi170.front.sepia.ceph.com': 'permissive'} 2024-04-22T22:30:33.653 DEBUG:teuthology.orchestra.run.smithi077:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-22T22:30:33.689 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:30:33.690 DEBUG:teuthology.orchestra.run.smithi170:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-22T22:30:33.717 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:30:33.718 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-22T22:30:33.718 DEBUG:teuthology.orchestra.run.smithi077:> sudo /usr/sbin/setenforce permissive 2024-04-22T22:30:33.753 DEBUG:teuthology.orchestra.run.smithi170:> sudo /usr/sbin/setenforce permissive 2024-04-22T22:30:33.784 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-22T22:30:33.795 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-22T22:30:33.814 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'}]}] 2024-04-22T22:30:33.815 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi077.front.sepia.ceph.com,smithi170.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-22T22:34:09.401 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi077.front.sepia.ceph.com'), Remote(name='ubuntu@smithi170.front.sepia.ceph.com')] 2024-04-22T22:34:09.402 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi077.front.sepia.ceph.com' 2024-04-22T22:34:09.403 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi077.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-22T22:34:09.482 DEBUG:teuthology.orchestra.run.smithi077:> true 2024-04-22T22:34:09.566 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi077.front.sepia.ceph.com' 2024-04-22T22:34:09.566 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-04-22T22:34:09.567 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-22T22:34:09.642 DEBUG:teuthology.orchestra.run.smithi170:> true 2024-04-22T22:34:09.717 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-04-22T22:34:09.718 INFO:teuthology.run_tasks:Running task clock... 2024-04-22T22:34:09.730 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-22T22:34:09.730 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-22T22:34:09.731 DEBUG:teuthology.orchestra.run.smithi077:> 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 2024-04-22T22:34:09.733 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-22T22:34:09.733 DEBUG:teuthology.orchestra.run.smithi170:> 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 2024-04-22T22:34:09.762 INFO:teuthology.orchestra.run.smithi077.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-22T22:34:09.773 INFO:teuthology.orchestra.run.smithi077.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-22T22:34:09.790 INFO:teuthology.orchestra.run.smithi170.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-22T22:34:09.796 INFO:teuthology.orchestra.run.smithi077.stderr:sudo: ntpd: command not found 2024-04-22T22:34:09.804 INFO:teuthology.orchestra.run.smithi170.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-22T22:34:09.807 INFO:teuthology.orchestra.run.smithi077.stdout:506 Cannot talk to daemon 2024-04-22T22:34:09.820 INFO:teuthology.orchestra.run.smithi077.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-22T22:34:09.826 INFO:teuthology.orchestra.run.smithi170.stderr:sudo: ntpd: command not found 2024-04-22T22:34:09.833 INFO:teuthology.orchestra.run.smithi077.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-22T22:34:09.836 INFO:teuthology.orchestra.run.smithi170.stdout:506 Cannot talk to daemon 2024-04-22T22:34:09.850 INFO:teuthology.orchestra.run.smithi170.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-22T22:34:09.862 INFO:teuthology.orchestra.run.smithi170.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-22T22:34:09.886 INFO:teuthology.orchestra.run.smithi077.stderr:bash: line 1: ntpq: command not found 2024-04-22T22:34:09.890 INFO:teuthology.orchestra.run.smithi077.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-22T22:34:09.890 INFO:teuthology.orchestra.run.smithi077.stdout:=============================================================================== 2024-04-22T22:34:09.890 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:09.890 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:09.891 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:09.891 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:09.918 INFO:teuthology.orchestra.run.smithi170.stderr:bash: line 1: ntpq: command not found 2024-04-22T22:34:09.921 INFO:teuthology.orchestra.run.smithi170.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-22T22:34:09.921 INFO:teuthology.orchestra.run.smithi170.stdout:=============================================================================== 2024-04-22T22:34:09.921 INFO:teuthology.orchestra.run.smithi170.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:09.921 INFO:teuthology.orchestra.run.smithi170.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:09.921 INFO:teuthology.orchestra.run.smithi170.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:09.921 INFO:teuthology.orchestra.run.smithi170.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:09.923 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-22T22:34:09.934 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-22T22:34:09.934 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-04-22T22:34:09.934 DEBUG:teuthology.orchestra.run.smithi077:> dd if=/scratch_devs of=/dev/stdout 2024-04-22T22:34:09.950 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-22T22:34:09.950 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/vg_nvme/lv_1 2024-04-22T22:34:10.005 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-22T22:34:10.006 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-22T22:34:10.006 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 663 Links: 1 2024-04-22T22:34:10.006 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-22T22:34:10.006 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:device_t:s0 2024-04-22T22:34:10.006 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-04-22 22:34:08.342990788 +0000 2024-04-22T22:34:10.006 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-04-22 22:33:48.987371522 +0000 2024-04-22T22:34:10.006 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-04-22 22:33:48.987371522 +0000 2024-04-22T22:34:10.006 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-04-22 22:33:48.987371522 +0000 2024-04-22T22:34:10.007 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-22T22:34:10.068 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-04-22T22:34:10.068 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-04-22T22:34:10.068 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000181793 s, 2.8 MB/s 2024-04-22T22:34:10.069 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-22T22:34:10.125 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/vg_nvme/lv_2 2024-04-22T22:34:10.183 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-22T22:34:10.184 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-22T22:34:10.184 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 682 Links: 1 2024-04-22T22:34:10.184 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-22T22:34:10.184 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:device_t:s0 2024-04-22T22:34:10.184 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-04-22 22:34:08.342990788 +0000 2024-04-22T22:34:10.184 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-04-22 22:33:49.311365149 +0000 2024-04-22T22:34:10.184 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-04-22 22:33:49.311365149 +0000 2024-04-22T22:34:10.184 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-04-22 22:33:49.311365149 +0000 2024-04-22T22:34:10.184 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-22T22:34:10.246 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-04-22T22:34:10.246 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-04-22T22:34:10.246 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000190982 s, 2.7 MB/s 2024-04-22T22:34:10.247 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-22T22:34:10.304 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/vg_nvme/lv_3 2024-04-22T22:34:10.358 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-22T22:34:10.359 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-22T22:34:10.359 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-04-22T22:34:10.359 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-22T22:34:10.359 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:device_t:s0 2024-04-22T22:34:10.359 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-04-22 22:34:08.342990788 +0000 2024-04-22T22:34:10.359 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-04-22 22:33:49.638358717 +0000 2024-04-22T22:34:10.359 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-04-22 22:33:49.638358717 +0000 2024-04-22T22:34:10.359 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-04-22 22:33:49.638358717 +0000 2024-04-22T22:34:10.359 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-22T22:34:10.421 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-04-22T22:34:10.421 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-04-22T22:34:10.421 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000280616 s, 1.8 MB/s 2024-04-22T22:34:10.422 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-22T22:34:10.478 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/vg_nvme/lv_4 2024-04-22T22:34:10.533 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-22T22:34:10.533 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-22T22:34:10.534 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-04-22T22:34:10.534 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-22T22:34:10.534 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:device_t:s0 2024-04-22T22:34:10.534 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-04-22 22:34:08.342990788 +0000 2024-04-22T22:34:10.534 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-04-22 22:33:49.970352186 +0000 2024-04-22T22:34:10.534 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-04-22 22:33:49.970352186 +0000 2024-04-22T22:34:10.534 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-04-22 22:33:49.970352186 +0000 2024-04-22T22:34:10.534 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-22T22:34:10.595 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-04-22T22:34:10.596 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-04-22T22:34:10.596 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000183423 s, 2.8 MB/s 2024-04-22T22:34:10.597 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-22T22:34:10.652 DEBUG:teuthology.orchestra.run.smithi077:> 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 2024-04-22T22:34:10.764 INFO:teuthology.orchestra.run.smithi077.stdout:loop 2024-04-22T22:34:10.766 INFO:tasks.nvme_loop:Connecting nvme_loop smithi077:/dev/vg_nvme/lv_1... 2024-04-22T22:34:10.766 DEBUG:teuthology.orchestra.run.smithi077:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-22T22:34:10.797 INFO:teuthology.orchestra.run.smithi077.stdout:1 2024-04-22T22:34:10.823 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/vg_nvme/lv_11 2024-04-22T22:34:10.858 INFO:tasks.nvme_loop:Connecting nvme_loop smithi077:/dev/vg_nvme/lv_2... 2024-04-22T22:34:10.858 DEBUG:teuthology.orchestra.run.smithi077:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-22T22:34:10.930 INFO:teuthology.orchestra.run.smithi077.stdout:1 2024-04-22T22:34:10.956 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/vg_nvme/lv_21 2024-04-22T22:34:10.978 INFO:tasks.nvme_loop:Connecting nvme_loop smithi077:/dev/vg_nvme/lv_3... 2024-04-22T22:34:10.978 DEBUG:teuthology.orchestra.run.smithi077:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-22T22:34:11.049 INFO:teuthology.orchestra.run.smithi077.stdout:1 2024-04-22T22:34:11.075 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/vg_nvme/lv_31 2024-04-22T22:34:11.096 INFO:tasks.nvme_loop:Connecting nvme_loop smithi077:/dev/vg_nvme/lv_4... 2024-04-22T22:34:11.097 DEBUG:teuthology.orchestra.run.smithi077:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-22T22:34:11.168 INFO:teuthology.orchestra.run.smithi077.stdout:1 2024-04-22T22:34:11.195 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/vg_nvme/lv_41 2024-04-22T22:34:11.216 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-04-22T22:34:11.216 DEBUG:teuthology.orchestra.run.smithi077:> dd if=/scratch_devs of=/dev/stdout 2024-04-22T22:34:11.271 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme list 2024-04-22T22:34:11.332 INFO:teuthology.orchestra.run.smithi077.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-22T22:34:11.333 INFO:teuthology.orchestra.run.smithi077.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-22T22:34:11.333 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/nvme0n1 PHFT620400ZJ400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-22T22:34:11.333 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/nvme1n1 f738406c522b3fed243d Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-22T22:34:11.333 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/nvme2n1 2aa20703698bba150a45 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-22T22:34:11.333 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/nvme3n1 296de32bd3be19169375 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-22T22:34:11.333 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/nvme4n1 da5239d61dddbea486a9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-22T22:34:11.334 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-22T22:34:11.334 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-04-22T22:34:11.334 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/scratch_devs 2024-04-22T22:34:11.397 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-22T22:34:11.397 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-04-22T22:34:11.416 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-22T22:34:11.416 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_1 2024-04-22T22:34:11.473 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-22T22:34:11.474 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-22T22:34:11.474 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 667 Links: 1 2024-04-22T22:34:11.474 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-22T22:34:11.474 INFO:teuthology.orchestra.run.smithi170.stdout:Context: system_u:object_r:device_t:s0 2024-04-22T22:34:11.474 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-04-22 22:34:08.339949917 +0000 2024-04-22T22:34:11.474 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-04-22 22:33:48.977404954 +0000 2024-04-22T22:34:11.474 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-04-22 22:33:48.977404954 +0000 2024-04-22T22:34:11.474 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: 2024-04-22 22:33:48.977404954 +0000 2024-04-22T22:34:11.475 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-22T22:34:11.540 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-04-22T22:34:11.540 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-04-22T22:34:11.540 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000134991 s, 3.8 MB/s 2024-04-22T22:34:11.541 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-22T22:34:11.599 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_2 2024-04-22T22:34:11.655 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-22T22:34:11.655 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-22T22:34:11.655 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 684 Links: 1 2024-04-22T22:34:11.655 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-22T22:34:11.655 INFO:teuthology.orchestra.run.smithi170.stdout:Context: system_u:object_r:device_t:s0 2024-04-22T22:34:11.655 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-04-22 22:34:08.339949917 +0000 2024-04-22T22:34:11.656 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-04-22 22:33:49.302397315 +0000 2024-04-22T22:34:11.656 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-04-22 22:33:49.302397315 +0000 2024-04-22T22:34:11.656 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: 2024-04-22 22:33:49.302397315 +0000 2024-04-22T22:34:11.656 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-22T22:34:11.720 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-04-22T22:34:11.720 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-04-22T22:34:11.720 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 9.1763e-05 s, 5.6 MB/s 2024-04-22T22:34:11.721 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-22T22:34:11.779 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_3 2024-04-22T22:34:11.834 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-22T22:34:11.835 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-22T22:34:11.835 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-04-22T22:34:11.835 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-22T22:34:11.835 INFO:teuthology.orchestra.run.smithi170.stdout:Context: system_u:object_r:device_t:s0 2024-04-22T22:34:11.835 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-04-22 22:34:08.339949917 +0000 2024-04-22T22:34:11.835 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-04-22 22:33:49.629389629 +0000 2024-04-22T22:34:11.835 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-04-22 22:33:49.629389629 +0000 2024-04-22T22:34:11.835 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: 2024-04-22 22:33:49.629389629 +0000 2024-04-22T22:34:11.835 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-22T22:34:11.899 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-04-22T22:34:11.899 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-04-22T22:34:11.899 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000111665 s, 4.6 MB/s 2024-04-22T22:34:11.900 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-22T22:34:11.957 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_4 2024-04-22T22:34:12.012 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-22T22:34:12.013 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-22T22:34:12.013 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 724 Links: 1 2024-04-22T22:34:12.013 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-22T22:34:12.013 INFO:teuthology.orchestra.run.smithi170.stdout:Context: system_u:object_r:device_t:s0 2024-04-22T22:34:12.013 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-04-22 22:34:08.339949917 +0000 2024-04-22T22:34:12.013 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-04-22 22:33:49.967381684 +0000 2024-04-22T22:34:12.013 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-04-22 22:33:49.967381684 +0000 2024-04-22T22:34:12.013 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: 2024-04-22 22:33:49.967381684 +0000 2024-04-22T22:34:12.013 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-22T22:34:12.075 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-04-22T22:34:12.075 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-04-22T22:34:12.075 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000104725 s, 4.9 MB/s 2024-04-22T22:34:12.076 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-22T22:34:12.133 DEBUG:teuthology.orchestra.run.smithi170:> 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 2024-04-22T22:34:12.249 INFO:teuthology.orchestra.run.smithi170.stdout:loop 2024-04-22T22:34:12.250 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_1... 2024-04-22T22:34:12.250 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-22T22:34:12.281 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-04-22T22:34:12.307 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_11 2024-04-22T22:34:12.330 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_2... 2024-04-22T22:34:12.330 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-22T22:34:12.402 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-04-22T22:34:12.428 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_21 2024-04-22T22:34:12.449 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_3... 2024-04-22T22:34:12.450 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-22T22:34:12.521 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-04-22T22:34:12.547 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_31 2024-04-22T22:34:12.576 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_4... 2024-04-22T22:34:12.577 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-22T22:34:12.649 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-04-22T22:34:12.675 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_41 2024-04-22T22:34:12.707 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-22T22:34:12.708 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-04-22T22:34:12.763 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme list 2024-04-22T22:34:12.825 INFO:teuthology.orchestra.run.smithi170.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-22T22:34:12.825 INFO:teuthology.orchestra.run.smithi170.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-22T22:34:12.825 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme0n1 PHMB7476002R480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-04-22T22:34:12.826 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme1n1 757f343ebae242065360 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-22T22:34:12.826 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme2n1 264e88c7265378e46c65 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-22T22:34:12.826 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme3n1 47f7bc1430fcc4851207 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-22T22:34:12.826 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme4n1 9515edfdcc549e2a7a3e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-22T22:34:12.827 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-22T22:34:12.827 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-22T22:34:12.827 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/scratch_devs 2024-04-22T22:34:12.890 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-22T22:34:13.007 INFO:tasks.cephadm:Config: {'roleless': True, '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 shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'log-only-match': ['CEPHADM_'], 'sha1': '430e09df97c8fc7dc2b2ae424f68ed11366c540f'} 2024-04-22T22:34:13.008 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f 2024-04-22T22:34:13.008 INFO:tasks.cephadm:Cluster fsid is 71a1ad1e-00f8-11ef-bc93-c7b262605968 2024-04-22T22:34:13.008 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-22T22:34:13.008 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-22T22:34:13.008 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi077': '172.21.15.77', 'mon.smithi170': '172.21.15.170'} 2024-04-22T22:34:13.009 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-22T22:34:13.009 DEBUG:teuthology.orchestra.run.smithi077:> sudo hostname $(hostname -s) 2024-04-22T22:34:13.038 DEBUG:teuthology.orchestra.run.smithi170:> sudo hostname $(hostname -s) 2024-04-22T22:34:13.061 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-22T22:34:13.062 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=430e09df97c8fc7dc2b2ae424f68ed11366c540f 2024-04-22T22:34:13.207 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '430e09df97c8fc7dc2b2ae424f68ed11366c540f', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54954/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2407-g430e09df', 'node_name': '172.21.5.36+adami06', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2407.g430e09df'}, 'url': 'https://3.chacra.ceph.com/r/ceph/squid/430e09df97c8fc7dc2b2ae424f68ed11366c540f/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-21 21:31:40.125798', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/430e09df97c8fc7dc2b2ae424f68ed11366c540f/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-04-22T22:34:13.347 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref squid, sha1 430e09df97c8fc7dc2b2ae424f68ed11366c540f from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=430e09df97c8fc7dc2b2ae424f68ed11366c540f 2024-04-22T22:34:13.350 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/squid/430e09df97c8fc7dc2b2ae424f68ed11366c540f/centos/9/x86_64/flavors/default/cephadm 2024-04-22T22:34:13.351 DEBUG:teuthology.orchestra.run.smithi077:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/430e09df97c8fc7dc2b2ae424f68ed11366c540f/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-22T22:34:13.944 INFO:teuthology.orchestra.run.smithi077.stdout:-rw-r--r--. 1 ubuntu ubuntu 781227 Apr 22 22:34 /home/ubuntu/cephtest/cephadm 2024-04-22T22:34:13.945 DEBUG:teuthology.orchestra.run.smithi170:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/430e09df97c8fc7dc2b2ae424f68ed11366c540f/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-22T22:34:14.500 INFO:teuthology.orchestra.run.smithi170.stdout:-rw-r--r--. 1 ubuntu ubuntu 781227 Apr 22 22:34 /home/ubuntu/cephtest/cephadm 2024-04-22T22:34:14.500 DEBUG:teuthology.orchestra.run.smithi077:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-22T22:34:14.520 DEBUG:teuthology.orchestra.run.smithi170:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-22T22:34:14.549 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f on all hosts... 2024-04-22T22:34:14.550 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f pull 2024-04-22T22:34:14.562 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f pull 2024-04-22T22:34:16.056 INFO:teuthology.orchestra.run.smithi077.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f... 2024-04-22T22:34:16.211 INFO:teuthology.orchestra.run.smithi170.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f... 2024-04-22T22:34:16.242 INFO:teuthology.orchestra.run.smithi077.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f 2024-04-22T22:34:16.243 INFO:teuthology.orchestra.run.smithi077.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f... 2024-04-22T22:34:16.243 INFO:teuthology.orchestra.run.smithi077.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f: reading manifest 430e09df97c8fc7dc2b2ae424f68ed11366c540f in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-22T22:34:16.243 INFO:teuthology.orchestra.run.smithi077.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f 2024-04-22T22:34:16.265 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:16.265 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi077 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f pull' 2024-04-22T22:34:16.267 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-22T22:34:16.268 DEBUG:teuthology.misc:Transferring archived files from smithi077:/var/lib/ceph/71a1ad1e-00f8-11ef-bc93-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908/remote/smithi077/crash 2024-04-22T22:34:16.269 DEBUG:teuthology.orchestra.run.smithi077:> sudo tar c -f - -C /var/lib/ceph/71a1ad1e-00f8-11ef-bc93-c7b262605968/crash -- . 2024-04-22T22:34:16.301 INFO:teuthology.orchestra.run.smithi077.stderr:tar: /var/lib/ceph/71a1ad1e-00f8-11ef-bc93-c7b262605968/crash: Cannot open: No such file or directory 2024-04-22T22:34:16.301 INFO:teuthology.orchestra.run.smithi077.stderr:tar: Error is not recoverable: exiting now 2024-04-22T22:34:16.303 DEBUG:teuthology.misc:Transferring archived files from smithi170:/var/lib/ceph/71a1ad1e-00f8-11ef-bc93-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908/remote/smithi170/crash 2024-04-22T22:34:16.304 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /var/lib/ceph/71a1ad1e-00f8-11ef-bc93-c7b262605968/crash -- . 2024-04-22T22:34:16.346 INFO:teuthology.orchestra.run.smithi170.stderr:tar: /var/lib/ceph/71a1ad1e-00f8-11ef-bc93-c7b262605968/crash: Cannot open: No such file or directory 2024-04-22T22:34:16.346 INFO:teuthology.orchestra.run.smithi170.stderr:tar: Error is not recoverable: exiting now 2024-04-22T22:34:16.347 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-22T22:34:16.347 DEBUG:teuthology.orchestra.run.smithi077:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/71a1ad1e-00f8-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-22T22:34:16.373 INFO:teuthology.orchestra.run.smithi077.stderr:grep: /var/log/ceph/71a1ad1e-00f8-11ef-bc93-c7b262605968/ceph.log: No such file or directory 2024-04-22T22:34:16.375 INFO:tasks.cephadm:Compressing logs... 2024-04-22T22:34:16.375 DEBUG:teuthology.orchestra.run.smithi077:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-22T22:34:16.395 INFO:teuthology.orchestra.run.smithi170.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f 2024-04-22T22:34:16.395 INFO:teuthology.orchestra.run.smithi170.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f... 2024-04-22T22:34:16.395 INFO:teuthology.orchestra.run.smithi170.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f: reading manifest 430e09df97c8fc7dc2b2ae424f68ed11366c540f in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-22T22:34:16.395 INFO:teuthology.orchestra.run.smithi170.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f 2024-04-22T22:34:16.417 DEBUG:teuthology.orchestra.run.smithi170:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-22T22:34:16.437 INFO:teuthology.orchestra.run.smithi077.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-22T22:34:16.437 INFO:teuthology.orchestra.run.smithi077.stderr:: No such file or directory 2024-04-22T22:34:16.438 INFO:teuthology.orchestra.run.smithi077.stderr:/var/log/ceph/cephadm.log: 73.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-22T22:34:16.439 INFO:teuthology.orchestra.run.smithi077.stderr: 2024-04-22T22:34:16.439 INFO:teuthology.orchestra.run.smithi077.stderr:real 0m0.011s 2024-04-22T22:34:16.439 INFO:teuthology.orchestra.run.smithi077.stderr:user 0m0.011s 2024-04-22T22:34:16.439 INFO:teuthology.orchestra.run.smithi077.stderr:sys 0m0.008s 2024-04-22T22:34:16.440 INFO:teuthology.orchestra.run.smithi170.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-22T22:34:16.440 INFO:teuthology.orchestra.run.smithi170.stderr:: No such file or directory 2024-04-22T22:34:16.441 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/cephadm.log: 73.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-22T22:34:16.443 INFO:teuthology.orchestra.run.smithi170.stderr: 2024-04-22T22:34:16.443 INFO:teuthology.orchestra.run.smithi170.stderr:real 0m0.011s 2024-04-22T22:34:16.443 INFO:teuthology.orchestra.run.smithi170.stderr:user 0m0.007s 2024-04-22T22:34:16.443 INFO:teuthology.orchestra.run.smithi170.stderr:sys 0m0.013s 2024-04-22T22:34:16.443 INFO:tasks.cephadm:Archiving logs... 2024-04-22T22:34:16.443 DEBUG:teuthology.misc:Transferring archived files from smithi077:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908/remote/smithi077/log 2024-04-22T22:34:16.444 DEBUG:teuthology.orchestra.run.smithi077:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-22T22:34:16.503 DEBUG:teuthology.misc:Transferring archived files from smithi170:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908/remote/smithi170/log 2024-04-22T22:34:16.504 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-22T22:34:16.529 INFO:tasks.cephadm:Removing cluster... 2024-04-22T22:34:16.530 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 71a1ad1e-00f8-11ef-bc93-c7b262605968 --force 2024-04-22T22:34:16.726 INFO:teuthology.orchestra.run.smithi077.stdout:Deleting cluster with fsid: 71a1ad1e-00f8-11ef-bc93-c7b262605968 2024-04-22T22:34:16.839 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 71a1ad1e-00f8-11ef-bc93-c7b262605968 --force 2024-04-22T22:34:17.024 INFO:teuthology.orchestra.run.smithi170.stdout:Deleting cluster with fsid: 71a1ad1e-00f8-11ef-bc93-c7b262605968 2024-04-22T22:34:17.142 INFO:tasks.cephadm:Removing cephadm ... 2024-04-22T22:34:17.142 DEBUG:teuthology.orchestra.run.smithi077:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-22T22:34:17.158 DEBUG:teuthology.orchestra.run.smithi170:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-22T22:34:17.172 INFO:tasks.cephadm:Teardown complete 2024-04-22T22:34:17.172 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa/tasks/cephadm.py", line 2204, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa/tasks/cephadm.py", line 1833, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi077 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f pull' 2024-04-22T22:34:17.407 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=b86a5269e7324fe09fa8335da1db6cd1 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa/tasks/cephadm.py", line 2204, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa/tasks/cephadm.py", line 1833, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_c66b8bf2efd3f3988ac1851474c2f98eb2ca30d9/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi077 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f pull' 2024-04-22T22:34:17.412 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-22T22:34:17.425 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-22T22:34:17.437 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi077:/dev/vg_nvme/lv_1... 2024-04-22T22:34:17.437 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme disconnect -n lv_1 2024-04-22T22:34:17.570 INFO:teuthology.orchestra.run.smithi077.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-22T22:34:17.571 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:17.571 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi077:/dev/vg_nvme/lv_2... 2024-04-22T22:34:17.572 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme disconnect -n lv_2 2024-04-22T22:34:17.709 INFO:teuthology.orchestra.run.smithi077.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-22T22:34:17.710 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:17.711 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi077:/dev/vg_nvme/lv_3... 2024-04-22T22:34:17.711 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme disconnect -n lv_3 2024-04-22T22:34:17.852 INFO:teuthology.orchestra.run.smithi077.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-22T22:34:17.853 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:17.854 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi077:/dev/vg_nvme/lv_4... 2024-04-22T22:34:17.854 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme disconnect -n lv_4 2024-04-22T22:34:17.994 INFO:teuthology.orchestra.run.smithi077.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-22T22:34:17.995 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:17.996 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-04-22T22:34:17.996 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/scratch_devs 2024-04-22T22:34:18.019 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_1... 2024-04-22T22:34:18.019 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_1 2024-04-22T22:34:18.154 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-22T22:34:18.155 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:18.155 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_2... 2024-04-22T22:34:18.156 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_2 2024-04-22T22:34:18.294 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-22T22:34:18.295 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:18.296 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_3... 2024-04-22T22:34:18.296 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_3 2024-04-22T22:34:18.435 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-22T22:34:18.436 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:18.436 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_4... 2024-04-22T22:34:18.437 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_4 2024-04-22T22:34:18.578 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-22T22:34:18.579 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:18.580 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-04-22T22:34:18.580 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/scratch_devs 2024-04-22T22:34:18.605 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-22T22:34:18.614 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-22T22:34:18.614 DEBUG:teuthology.orchestra.run.smithi077:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-22T22:34:18.616 DEBUG:teuthology.orchestra.run.smithi170:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-22T22:34:18.629 INFO:teuthology.orchestra.run.smithi077.stderr:bash: line 1: ntpq: command not found 2024-04-22T22:34:18.633 INFO:teuthology.orchestra.run.smithi077.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-22T22:34:18.633 INFO:teuthology.orchestra.run.smithi077.stdout:=============================================================================== 2024-04-22T22:34:18.633 INFO:teuthology.orchestra.run.smithi077.stdout:^- hv01.front.sepia.ceph.com 2 6 17 2 +707us[ +707us] +/- 574ms 2024-04-22T22:34:18.633 INFO:teuthology.orchestra.run.smithi077.stdout:^* hv02.front.sepia.ceph.com 3 6 17 2 -96us[ -100us] +/- 51ms 2024-04-22T22:34:18.634 INFO:teuthology.orchestra.run.smithi077.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 2 +123us[ +123us] +/- 63ms 2024-04-22T22:34:18.634 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:18.660 INFO:teuthology.orchestra.run.smithi170.stderr:bash: line 1: ntpq: command not found 2024-04-22T22:34:18.664 INFO:teuthology.orchestra.run.smithi170.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-22T22:34:18.664 INFO:teuthology.orchestra.run.smithi170.stdout:=============================================================================== 2024-04-22T22:34:18.664 INFO:teuthology.orchestra.run.smithi170.stdout:^- hv01.front.sepia.ceph.com 2 6 17 2 +689us[ +689us] +/- 574ms 2024-04-22T22:34:18.664 INFO:teuthology.orchestra.run.smithi170.stdout:^* hv02.front.sepia.ceph.com 3 6 17 2 -99us[ -105us] +/- 51ms 2024-04-22T22:34:18.664 INFO:teuthology.orchestra.run.smithi170.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 2 +108us[ +103us] +/- 63ms 2024-04-22T22:34:18.665 INFO:teuthology.orchestra.run.smithi170.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-22T22:34:18.665 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-22T22:34:18.674 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-22T22:34:18.675 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-22T22:34:18.684 DEBUG:teuthology.orchestra.run.smithi077:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-22T22:34:18.739 DEBUG:teuthology.orchestra.run.smithi170:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-22T22:34:18.795 DEBUG:teuthology.orchestra.run.smithi077:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-22T22:34:18.821 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:18.821 DEBUG:teuthology.orchestra.run.smithi170:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-22T22:34:18.847 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:18.848 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-22T22:34:18.856 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-22T22:34:18.868 INFO:teuthology.task.internal:Duration was 225.411332 seconds 2024-04-22T22:34:18.868 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-22T22:34:18.876 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-22T22:34:18.876 DEBUG:teuthology.orchestra.run.smithi077:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-22T22:34:18.879 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-22T22:34:18.913 INFO:teuthology.orchestra.run.smithi077.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-22T22:34:18.924 INFO:teuthology.orchestra.run.smithi170.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-22T22:34:19.205 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-22T22:34:19.205 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi077.front.sepia.ceph.com 2024-04-22T22:34:19.205 DEBUG:teuthology.orchestra.run.smithi077:> egrep --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' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-22T22:34:19.225 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi170.front.sepia.ceph.com 2024-04-22T22:34:19.225 DEBUG:teuthology.orchestra.run.smithi170:> egrep --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' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-22T22:34:19.271 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-22T22:34:19.272 DEBUG:teuthology.orchestra.run.smithi077:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-22T22:34:19.274 DEBUG:teuthology.orchestra.run.smithi170:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-22T22:34:19.337 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-22T22:34:19.398 DEBUG:teuthology.orchestra.run.smithi077:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-22T22:34:19.401 DEBUG:teuthology.orchestra.run.smithi170:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-22T22:34:19.488 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-22T22:34:19.501 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-22T22:34:19.501 DEBUG:teuthology.orchestra.run.smithi077:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-22T22:34:19.526 DEBUG:teuthology.orchestra.run.smithi170:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-22T22:34:19.550 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-22T22:34:19.565 DEBUG:teuthology.orchestra.run.smithi077:> 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 2024-04-22T22:34:19.568 DEBUG:teuthology.orchestra.run.smithi170:> 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 2024-04-22T22:34:19.588 INFO:teuthology.orchestra.run.smithi077.stdout:kernel.core_pattern = core 2024-04-22T22:34:19.612 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern = core 2024-04-22T22:34:19.628 DEBUG:teuthology.orchestra.run.smithi077:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-22T22:34:19.664 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:19.665 DEBUG:teuthology.orchestra.run.smithi170:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-22T22:34:19.681 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-22T22:34:19.682 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-22T22:34:19.693 INFO:teuthology.task.internal:Transferring archived files... 2024-04-22T22:34:19.693 DEBUG:teuthology.misc:Transferring archived files from smithi077:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908/remote/smithi077 2024-04-22T22:34:19.694 DEBUG:teuthology.orchestra.run.smithi077:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-22T22:34:19.736 DEBUG:teuthology.misc:Transferring archived files from smithi170:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908/remote/smithi170 2024-04-22T22:34:19.737 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-22T22:34:19.767 INFO:teuthology.task.internal:Removing archive directory... 2024-04-22T22:34:19.767 DEBUG:teuthology.orchestra.run.smithi077:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-22T22:34:19.773 DEBUG:teuthology.orchestra.run.smithi170:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-22T22:34:19.817 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-22T22:34:19.827 INFO:teuthology.task.internal:Not uploading archives. 2024-04-22T22:34:19.827 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-22T22:34:19.841 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-22T22:34:19.842 DEBUG:teuthology.orchestra.run.smithi077:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-22T22:34:19.844 DEBUG:teuthology.orchestra.run.smithi170:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-22T22:34:19.856 INFO:teuthology.orchestra.run.smithi077.stdout: 262213 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 22 22:34 /home/ubuntu/cephtest 2024-04-22T22:34:19.871 INFO:teuthology.orchestra.run.smithi170.stdout: 262213 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 22 22:34 /home/ubuntu/cephtest 2024-04-22T22:34:19.872 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-22T22:34:19.889 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-22T22:34:19.911 INFO:teuthology.nuke:Checking targets against current locks 2024-04-22T22:34:19.941 DEBUG:teuthology.nuke:shortname: smithi077 2024-04-22T22:34:19.942 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-22T22:34:19.965 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi077.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-22 22:21:55.671334', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHapL71xElS3ceQS/3thhy5sXB1xVPdQr1DCW9l1Dg3KWUebauY2phSfQb3uZo1KPanWUuOKBj9wQR0mGIiXLMw='} 2024-04-22T22:34:19.969 DEBUG:teuthology.nuke:shortname: smithi170 2024-04-22T22:34:19.969 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-22T22:34:19.990 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi170.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-22_21:08:03-orch-squid-distro-default-smithi/7668908', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-22 22:21:55.669950', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM9oZwd7oxVU3Px1dEceK9NJl+C+LP5HKkDRNG7nwWD245F3SaB5jer7ZjISbUkmIVZ329yZPKXNuj7wKzPlQr0='} 2024-04-22T22:34:20.020 INFO:teuthology.orchestra.console.smithi077:Power off 2024-04-22T22:34:20.021 DEBUG:teuthology.orchestra.console.smithi077:pexpect command: ipmitool -H smithi077.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-22T22:34:20.046 DEBUG:teuthology.orchestra.console.smithi077:power off output: Chassis Power Control: Down/Off 2024-04-22T22:34:20.046 DEBUG:teuthology.orchestra.console.smithi077:pexpect command: ipmitool -H smithi077.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-22T22:34:20.062 INFO:teuthology.orchestra.console.smithi170:Power off 2024-04-22T22:34:20.063 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-22T22:34:20.072 DEBUG:teuthology.orchestra.console.smithi077:check power output: Chassis Power is on 2024-04-22T22:34:20.086 DEBUG:teuthology.orchestra.console.smithi170:power off output: Chassis Power Control: Down/Off 2024-04-22T22:34:20.086 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-22T22:34:20.114 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is on 2024-04-22T22:34:24.073 DEBUG:teuthology.orchestra.console.smithi077:pexpect command: ipmitool -H smithi077.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-22T22:34:24.116 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-22T22:34:24.183 DEBUG:teuthology.orchestra.console.smithi077:check power output: Chassis Power is on 2024-04-22T22:34:24.228 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is on 2024-04-22T22:34:28.186 DEBUG:teuthology.orchestra.console.smithi077:pexpect command: ipmitool -H smithi077.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-22T22:34:28.229 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-22T22:34:28.296 DEBUG:teuthology.orchestra.console.smithi077:check power output: Chassis Power is on 2024-04-22T22:34:28.339 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is off 2024-04-22T22:34:28.440 INFO:teuthology.orchestra.console.smithi170:Power off completed 2024-04-22T22:34:32.298 DEBUG:teuthology.orchestra.console.smithi077:pexpect command: ipmitool -H smithi077.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-22T22:34:32.408 DEBUG:teuthology.orchestra.console.smithi077:check power output: Chassis Power is off 2024-04-22T22:34:32.509 INFO:teuthology.orchestra.console.smithi077:Power off completed 2024-04-22T22:34:32.616 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 225.4113323688507 failure_reason: 'Command failed on smithi077 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:430e09df97c8fc7dc2b2ae424f68ed11366c540f pull''' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=b86a5269e7324fe09fa8335da1db6cd1 status: fail success: false 2024-04-22T22:34:32.616 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-22T22:34:32.695 INFO:teuthology.run:FAIL