2024-04-15T21:58:45.690 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T21:58:45.690 DEBUG:teuthology.run:Teuthology command: teuthology --description orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --archive /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529 --owner scheduled_teuthology@teuthology --name teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi --verbose -- /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529/orig.config.yaml 2024-04-15T21:58:45.731 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:58:45.829 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7657529' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-15_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\) sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 7775 sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 sleep_before_teardown: 0 subset: 18/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 targets: smithi088.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDXmvey6c15NXgSjywO94s9+66hoVuQOmpdQjegeO4awqyJD6IKU9yw2ZQPWaMqhvBtraOl+Kxo2rXbxQ1qdURk= smithi193.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC0lRkGb8ODdvdYsXSACJzhTVadyqr50bUHuCxA0D0JHE0ahq0g6blHtgTsc/E/fcoiVfhMgB3P6FdgKsSTE+Zk= tasks: - pexec: all: - sudo dnf install runc -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-15_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T21:58:45.830 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa; will attempt to use it 2024-04-15T21:58:45.830 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks 2024-04-15T21:58:45.830 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T21:58:45.832 INFO:teuthology.task.internal:Checking packages... 2024-04-15T21:58:45.857 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'a9a752df26c63acad72e1b3569fd79a515ca0765' 2024-04-15T21:58:45.857 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T21:58:45.857 INFO:teuthology.packaging:ref: None 2024-04-15T21:58:45.858 INFO:teuthology.packaging:tag: None 2024-04-15T21:58:45.858 INFO:teuthology.packaging:branch: squid 2024-04-15T21:58:45.858 INFO:teuthology.packaging:sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:58:45.858 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-15T21:58:46.028 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2114.ga9a752df 2024-04-15T21:58:46.029 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T21:58:46.036 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T21:58:46.036 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T21:58:46.057 INFO:teuthology.task.internal:Saving configuration 2024-04-15T21:58:46.070 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T21:58:46.079 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:58:46.104 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi088.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529', '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-15 21:53:10.638728', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDXmvey6c15NXgSjywO94s9+66hoVuQOmpdQjegeO4awqyJD6IKU9yw2ZQPWaMqhvBtraOl+Kxo2rXbxQ1qdURk='} 2024-04-15T21:58:46.131 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi193.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529', '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-15 21:53:10.637303', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC0lRkGb8ODdvdYsXSACJzhTVadyqr50bUHuCxA0D0JHE0ahq0g6blHtgTsc/E/fcoiVfhMgB3P6FdgKsSTE+Zk='} 2024-04-15T21:58:46.131 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T21:58:46.138 INFO:teuthology.task.internal:roles: ubuntu@smithi088.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-15T21:58:46.138 INFO:teuthology.task.internal:roles: ubuntu@smithi193.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-15T21:58:46.138 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T21:58:46.209 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f29b33ff0d0>, signals=[15]) 2024-04-15T21:58:46.210 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T21:58:46.217 INFO:teuthology.task.internal:Opening connections... 2024-04-15T21:58:46.217 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi088.front.sepia.ceph.com 2024-04-15T21:58:46.219 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi088.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:58:46.313 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi193.front.sepia.ceph.com 2024-04-15T21:58:46.314 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi193.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:58:46.405 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T21:58:46.412 DEBUG:teuthology.orchestra.run.smithi088:> uname -m 2024-04-15T21:58:46.430 INFO:teuthology.orchestra.run.smithi088.stdout:x86_64 2024-04-15T21:58:46.431 DEBUG:teuthology.orchestra.run.smithi088:> cat /etc/os-release 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:NAME="CentOS Stream" 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:VERSION="9" 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:ID="centos" 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:ID_LIKE="rhel fedora" 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:VERSION_ID="9" 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:PLATFORM_ID="platform:el9" 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:ANSI_COLOR="0;31" 2024-04-15T21:58:46.487 INFO:teuthology.orchestra.run.smithi088.stdout:LOGO="fedora-logo-icon" 2024-04-15T21:58:46.488 INFO:teuthology.orchestra.run.smithi088.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T21:58:46.488 INFO:teuthology.orchestra.run.smithi088.stdout:HOME_URL="https://centos.org/" 2024-04-15T21:58:46.488 INFO:teuthology.orchestra.run.smithi088.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T21:58:46.488 INFO:teuthology.orchestra.run.smithi088.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T21:58:46.488 INFO:teuthology.orchestra.run.smithi088.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T21:58:46.488 INFO:teuthology.lock.ops:Updating smithi088.front.sepia.ceph.com on lock server 2024-04-15T21:58:46.511 DEBUG:teuthology.orchestra.run.smithi193:> uname -m 2024-04-15T21:58:46.528 INFO:teuthology.orchestra.run.smithi193.stdout:x86_64 2024-04-15T21:58:46.528 DEBUG:teuthology.orchestra.run.smithi193:> cat /etc/os-release 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:NAME="CentOS Stream" 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:VERSION="9" 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:ID="centos" 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:ID_LIKE="rhel fedora" 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:VERSION_ID="9" 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:PLATFORM_ID="platform:el9" 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:ANSI_COLOR="0;31" 2024-04-15T21:58:46.585 INFO:teuthology.orchestra.run.smithi193.stdout:LOGO="fedora-logo-icon" 2024-04-15T21:58:46.586 INFO:teuthology.orchestra.run.smithi193.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T21:58:46.586 INFO:teuthology.orchestra.run.smithi193.stdout:HOME_URL="https://centos.org/" 2024-04-15T21:58:46.586 INFO:teuthology.orchestra.run.smithi193.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T21:58:46.586 INFO:teuthology.orchestra.run.smithi193.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T21:58:46.586 INFO:teuthology.orchestra.run.smithi193.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T21:58:46.586 INFO:teuthology.lock.ops:Updating smithi193.front.sepia.ceph.com on lock server 2024-04-15T21:58:46.610 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T21:58:46.623 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T21:58:46.631 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T21:58:46.632 DEBUG:teuthology.orchestra.run.smithi088:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:58:46.634 DEBUG:teuthology.orchestra.run.smithi193:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:58:46.650 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T21:58:46.659 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T21:58:46.659 DEBUG:teuthology.orchestra.run.smithi088:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:58:46.691 DEBUG:teuthology.orchestra.run.smithi193:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:58:47.019 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T21:58:47.082 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T21:58:47.097 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T21:58:47.097 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-15T21:58:47.098 DEBUG:teuthology.orchestra.run.smithi088:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:58:47.098 DEBUG:teuthology.orchestra.run.smithi193:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:58:47.114 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:58:47.115 DEBUG:teuthology.orchestra.run.smithi193:> uname -r 2024-04-15T21:58:47.115 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:58:47.116 DEBUG:teuthology.orchestra.run.smithi088:> uname -r 2024-04-15T21:58:47.172 INFO:teuthology.orchestra.run.smithi193.stdout:5.14.0-361.el9.x86_64 2024-04-15T21:58:47.173 INFO:teuthology.task.kernel:Running kernel on smithi193: 5.14.0-361.el9.x86_64 2024-04-15T21:58:47.173 DEBUG:teuthology.orchestra.run.smithi193:> sudo yum install -y kernel 2024-04-15T21:58:47.174 INFO:teuthology.orchestra.run.smithi088.stdout:5.14.0-361.el9.x86_64 2024-04-15T21:58:47.175 INFO:teuthology.task.kernel:Running kernel on smithi088: 5.14.0-361.el9.x86_64 2024-04-15T21:58:47.175 DEBUG:teuthology.orchestra.run.smithi088:> sudo yum install -y kernel 2024-04-15T21:58:49.878 INFO:teuthology.orchestra.run.smithi088.stdout:CentOS-9 - AppStream 5.7 MB/s | 6.7 MB 00:01 2024-04-15T21:58:49.889 INFO:teuthology.orchestra.run.smithi193.stdout:CentOS-9 - AppStream 6.4 MB/s | 6.7 MB 00:01 2024-04-15T21:58:51.514 INFO:teuthology.orchestra.run.smithi193.stdout:CentOS-9 - BaseOS 4.0 MB/s | 2.0 MB 00:00 2024-04-15T21:58:51.628 INFO:teuthology.orchestra.run.smithi088.stdout:CentOS-9 - BaseOS 3.2 MB/s | 2.0 MB 00:00 2024-04-15T21:59:02.179 INFO:teuthology.orchestra.run.smithi193.stdout:CentOS Stream 9 - BaseOS 797 kB/s | 8.0 MB 00:10 2024-04-15T21:59:02.516 INFO:teuthology.orchestra.run.smithi088.stdout:CentOS Stream 9 - BaseOS 781 kB/s | 8.0 MB 00:10 2024-04-15T21:59:04.171 INFO:teuthology.orchestra.run.smithi193.stdout:CentOS Stream 9 - AppStream 21 MB/s | 19 MB 00:00 2024-04-15T21:59:08.605 INFO:teuthology.orchestra.run.smithi193.stdout:CentOS Stream 9 - CRB 6.3 MB/s | 6.2 MB 00:00 2024-04-15T21:59:10.097 INFO:teuthology.orchestra.run.smithi193.stdout:CentOS Stream 9 - Extras packages 47 kB/s | 16 kB 00:00 2024-04-15T21:59:11.266 INFO:teuthology.orchestra.run.smithi088.stdout:CentOS Stream 9 - AppStream 2.5 MB/s | 19 MB 00:07 2024-04-15T21:59:17.535 INFO:teuthology.orchestra.run.smithi088.stdout:CentOS Stream 9 - CRB 2.2 MB/s | 6.2 MB 00:02 2024-04-15T21:59:19.350 INFO:teuthology.orchestra.run.smithi088.stdout:CentOS Stream 9 - Extras packages 25 kB/s | 16 kB 00:00 2024-04-15T21:59:20.292 INFO:teuthology.orchestra.run.smithi193.stdout:Extra Packages for Enterprise Linux 2.1 MB/s | 21 MB 00:10 2024-04-15T21:59:20.787 INFO:teuthology.orchestra.run.smithi088.stdout:Extra Packages for Enterprise Linux 16 MB/s | 21 MB 00:01 2024-04-15T21:59:25.247 INFO:teuthology.orchestra.run.smithi193.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-04-15T21:59:25.742 INFO:teuthology.orchestra.run.smithi088.stdout:lab-extras 38 kB/s | 1.7 kB 00:00 2024-04-15T21:59:27.562 INFO:teuthology.orchestra.run.smithi193.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T21:59:27.562 INFO:teuthology.orchestra.run.smithi193.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T21:59:27.650 INFO:teuthology.orchestra.run.smithi193.stdout:Dependencies resolved. 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout:================================================================================ 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout: Package Arch Version Repository Size 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout:================================================================================ 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout:Installing: 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout:Installing dependencies: 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout:Transaction Summary 2024-04-15T21:59:27.663 INFO:teuthology.orchestra.run.smithi193.stdout:================================================================================ 2024-04-15T21:59:27.664 INFO:teuthology.orchestra.run.smithi193.stdout:Install 4 Packages 2024-04-15T21:59:27.664 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T21:59:27.664 INFO:teuthology.orchestra.run.smithi193.stdout:Total download size: 77 M 2024-04-15T21:59:27.664 INFO:teuthology.orchestra.run.smithi193.stdout:Installed size: 123 M 2024-04-15T21:59:27.664 INFO:teuthology.orchestra.run.smithi193.stdout:Downloading Packages: 2024-04-15T21:59:27.915 INFO:teuthology.orchestra.run.smithi193.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.1 MB/s | 277 kB 00:00 2024-04-15T21:59:28.099 INFO:teuthology.orchestra.run.smithi088.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T21:59:28.099 INFO:teuthology.orchestra.run.smithi088.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T21:59:28.181 INFO:teuthology.orchestra.run.smithi088.stdout:Dependencies resolved. 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout:================================================================================ 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout: Package Arch Version Repository Size 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout:================================================================================ 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout:Installing: 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout:Installing dependencies: 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout:Transaction Summary 2024-04-15T21:59:28.191 INFO:teuthology.orchestra.run.smithi088.stdout:================================================================================ 2024-04-15T21:59:28.192 INFO:teuthology.orchestra.run.smithi088.stdout:Install 4 Packages 2024-04-15T21:59:28.192 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T21:59:28.192 INFO:teuthology.orchestra.run.smithi088.stdout:Total download size: 77 M 2024-04-15T21:59:28.192 INFO:teuthology.orchestra.run.smithi088.stdout:Installed size: 123 M 2024-04-15T21:59:28.192 INFO:teuthology.orchestra.run.smithi088.stdout:Downloading Packages: 2024-04-15T21:59:28.543 INFO:teuthology.orchestra.run.smithi088.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 790 kB/s | 277 kB 00:00 2024-04-15T21:59:28.732 INFO:teuthology.orchestra.run.smithi193.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 14 MB/s | 15 MB 00:01 2024-04-15T21:59:29.452 INFO:teuthology.orchestra.run.smithi088.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 12 MB/s | 15 MB 00:01 2024-04-15T21:59:29.715 INFO:teuthology.orchestra.run.smithi193.stdout:(3/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 16 MB/s | 34 MB 00:02 2024-04-15T21:59:30.352 INFO:teuthology.orchestra.run.smithi088.stdout:(3/4): kernel-modules-core-5.14.0-438.el9.x86_6 15 MB/s | 28 MB 00:01 2024-04-15T21:59:30.652 INFO:teuthology.orchestra.run.smithi088.stdout:(4/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 14 MB/s | 34 MB 00:02 2024-04-15T21:59:30.655 INFO:teuthology.orchestra.run.smithi088.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:59:30.655 INFO:teuthology.orchestra.run.smithi088.stdout:Total 31 MB/s | 77 MB 00:02 2024-04-15T21:59:30.655 INFO:teuthology.orchestra.run.smithi088.stdout:Running transaction check 2024-04-15T21:59:31.026 INFO:teuthology.orchestra.run.smithi088.stdout:Transaction check succeeded. 2024-04-15T21:59:31.026 INFO:teuthology.orchestra.run.smithi088.stdout:Running transaction test 2024-04-15T21:59:31.440 INFO:teuthology.orchestra.run.smithi193.stdout:(4/4): kernel-modules-core-5.14.0-438.el9.x86_6 7.9 MB/s | 28 MB 00:03 2024-04-15T21:59:31.443 INFO:teuthology.orchestra.run.smithi193.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:59:31.443 INFO:teuthology.orchestra.run.smithi193.stdout:Total 20 MB/s | 77 MB 00:03 2024-04-15T21:59:31.444 INFO:teuthology.orchestra.run.smithi193.stdout:Running transaction check 2024-04-15T21:59:31.790 INFO:teuthology.orchestra.run.smithi193.stdout:Transaction check succeeded. 2024-04-15T21:59:31.791 INFO:teuthology.orchestra.run.smithi193.stdout:Running transaction test 2024-04-15T21:59:31.890 INFO:teuthology.orchestra.run.smithi088.stdout:Transaction test succeeded. 2024-04-15T21:59:31.891 INFO:teuthology.orchestra.run.smithi088.stdout:Running transaction 2024-04-15T21:59:32.678 INFO:teuthology.orchestra.run.smithi193.stdout:Transaction test succeeded. 2024-04-15T21:59:32.678 INFO:teuthology.orchestra.run.smithi193.stdout:Running transaction 2024-04-15T21:59:34.191 INFO:teuthology.orchestra.run.smithi088.stdout: Preparing : 1/1 2024-04-15T21:59:34.837 INFO:teuthology.orchestra.run.smithi088.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:59:34.930 INFO:teuthology.orchestra.run.smithi088.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:59:34.959 INFO:teuthology.orchestra.run.smithi193.stdout: Preparing : 1/1 2024-04-15T21:59:35.674 INFO:teuthology.orchestra.run.smithi193.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:59:35.757 INFO:teuthology.orchestra.run.smithi193.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:59:37.677 INFO:teuthology.orchestra.run.smithi088.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:59:37.871 INFO:teuthology.orchestra.run.smithi088.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:59:38.573 INFO:teuthology.orchestra.run.smithi193.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:59:38.756 INFO:teuthology.orchestra.run.smithi193.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:59:42.560 INFO:teuthology.orchestra.run.smithi088.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:59:42.670 INFO:teuthology.orchestra.run.smithi088.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:59:43.477 INFO:teuthology.orchestra.run.smithi193.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:59:43.516 INFO:teuthology.orchestra.run.smithi193.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:59:47.366 INFO:teuthology.orchestra.run.smithi088.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:59:48.267 INFO:teuthology.orchestra.run.smithi193.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:16.879 INFO:teuthology.orchestra.run.smithi088.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:16.880 INFO:teuthology.orchestra.run.smithi088.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T22:00:16.880 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:00:16.923 INFO:teuthology.orchestra.run.smithi088.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:17.366 INFO:teuthology.orchestra.run.smithi088.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:17.366 INFO:teuthology.orchestra.run.smithi088.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T22:00:17.366 INFO:teuthology.orchestra.run.smithi088.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T22:00:17.366 INFO:teuthology.orchestra.run.smithi088.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T22:00:17.568 INFO:teuthology.orchestra.run.smithi193.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:17.568 INFO:teuthology.orchestra.run.smithi193.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T22:00:17.568 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:00:17.612 INFO:teuthology.orchestra.run.smithi193.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:17.777 INFO:teuthology.orchestra.run.smithi088.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:17.778 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:00:17.778 INFO:teuthology.orchestra.run.smithi088.stdout:Installed: 2024-04-15T22:00:17.778 INFO:teuthology.orchestra.run.smithi088.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T22:00:17.778 INFO:teuthology.orchestra.run.smithi088.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T22:00:17.778 INFO:teuthology.orchestra.run.smithi088.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T22:00:17.778 INFO:teuthology.orchestra.run.smithi088.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T22:00:17.778 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:00:17.778 INFO:teuthology.orchestra.run.smithi088.stdout:Complete! 2024-04-15T22:00:18.009 INFO:teuthology.orchestra.run.smithi193.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:18.009 INFO:teuthology.orchestra.run.smithi193.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T22:00:18.009 INFO:teuthology.orchestra.run.smithi193.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T22:00:18.009 INFO:teuthology.orchestra.run.smithi193.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T22:00:18.131 DEBUG:teuthology.orchestra.run.smithi088:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T22:00:18.238 INFO:teuthology.orchestra.run.smithi088.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T22:00:18.238 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T22:00:18.238 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T22:00:18.239 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T22:00:18.239 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T22:00:18.239 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T22:00:18.239 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi088.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T22:00:18.239 DEBUG:teuthology.orchestra.run.smithi088:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T22:00:18.319 INFO:teuthology.orchestra.run.smithi088.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T22:00:18.319 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T22:00:18.320 DEBUG:teuthology.orchestra.run.smithi088:> sudo rpm -qi grub2-tools 2024-04-15T22:00:18.363 INFO:teuthology.orchestra.run.smithi088.stdout:Name : grub2-tools 2024-04-15T22:00:18.363 INFO:teuthology.orchestra.run.smithi088.stdout:Epoch : 1 2024-04-15T22:00:18.363 INFO:teuthology.orchestra.run.smithi088.stdout:Version : 2.06 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Release : 68.el9 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Architecture: x86_64 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Group : Unspecified 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Size : 8264254 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:License : GPLv3+ 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Packager : builder@centos.org 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:Vendor : CentOS 2024-04-15T22:00:18.364 INFO:teuthology.orchestra.run.smithi088.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout:Summary : Support tools for GRUB. 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout:Description : 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout:hardware devices. 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:00:18.365 INFO:teuthology.orchestra.run.smithi088.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T22:00:18.365 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T22:00:18.365 INFO:teuthology.task.kernel:Updating grub on smithi088 to boot 5.14.0-438.el9.x86_64 2024-04-15T22:00:18.366 DEBUG:teuthology.orchestra.run.smithi088:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T22:00:18.442 INFO:teuthology.orchestra.run.smithi193.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:00:18.443 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:00:18.443 INFO:teuthology.orchestra.run.smithi193.stdout:Installed: 2024-04-15T22:00:18.443 INFO:teuthology.orchestra.run.smithi193.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T22:00:18.443 INFO:teuthology.orchestra.run.smithi193.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T22:00:18.443 INFO:teuthology.orchestra.run.smithi193.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T22:00:18.443 INFO:teuthology.orchestra.run.smithi193.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T22:00:18.443 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:00:18.443 INFO:teuthology.orchestra.run.smithi193.stdout:Complete! 2024-04-15T22:00:18.793 DEBUG:teuthology.orchestra.run.smithi193:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T22:00:18.891 INFO:teuthology.orchestra.run.smithi193.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T22:00:18.891 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T22:00:18.891 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T22:00:18.891 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T22:00:18.892 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T22:00:18.892 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T22:00:18.892 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi193.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T22:00:18.892 DEBUG:teuthology.orchestra.run.smithi193:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T22:00:18.973 INFO:teuthology.orchestra.run.smithi193.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T22:00:18.974 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T22:00:18.974 DEBUG:teuthology.orchestra.run.smithi193:> sudo rpm -qi grub2-tools 2024-04-15T22:00:19.014 INFO:teuthology.orchestra.run.smithi088.stderr:Generating grub configuration file ... 2024-04-15T22:00:19.018 INFO:teuthology.orchestra.run.smithi193.stdout:Name : grub2-tools 2024-04-15T22:00:19.019 INFO:teuthology.orchestra.run.smithi193.stdout:Epoch : 1 2024-04-15T22:00:19.019 INFO:teuthology.orchestra.run.smithi193.stdout:Version : 2.06 2024-04-15T22:00:19.019 INFO:teuthology.orchestra.run.smithi193.stdout:Release : 68.el9 2024-04-15T22:00:19.019 INFO:teuthology.orchestra.run.smithi193.stdout:Architecture: x86_64 2024-04-15T22:00:19.019 INFO:teuthology.orchestra.run.smithi193.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T22:00:19.019 INFO:teuthology.orchestra.run.smithi193.stdout:Group : Unspecified 2024-04-15T22:00:19.020 INFO:teuthology.orchestra.run.smithi193.stdout:Size : 8264254 2024-04-15T22:00:19.020 INFO:teuthology.orchestra.run.smithi193.stdout:License : GPLv3+ 2024-04-15T22:00:19.020 INFO:teuthology.orchestra.run.smithi193.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T22:00:19.020 INFO:teuthology.orchestra.run.smithi193.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T22:00:19.020 INFO:teuthology.orchestra.run.smithi193.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T22:00:19.020 INFO:teuthology.orchestra.run.smithi193.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T22:00:19.020 INFO:teuthology.orchestra.run.smithi193.stdout:Packager : builder@centos.org 2024-04-15T22:00:19.021 INFO:teuthology.orchestra.run.smithi193.stdout:Vendor : CentOS 2024-04-15T22:00:19.021 INFO:teuthology.orchestra.run.smithi193.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T22:00:19.021 INFO:teuthology.orchestra.run.smithi193.stdout:Summary : Support tools for GRUB. 2024-04-15T22:00:19.021 INFO:teuthology.orchestra.run.smithi193.stdout:Description : 2024-04-15T22:00:19.021 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:00:19.021 INFO:teuthology.orchestra.run.smithi193.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T22:00:19.021 INFO:teuthology.orchestra.run.smithi193.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T22:00:19.022 INFO:teuthology.orchestra.run.smithi193.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T22:00:19.022 INFO:teuthology.orchestra.run.smithi193.stdout:hardware devices. 2024-04-15T22:00:19.022 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:00:19.022 INFO:teuthology.orchestra.run.smithi193.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T22:00:19.023 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T22:00:19.023 INFO:teuthology.task.kernel:Updating grub on smithi193 to boot 5.14.0-438.el9.x86_64 2024-04-15T22:00:19.023 DEBUG:teuthology.orchestra.run.smithi193:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T22:00:19.623 INFO:teuthology.orchestra.run.smithi193.stderr:Generating grub configuration file ... 2024-04-15T22:00:20.443 INFO:teuthology.orchestra.run.smithi088.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T22:00:20.482 INFO:teuthology.orchestra.run.smithi088.stderr:done 2024-04-15T22:00:20.490 DEBUG:teuthology.orchestra.run.smithi088:> mktemp 2024-04-15T22:00:20.545 INFO:teuthology.orchestra.run.smithi088.stdout:/tmp/tmp.sHrsTgv97T 2024-04-15T22:00:20.545 DEBUG:teuthology.orchestra.run.smithi088:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.sHrsTgv97T 2024-04-15T22:00:20.622 DEBUG:teuthology.orchestra.run.smithi088:> sudo chmod 0666 /tmp/tmp.sHrsTgv97T 2024-04-15T22:00:20.756 DEBUG:teuthology.orchestra.remote:smithi088:/tmp/tmp.sHrsTgv97T is 6KB 2024-04-15T22:00:20.804 DEBUG:teuthology.orchestra.run.smithi088:> rm -fr /tmp/tmp.sHrsTgv97T 2024-04-15T22:00:20.819 DEBUG:teuthology.orchestra.run.smithi088:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T22:00:20.884 INFO:teuthology.orchestra.run.smithi088.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T22:00:20.884 INFO:teuthology.orchestra.run.smithi088.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T22:00:20.884 INFO:teuthology.orchestra.run.smithi088.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T22:00:20.884 INFO:teuthology.orchestra.run.smithi088.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T22:00:20.886 DEBUG:teuthology.orchestra.run.smithi088:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T22:00:21.041 DEBUG:teuthology.orchestra.run.smithi088:> sudo shutdown -r now 2024-04-15T22:00:21.147 INFO:teuthology.orchestra.run.smithi193.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T22:00:21.169 INFO:teuthology.orchestra.run.smithi193.stderr:done 2024-04-15T22:00:21.171 DEBUG:teuthology.orchestra.run.smithi193:> mktemp 2024-04-15T22:00:21.186 INFO:teuthology.orchestra.run.smithi193.stdout:/tmp/tmp.4e6lLe5Ovw 2024-04-15T22:00:21.186 DEBUG:teuthology.orchestra.run.smithi193:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.4e6lLe5Ovw 2024-04-15T22:00:21.256 DEBUG:teuthology.orchestra.run.smithi193:> sudo chmod 0666 /tmp/tmp.4e6lLe5Ovw 2024-04-15T22:00:21.395 DEBUG:teuthology.orchestra.remote:smithi193:/tmp/tmp.4e6lLe5Ovw is 6KB 2024-04-15T22:00:21.444 DEBUG:teuthology.orchestra.run.smithi193:> rm -fr /tmp/tmp.4e6lLe5Ovw 2024-04-15T22:00:21.458 DEBUG:teuthology.orchestra.run.smithi193:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T22:00:21.522 INFO:teuthology.orchestra.run.smithi193.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T22:00:21.523 INFO:teuthology.orchestra.run.smithi193.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T22:00:21.523 INFO:teuthology.orchestra.run.smithi193.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T22:00:21.523 INFO:teuthology.orchestra.run.smithi193.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T22:00:21.524 DEBUG:teuthology.orchestra.run.smithi193:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T22:00:21.664 DEBUG:teuthology.orchestra.run.smithi193:> sudo shutdown -r now 2024-04-15T22:00:51.069 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T22:00:51.070 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi088.front.sepia.ceph.com' 2024-04-15T22:00:51.071 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi088.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:00:51.667 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T22:00:51.667 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi193.front.sepia.ceph.com' 2024-04-15T22:00:51.668 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi193.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:01:09.407 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.88 2024-04-15T22:01:10.174 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.193 2024-04-15T22:01:18.410 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi088.front.sepia.ceph.com' 2024-04-15T22:01:18.411 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi088.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:01:19.176 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi193.front.sepia.ceph.com' 2024-04-15T22:01:19.176 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi193.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:01:21.470 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.88 2024-04-15T22:01:22.238 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.193 2024-04-15T22:01:33.482 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi088.front.sepia.ceph.com' 2024-04-15T22:01:33.483 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi088.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:01:34.240 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi193.front.sepia.ceph.com' 2024-04-15T22:01:34.240 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi193.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:01:36.542 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.88 2024-04-15T22:01:51.554 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi088.front.sepia.ceph.com' 2024-04-15T22:01:51.555 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi088.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:01:52.674 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.193 2024-04-15T22:02:07.690 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi193.front.sepia.ceph.com' 2024-04-15T22:02:07.691 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi193.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:02:08.148 DEBUG:teuthology.orchestra.run.smithi193:> true 2024-04-15T22:02:08.614 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi193.front.sepia.ceph.com' 2024-04-15T22:02:08.614 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-438.el9.x86_64"... 2024-04-15T22:02:08.614 DEBUG:teuthology.orchestra.run.smithi193:> uname -r 2024-04-15T22:02:08.629 INFO:teuthology.orchestra.run.smithi193.stdout:5.14.0-438.el9.x86_64 2024-04-15T22:02:08.629 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T22:02:08.629 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:02:08.629 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T22:02:09.630 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T22:02:09.630 DEBUG:teuthology.orchestra.run.smithi193:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:02:09.707 INFO:teuthology.orchestra.run.smithi193.stdout:ttyS1 2024-04-15T22:02:09.755 DEBUG:teuthology.parallel:result is None 2024-04-15T22:02:10.078 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.88 2024-04-15T22:02:28.079 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi088.front.sepia.ceph.com' 2024-04-15T22:02:28.080 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi088.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:02:28.360 DEBUG:teuthology.orchestra.run.smithi088:> true 2024-04-15T22:02:28.779 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi088.front.sepia.ceph.com' 2024-04-15T22:02:28.779 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-438.el9.x86_64"... 2024-04-15T22:02:28.779 DEBUG:teuthology.orchestra.run.smithi088:> uname -r 2024-04-15T22:02:28.796 INFO:teuthology.orchestra.run.smithi088.stdout:5.14.0-438.el9.x86_64 2024-04-15T22:02:28.796 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T22:02:28.796 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:02:28.796 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T22:02:29.797 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T22:02:29.797 DEBUG:teuthology.orchestra.run.smithi088:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:02:29.870 INFO:teuthology.orchestra.run.smithi088.stdout:ttyS1 2024-04-15T22:02:29.897 DEBUG:teuthology.parallel:result is None 2024-04-15T22:02:29.897 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T22:02:29.905 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T22:02:29.905 DEBUG:teuthology.orchestra.run.smithi088:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:02:29.907 DEBUG:teuthology.orchestra.run.smithi193:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:02:29.927 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T22:02:29.936 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T22:02:29.963 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T22:02:29.964 DEBUG:teuthology.orchestra.run.smithi088:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:02:29.966 DEBUG:teuthology.orchestra.run.smithi193:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:02:30.055 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T22:02:30.064 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T22:02:30.064 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:02:30.067 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:02:30.100 INFO:teuthology.orchestra.run.smithi193.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:02:30.112 INFO:teuthology.orchestra.run.smithi088.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:02:30.115 INFO:teuthology.orchestra.run.smithi193.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:02:30.127 INFO:teuthology.orchestra.run.smithi088.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:02:30.129 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T22:02:30.138 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T22:02:30.138 DEBUG:teuthology.orchestra.run.smithi088:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:02:30.141 DEBUG:teuthology.orchestra.run.smithi193:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:02:30.188 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T22:02:30.200 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T22:02:30.200 DEBUG:teuthology.orchestra.run.smithi088:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:02:30.213 DEBUG:teuthology.orchestra.run.smithi193:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:02:30.246 DEBUG:teuthology.orchestra.run.smithi088:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:02:30.314 DEBUG:teuthology.orchestra.run.smithi088:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:02:30.361 DEBUG:teuthology.orchestra.run.smithi088:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:02:30.445 DEBUG:teuthology.orchestra.run.smithi088:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:02:30.489 DEBUG:teuthology.orchestra.run.smithi088:> set -ex 2024-04-15T22:02:30.489 DEBUG:teuthology.orchestra.run.smithi088:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:02:30.559 DEBUG:teuthology.orchestra.run.smithi193:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:02:30.603 DEBUG:teuthology.orchestra.run.smithi193:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:02:30.669 DEBUG:teuthology.orchestra.run.smithi193:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:02:30.711 DEBUG:teuthology.orchestra.run.smithi193:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:02:30.756 DEBUG:teuthology.orchestra.run.smithi193:> set -ex 2024-04-15T22:02:30.756 DEBUG:teuthology.orchestra.run.smithi193:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:02:30.825 DEBUG:teuthology.orchestra.run.smithi088:> sudo service rsyslog restart 2024-04-15T22:02:30.828 DEBUG:teuthology.orchestra.run.smithi193:> sudo service rsyslog restart 2024-04-15T22:02:30.874 INFO:teuthology.orchestra.run.smithi088.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:02:30.915 INFO:teuthology.orchestra.run.smithi193.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:02:31.199 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T22:02:31.207 INFO:teuthology.task.internal:Starting timer... 2024-04-15T22:02:31.207 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T22:02:31.222 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T22:02:31.231 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-15T22:02:31.232 DEBUG:teuthology.orchestra.run.smithi088:> sudo service auditd rotate 2024-04-15T22:02:31.292 INFO:teuthology.orchestra.run.smithi088.stdout:Rotating logs: 2024-04-15T22:02:31.293 DEBUG:teuthology.orchestra.run.smithi193:> sudo service auditd rotate 2024-04-15T22:02:31.347 INFO:teuthology.orchestra.run.smithi193.stdout:Rotating logs: 2024-04-15T22:02:31.349 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T22:02:31.349 DEBUG:teuthology.orchestra.run.smithi088:> /usr/sbin/getenforce 2024-04-15T22:02:31.380 INFO:teuthology.orchestra.run.smithi088.stdout:Permissive 2024-04-15T22:02:31.380 DEBUG:teuthology.orchestra.run.smithi193:> /usr/sbin/getenforce 2024-04-15T22:02:31.399 INFO:teuthology.orchestra.run.smithi193.stdout:Permissive 2024-04-15T22:02:31.399 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi088.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi193.front.sepia.ceph.com': 'permissive'} 2024-04-15T22:02:31.400 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:02:31.450 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:02:31.451 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:02:31.480 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:02:31.481 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T22:02:31.481 DEBUG:teuthology.orchestra.run.smithi088:> sudo /usr/sbin/setenforce permissive 2024-04-15T22:02:31.541 DEBUG:teuthology.orchestra.run.smithi193:> sudo /usr/sbin/setenforce permissive 2024-04-15T22:02:31.584 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T22:02:31.595 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-15T22:02:31.600 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-15T22:02:31.730 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T22:02:31.746 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-15T22:02:31.747 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi088.front.sepia.ceph.com,smithi193.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T22:06:45.069 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi088.front.sepia.ceph.com'), Remote(name='ubuntu@smithi193.front.sepia.ceph.com')] 2024-04-15T22:06:45.070 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi088.front.sepia.ceph.com' 2024-04-15T22:06:45.072 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi088.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:06:45.165 DEBUG:teuthology.orchestra.run.smithi088:> true 2024-04-15T22:06:45.241 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi088.front.sepia.ceph.com' 2024-04-15T22:06:45.242 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi193.front.sepia.ceph.com' 2024-04-15T22:06:45.242 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi193.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:06:45.330 DEBUG:teuthology.orchestra.run.smithi193:> true 2024-04-15T22:06:45.417 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi193.front.sepia.ceph.com' 2024-04-15T22:06:45.417 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T22:06:45.428 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T22:06:45.429 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:06:45.429 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:45.431 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:06:45.432 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:45.463 INFO:teuthology.orchestra.run.smithi088.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T22:06:45.481 INFO:teuthology.orchestra.run.smithi088.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T22:06:45.489 INFO:teuthology.orchestra.run.smithi193.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T22:06:45.506 INFO:teuthology.orchestra.run.smithi193.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T22:06:45.512 INFO:teuthology.orchestra.run.smithi088.stderr:sudo: ntpd: command not found 2024-04-15T22:06:45.527 INFO:teuthology.orchestra.run.smithi088.stdout:506 Cannot talk to daemon 2024-04-15T22:06:45.537 INFO:teuthology.orchestra.run.smithi193.stderr:sudo: ntpd: command not found 2024-04-15T22:06:45.544 INFO:teuthology.orchestra.run.smithi088.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T22:06:45.552 INFO:teuthology.orchestra.run.smithi193.stdout:506 Cannot talk to daemon 2024-04-15T22:06:45.562 INFO:teuthology.orchestra.run.smithi088.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T22:06:45.569 INFO:teuthology.orchestra.run.smithi193.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T22:06:45.587 INFO:teuthology.orchestra.run.smithi193.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T22:06:45.616 INFO:teuthology.orchestra.run.smithi088.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:06:45.619 INFO:teuthology.orchestra.run.smithi088.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:06:45.620 INFO:teuthology.orchestra.run.smithi088.stdout:=============================================================================== 2024-04-15T22:06:45.620 INFO:teuthology.orchestra.run.smithi088.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:45.620 INFO:teuthology.orchestra.run.smithi088.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:45.620 INFO:teuthology.orchestra.run.smithi088.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:45.620 INFO:teuthology.orchestra.run.smithi088.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:45.645 INFO:teuthology.orchestra.run.smithi193.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:06:45.649 INFO:teuthology.orchestra.run.smithi193.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:06:45.649 INFO:teuthology.orchestra.run.smithi193.stdout:=============================================================================== 2024-04-15T22:06:45.649 INFO:teuthology.orchestra.run.smithi193.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:45.649 INFO:teuthology.orchestra.run.smithi193.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:45.649 INFO:teuthology.orchestra.run.smithi193.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:45.649 INFO:teuthology.orchestra.run.smithi193.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:45.649 INFO:teuthology.run_tasks:Running task pexec... 2024-04-15T22:06:45.660 INFO:teuthology.task.pexec:Executing custom commands... 2024-04-15T22:06:45.660 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi088.front.sepia.ceph.com 2024-04-15T22:06:45.660 DEBUG:teuthology.orchestra.run.smithi088:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T22:06:45.661 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi193.front.sepia.ceph.com 2024-04-15T22:06:45.661 DEBUG:teuthology.orchestra.run.smithi193:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T22:06:46.251 INFO:teuthology.orchestra.run.smithi088.stdout:Last metadata expiration check: 0:00:48 ago on Mon 15 Apr 2024 10:05:58 PM UTC. 2024-04-15T22:06:46.278 INFO:teuthology.orchestra.run.smithi193.stdout:Last metadata expiration check: 0:00:48 ago on Mon 15 Apr 2024 10:05:58 PM UTC. 2024-04-15T22:06:46.398 INFO:teuthology.orchestra.run.smithi088.stdout:Dependencies resolved. 2024-04-15T22:06:46.417 INFO:teuthology.orchestra.run.smithi088.stdout:================================================================================ 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout: Package Architecture Version Repository Size 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout:================================================================================ 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout:Installing: 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout:Transaction Summary 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout:================================================================================ 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout:Install 1 Package 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout:Total download size: 3.1 M 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout:Installed size: 9.8 M 2024-04-15T22:06:46.418 INFO:teuthology.orchestra.run.smithi088.stdout:Downloading Packages: 2024-04-15T22:06:46.426 INFO:teuthology.orchestra.run.smithi193.stdout:Dependencies resolved. 2024-04-15T22:06:46.427 INFO:teuthology.orchestra.run.smithi193.stdout:================================================================================ 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout: Package Architecture Version Repository Size 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout:================================================================================ 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout:Installing: 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout:Transaction Summary 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout:================================================================================ 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout:Install 1 Package 2024-04-15T22:06:46.428 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:06:46.429 INFO:teuthology.orchestra.run.smithi193.stdout:Total download size: 3.1 M 2024-04-15T22:06:46.429 INFO:teuthology.orchestra.run.smithi193.stdout:Installed size: 9.8 M 2024-04-15T22:06:46.429 INFO:teuthology.orchestra.run.smithi193.stdout:Downloading Packages: 2024-04-15T22:06:47.137 INFO:teuthology.orchestra.run.smithi088.stdout:runc-1.1.12-2.el9.x86_64.rpm 4.9 MB/s | 3.1 MB 00:00 2024-04-15T22:06:47.137 INFO:teuthology.orchestra.run.smithi088.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:06:47.137 INFO:teuthology.orchestra.run.smithi088.stdout:Total 4.3 MB/s | 3.1 MB 00:00 2024-04-15T22:06:47.173 INFO:teuthology.orchestra.run.smithi088.stdout:Running transaction check 2024-04-15T22:06:47.179 INFO:teuthology.orchestra.run.smithi088.stdout:Transaction check succeeded. 2024-04-15T22:06:47.179 INFO:teuthology.orchestra.run.smithi088.stdout:Running transaction test 2024-04-15T22:06:47.259 INFO:teuthology.orchestra.run.smithi088.stdout:Transaction test succeeded. 2024-04-15T22:06:47.259 INFO:teuthology.orchestra.run.smithi088.stdout:Running transaction 2024-04-15T22:06:47.465 INFO:teuthology.orchestra.run.smithi088.stdout: Preparing : 1/1 2024-04-15T22:06:47.547 INFO:teuthology.orchestra.run.smithi088.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:06:47.583 INFO:teuthology.orchestra.run.smithi193.stdout:runc-1.1.12-2.el9.x86_64.rpm 3.9 MB/s | 3.1 MB 00:00 2024-04-15T22:06:47.583 INFO:teuthology.orchestra.run.smithi193.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:06:47.583 INFO:teuthology.orchestra.run.smithi193.stdout:Total 2.7 MB/s | 3.1 MB 00:01 2024-04-15T22:06:47.619 INFO:teuthology.orchestra.run.smithi193.stdout:Running transaction check 2024-04-15T22:06:47.625 INFO:teuthology.orchestra.run.smithi193.stdout:Transaction check succeeded. 2024-04-15T22:06:47.625 INFO:teuthology.orchestra.run.smithi193.stdout:Running transaction test 2024-04-15T22:06:47.704 INFO:teuthology.orchestra.run.smithi193.stdout:Transaction test succeeded. 2024-04-15T22:06:47.705 INFO:teuthology.orchestra.run.smithi193.stdout:Running transaction 2024-04-15T22:06:47.905 INFO:teuthology.orchestra.run.smithi193.stdout: Preparing : 1/1 2024-04-15T22:06:47.985 INFO:teuthology.orchestra.run.smithi193.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:06:48.088 INFO:teuthology.orchestra.run.smithi088.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:06:48.361 INFO:teuthology.orchestra.run.smithi088.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:06:48.361 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:06:48.361 INFO:teuthology.orchestra.run.smithi088.stdout:Installed: 2024-04-15T22:06:48.361 INFO:teuthology.orchestra.run.smithi088.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T22:06:48.361 INFO:teuthology.orchestra.run.smithi088.stdout: 2024-04-15T22:06:48.361 INFO:teuthology.orchestra.run.smithi088.stdout:Complete! 2024-04-15T22:06:48.533 INFO:teuthology.orchestra.run.smithi193.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:06:48.618 DEBUG:teuthology.parallel:result is None 2024-04-15T22:06:48.850 INFO:teuthology.orchestra.run.smithi193.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:06:48.850 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:06:48.850 INFO:teuthology.orchestra.run.smithi193.stdout:Installed: 2024-04-15T22:06:48.850 INFO:teuthology.orchestra.run.smithi193.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T22:06:48.850 INFO:teuthology.orchestra.run.smithi193.stdout: 2024-04-15T22:06:48.850 INFO:teuthology.orchestra.run.smithi193.stdout:Complete! 2024-04-15T22:06:49.090 DEBUG:teuthology.parallel:result is None 2024-04-15T22:06:49.090 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-15T22:06:49.100 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-15T22:06:49.100 DEBUG:teuthology.orchestra.run.smithi088:> set -ex 2024-04-15T22:06:49.100 DEBUG:teuthology.orchestra.run.smithi088:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:06:49.118 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-15T22:06:49.118 DEBUG:teuthology.orchestra.run.smithi088:> stat /dev/vg_nvme/lv_1 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout:Access: 2024-04-15 22:06:44.077557914 +0000 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout:Modify: 2024-04-15 22:06:22.832993490 +0000 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout:Change: 2024-04-15 22:06:22.832993490 +0000 2024-04-15T22:06:49.175 INFO:teuthology.orchestra.run.smithi088.stdout: Birth: 2024-04-15 22:06:22.832993490 +0000 2024-04-15T22:06:49.176 DEBUG:teuthology.orchestra.run.smithi088:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T22:06:49.242 INFO:teuthology.orchestra.run.smithi088.stderr:1+0 records in 2024-04-15T22:06:49.242 INFO:teuthology.orchestra.run.smithi088.stderr:1+0 records out 2024-04-15T22:06:49.242 INFO:teuthology.orchestra.run.smithi088.stderr:512 bytes copied, 0.000201476 s, 2.5 MB/s 2024-04-15T22:06:49.243 DEBUG:teuthology.orchestra.run.smithi088:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T22:06:49.300 DEBUG:teuthology.orchestra.run.smithi088:> stat /dev/vg_nvme/lv_2 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout:Device: 5h/5d Inode: 685 Links: 1 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout:Access: 2024-04-15 22:06:44.077557914 +0000 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout:Modify: 2024-04-15 22:06:23.175986456 +0000 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout:Change: 2024-04-15 22:06:23.175986456 +0000 2024-04-15T22:06:49.357 INFO:teuthology.orchestra.run.smithi088.stdout: Birth: 2024-04-15 22:06:23.175986456 +0000 2024-04-15T22:06:49.358 DEBUG:teuthology.orchestra.run.smithi088:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T22:06:49.425 INFO:teuthology.orchestra.run.smithi088.stderr:1+0 records in 2024-04-15T22:06:49.425 INFO:teuthology.orchestra.run.smithi088.stderr:1+0 records out 2024-04-15T22:06:49.425 INFO:teuthology.orchestra.run.smithi088.stderr:512 bytes copied, 0.000197657 s, 2.6 MB/s 2024-04-15T22:06:49.427 DEBUG:teuthology.orchestra.run.smithi088:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T22:06:49.483 DEBUG:teuthology.orchestra.run.smithi088:> stat /dev/vg_nvme/lv_3 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout:Device: 5h/5d Inode: 703 Links: 1 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout:Access: 2024-04-15 22:06:44.077557914 +0000 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout:Modify: 2024-04-15 22:06:23.516979463 +0000 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout:Change: 2024-04-15 22:06:23.516979463 +0000 2024-04-15T22:06:49.540 INFO:teuthology.orchestra.run.smithi088.stdout: Birth: 2024-04-15 22:06:23.516979463 +0000 2024-04-15T22:06:49.541 DEBUG:teuthology.orchestra.run.smithi088:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T22:06:49.606 INFO:teuthology.orchestra.run.smithi088.stderr:1+0 records in 2024-04-15T22:06:49.606 INFO:teuthology.orchestra.run.smithi088.stderr:1+0 records out 2024-04-15T22:06:49.606 INFO:teuthology.orchestra.run.smithi088.stderr:512 bytes copied, 0.000190858 s, 2.7 MB/s 2024-04-15T22:06:49.608 DEBUG:teuthology.orchestra.run.smithi088:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T22:06:49.664 DEBUG:teuthology.orchestra.run.smithi088:> stat /dev/vg_nvme/lv_4 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout:Access: 2024-04-15 22:06:44.077557914 +0000 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout:Modify: 2024-04-15 22:06:23.849972635 +0000 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout:Change: 2024-04-15 22:06:23.849972635 +0000 2024-04-15T22:06:49.719 INFO:teuthology.orchestra.run.smithi088.stdout: Birth: 2024-04-15 22:06:23.849972635 +0000 2024-04-15T22:06:49.720 DEBUG:teuthology.orchestra.run.smithi088:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T22:06:49.786 INFO:teuthology.orchestra.run.smithi088.stderr:1+0 records in 2024-04-15T22:06:49.787 INFO:teuthology.orchestra.run.smithi088.stderr:1+0 records out 2024-04-15T22:06:49.787 INFO:teuthology.orchestra.run.smithi088.stderr:512 bytes copied, 0.000159989 s, 3.2 MB/s 2024-04-15T22:06:49.788 DEBUG:teuthology.orchestra.run.smithi088:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T22:06:49.844 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:49.983 INFO:teuthology.orchestra.run.smithi088.stdout:loop 2024-04-15T22:06:49.984 INFO:tasks.nvme_loop:Connecting nvme_loop smithi088:/dev/vg_nvme/lv_1... 2024-04-15T22:06:49.984 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:50.024 INFO:teuthology.orchestra.run.smithi088.stdout:1 2024-04-15T22:06:50.063 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/vg_nvme/lv_11 2024-04-15T22:06:50.094 INFO:tasks.nvme_loop:Connecting nvme_loop smithi088:/dev/vg_nvme/lv_2... 2024-04-15T22:06:50.094 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:50.175 INFO:teuthology.orchestra.run.smithi088.stdout:1 2024-04-15T22:06:50.230 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/vg_nvme/lv_21 2024-04-15T22:06:50.261 INFO:tasks.nvme_loop:Connecting nvme_loop smithi088:/dev/vg_nvme/lv_3... 2024-04-15T22:06:50.261 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:50.343 INFO:teuthology.orchestra.run.smithi088.stdout:1 2024-04-15T22:06:50.384 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/vg_nvme/lv_31 2024-04-15T22:06:50.415 INFO:tasks.nvme_loop:Connecting nvme_loop smithi088:/dev/vg_nvme/lv_4... 2024-04-15T22:06:50.415 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:50.495 INFO:teuthology.orchestra.run.smithi088.stdout:1 2024-04-15T22:06:50.535 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/vg_nvme/lv_41 2024-04-15T22:06:50.565 DEBUG:teuthology.orchestra.run.smithi088:> set -ex 2024-04-15T22:06:50.565 DEBUG:teuthology.orchestra.run.smithi088:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:06:50.621 DEBUG:teuthology.orchestra.run.smithi088:> sudo nvme list 2024-04-15T22:06:50.687 INFO:teuthology.orchestra.run.smithi088.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-15T22:06:50.687 INFO:teuthology.orchestra.run.smithi088.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-15T22:06:50.687 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/nvme0n1 PHFT620400XD400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-15T22:06:50.687 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/nvme1n1 e660323fa139d7e893e4 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:06:50.687 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/nvme2n1 2af95997762f77fb7d46 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:06:50.687 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/nvme3n1 29dec3eac9f57ec743c3 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:06:50.687 INFO:teuthology.orchestra.run.smithi088.stdout:/dev/nvme4n1 c92e949b526331b48e0e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:06:50.688 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-15T22:06:50.688 DEBUG:teuthology.orchestra.run.smithi088:> set -ex 2024-04-15T22:06:50.688 DEBUG:teuthology.orchestra.run.smithi088:> sudo dd of=/scratch_devs 2024-04-15T22:06:50.757 DEBUG:teuthology.orchestra.run.smithi193:> set -ex 2024-04-15T22:06:50.758 DEBUG:teuthology.orchestra.run.smithi193:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:06:50.777 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-15T22:06:50.777 DEBUG:teuthology.orchestra.run.smithi193:> stat /dev/vg_nvme/lv_1 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout:Device: 5h/5d Inode: 665 Links: 1 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout:Access: 2024-04-15 22:06:44.090063727 +0000 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout:Modify: 2024-04-15 22:06:22.862416814 +0000 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout:Change: 2024-04-15 22:06:22.862416814 +0000 2024-04-15T22:06:50.835 INFO:teuthology.orchestra.run.smithi193.stdout: Birth: 2024-04-15 22:06:22.862416814 +0000 2024-04-15T22:06:50.835 DEBUG:teuthology.orchestra.run.smithi193:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T22:06:50.905 INFO:teuthology.orchestra.run.smithi193.stderr:1+0 records in 2024-04-15T22:06:50.905 INFO:teuthology.orchestra.run.smithi193.stderr:1+0 records out 2024-04-15T22:06:50.905 INFO:teuthology.orchestra.run.smithi193.stderr:512 bytes copied, 0.000274873 s, 1.9 MB/s 2024-04-15T22:06:50.907 DEBUG:teuthology.orchestra.run.smithi193:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T22:06:50.964 DEBUG:teuthology.orchestra.run.smithi193:> stat /dev/vg_nvme/lv_2 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout:Access: 2024-04-15 22:06:44.090063727 +0000 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout:Modify: 2024-04-15 22:06:23.215410937 +0000 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout:Change: 2024-04-15 22:06:23.215410937 +0000 2024-04-15T22:06:51.022 INFO:teuthology.orchestra.run.smithi193.stdout: Birth: 2024-04-15 22:06:23.215410937 +0000 2024-04-15T22:06:51.023 DEBUG:teuthology.orchestra.run.smithi193:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T22:06:51.090 INFO:teuthology.orchestra.run.smithi193.stderr:1+0 records in 2024-04-15T22:06:51.091 INFO:teuthology.orchestra.run.smithi193.stderr:1+0 records out 2024-04-15T22:06:51.091 INFO:teuthology.orchestra.run.smithi193.stderr:512 bytes copied, 0.000322778 s, 1.6 MB/s 2024-04-15T22:06:51.092 DEBUG:teuthology.orchestra.run.smithi193:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T22:06:51.150 DEBUG:teuthology.orchestra.run.smithi193:> stat /dev/vg_nvme/lv_3 2024-04-15T22:06:51.207 INFO:teuthology.orchestra.run.smithi193.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T22:06:51.207 INFO:teuthology.orchestra.run.smithi193.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:06:51.207 INFO:teuthology.orchestra.run.smithi193.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-04-15T22:06:51.207 INFO:teuthology.orchestra.run.smithi193.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:06:51.207 INFO:teuthology.orchestra.run.smithi193.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:06:51.207 INFO:teuthology.orchestra.run.smithi193.stdout:Access: 2024-04-15 22:06:44.090063727 +0000 2024-04-15T22:06:51.208 INFO:teuthology.orchestra.run.smithi193.stdout:Modify: 2024-04-15 22:06:23.554405292 +0000 2024-04-15T22:06:51.208 INFO:teuthology.orchestra.run.smithi193.stdout:Change: 2024-04-15 22:06:23.554405292 +0000 2024-04-15T22:06:51.208 INFO:teuthology.orchestra.run.smithi193.stdout: Birth: 2024-04-15 22:06:23.554405292 +0000 2024-04-15T22:06:51.208 DEBUG:teuthology.orchestra.run.smithi193:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T22:06:51.274 INFO:teuthology.orchestra.run.smithi193.stderr:1+0 records in 2024-04-15T22:06:51.274 INFO:teuthology.orchestra.run.smithi193.stderr:1+0 records out 2024-04-15T22:06:51.274 INFO:teuthology.orchestra.run.smithi193.stderr:512 bytes copied, 0.000189332 s, 2.7 MB/s 2024-04-15T22:06:51.275 DEBUG:teuthology.orchestra.run.smithi193:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T22:06:51.332 DEBUG:teuthology.orchestra.run.smithi193:> stat /dev/vg_nvme/lv_4 2024-04-15T22:06:51.387 INFO:teuthology.orchestra.run.smithi193.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T22:06:51.388 INFO:teuthology.orchestra.run.smithi193.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:06:51.388 INFO:teuthology.orchestra.run.smithi193.stdout:Device: 5h/5d Inode: 725 Links: 1 2024-04-15T22:06:51.388 INFO:teuthology.orchestra.run.smithi193.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:06:51.388 INFO:teuthology.orchestra.run.smithi193.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:06:51.388 INFO:teuthology.orchestra.run.smithi193.stdout:Access: 2024-04-15 22:06:44.090063727 +0000 2024-04-15T22:06:51.388 INFO:teuthology.orchestra.run.smithi193.stdout:Modify: 2024-04-15 22:06:23.884399798 +0000 2024-04-15T22:06:51.388 INFO:teuthology.orchestra.run.smithi193.stdout:Change: 2024-04-15 22:06:23.884399798 +0000 2024-04-15T22:06:51.388 INFO:teuthology.orchestra.run.smithi193.stdout: Birth: 2024-04-15 22:06:23.884399798 +0000 2024-04-15T22:06:51.388 DEBUG:teuthology.orchestra.run.smithi193:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T22:06:51.455 INFO:teuthology.orchestra.run.smithi193.stderr:1+0 records in 2024-04-15T22:06:51.455 INFO:teuthology.orchestra.run.smithi193.stderr:1+0 records out 2024-04-15T22:06:51.455 INFO:teuthology.orchestra.run.smithi193.stderr:512 bytes copied, 0.000245027 s, 2.1 MB/s 2024-04-15T22:06:51.456 DEBUG:teuthology.orchestra.run.smithi193:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T22:06:51.512 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:51.658 INFO:teuthology.orchestra.run.smithi193.stdout:loop 2024-04-15T22:06:51.659 INFO:tasks.nvme_loop:Connecting nvme_loop smithi193:/dev/vg_nvme/lv_1... 2024-04-15T22:06:51.659 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:51.698 INFO:teuthology.orchestra.run.smithi193.stdout:1 2024-04-15T22:06:51.738 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/vg_nvme/lv_11 2024-04-15T22:06:51.776 INFO:tasks.nvme_loop:Connecting nvme_loop smithi193:/dev/vg_nvme/lv_2... 2024-04-15T22:06:51.776 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:51.857 INFO:teuthology.orchestra.run.smithi193.stdout:1 2024-04-15T22:06:51.899 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/vg_nvme/lv_21 2024-04-15T22:06:51.938 INFO:tasks.nvme_loop:Connecting nvme_loop smithi193:/dev/vg_nvme/lv_3... 2024-04-15T22:06:51.938 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:52.019 INFO:teuthology.orchestra.run.smithi193.stdout:1 2024-04-15T22:06:52.060 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/vg_nvme/lv_31 2024-04-15T22:06:52.099 INFO:tasks.nvme_loop:Connecting nvme_loop smithi193:/dev/vg_nvme/lv_4... 2024-04-15T22:06:52.099 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:52.180 INFO:teuthology.orchestra.run.smithi193.stdout:1 2024-04-15T22:06:52.223 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/vg_nvme/lv_41 2024-04-15T22:06:52.254 DEBUG:teuthology.orchestra.run.smithi193:> set -ex 2024-04-15T22:06:52.254 DEBUG:teuthology.orchestra.run.smithi193:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:06:52.310 DEBUG:teuthology.orchestra.run.smithi193:> sudo nvme list 2024-04-15T22:06:52.377 INFO:teuthology.orchestra.run.smithi193.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-15T22:06:52.378 INFO:teuthology.orchestra.run.smithi193.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-15T22:06:52.378 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/nvme0n1 PHFT620500HB400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-15T22:06:52.378 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/nvme1n1 ed388a481c570af88faf Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:06:52.378 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/nvme2n1 c61beb3de27a42755720 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:06:52.378 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/nvme3n1 1e56f2c068622b088046 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:06:52.378 INFO:teuthology.orchestra.run.smithi193.stdout:/dev/nvme4n1 552c191119b3bf6d4965 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:06:52.379 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-15T22:06:52.379 DEBUG:teuthology.orchestra.run.smithi193:> set -ex 2024-04-15T22:06:52.379 DEBUG:teuthology.orchestra.run.smithi193:> sudo dd of=/scratch_devs 2024-04-15T22:06:52.447 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T22:06:52.537 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\\)'], 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T22:06:52.537 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:06:52.537 INFO:tasks.cephadm:Cluster fsid is 76f1721a-fb74-11ee-bc8f-c7b262605968 2024-04-15T22:06:52.537 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T22:06:52.538 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-15T22:06:52.538 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi088': '172.21.15.88', 'mon.smithi193': '172.21.15.193'} 2024-04-15T22:06:52.538 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T22:06:52.538 DEBUG:teuthology.orchestra.run.smithi088:> sudo hostname $(hostname -s) 2024-04-15T22:06:52.573 DEBUG:teuthology.orchestra.run.smithi193:> sudo hostname $(hostname -s) 2024-04-15T22:06:52.601 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T22:06:52.602 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:06:52.917 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', '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/54895/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2114-ga9a752df', 'node_name': '172.21.5.39+adami09', '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-2114.ga9a752df'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-14 16:04:37.608971', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2024-04-15T22:06:53.053 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 a9a752df26c63acad72e1b3569fd79a515ca0765 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:06:53.054 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm 2024-04-15T22:06:53.054 DEBUG:teuthology.orchestra.run.smithi088:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:06:53.705 INFO:teuthology.orchestra.run.smithi088.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 22:06 /home/ubuntu/cephtest/cephadm 2024-04-15T22:06:53.705 DEBUG:teuthology.orchestra.run.smithi193:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:06:54.149 INFO:teuthology.orchestra.run.smithi193.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 22:06 /home/ubuntu/cephtest/cephadm 2024-04-15T22:06:54.150 DEBUG:teuthology.orchestra.run.smithi088:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:06:54.169 DEBUG:teuthology.orchestra.run.smithi193:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:06:54.198 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 on all hosts... 2024-04-15T22:06:54.198 DEBUG:teuthology.orchestra.run.smithi088:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:06:54.212 DEBUG:teuthology.orchestra.run.smithi193:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:06:55.011 INFO:teuthology.orchestra.run.smithi193.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:06:55.115 INFO:teuthology.orchestra.run.smithi088.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:06:55.181 INFO:teuthology.orchestra.run.smithi193.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:06:55.181 INFO:teuthology.orchestra.run.smithi193.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:06:55.181 INFO:teuthology.orchestra.run.smithi193.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T22:06:55.181 INFO:teuthology.orchestra.run.smithi193.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:06:55.279 INFO:teuthology.orchestra.run.smithi088.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:06:55.279 INFO:teuthology.orchestra.run.smithi088.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:06:55.279 INFO:teuthology.orchestra.run.smithi088.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T22:06:55.279 INFO:teuthology.orchestra.run.smithi088.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:06:55.301 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:55.301 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi088 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:06:55.302 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T22:06:55.304 DEBUG:teuthology.misc:Transferring archived files from smithi088:/var/lib/ceph/76f1721a-fb74-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529/remote/smithi088/crash 2024-04-15T22:06:55.305 DEBUG:teuthology.orchestra.run.smithi088:> sudo tar c -f - -C /var/lib/ceph/76f1721a-fb74-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:06:55.345 INFO:teuthology.orchestra.run.smithi088.stderr:tar: /var/lib/ceph/76f1721a-fb74-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:06:55.345 INFO:teuthology.orchestra.run.smithi088.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:06:55.347 DEBUG:teuthology.misc:Transferring archived files from smithi193:/var/lib/ceph/76f1721a-fb74-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529/remote/smithi193/crash 2024-04-15T22:06:55.348 DEBUG:teuthology.orchestra.run.smithi193:> sudo tar c -f - -C /var/lib/ceph/76f1721a-fb74-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:06:55.394 INFO:teuthology.orchestra.run.smithi193.stderr:tar: /var/lib/ceph/76f1721a-fb74-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:06:55.395 INFO:teuthology.orchestra.run.smithi193.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:06:55.396 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T22:06:55.396 DEBUG:teuthology.orchestra.run.smithi088:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/76f1721a-fb74-11ee-bc8f-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-15T22:06:55.423 INFO:teuthology.orchestra.run.smithi088.stderr:grep: /var/log/ceph/76f1721a-fb74-11ee-bc8f-c7b262605968/ceph.log: No such file or directory 2024-04-15T22:06:55.425 INFO:tasks.cephadm:Compressing logs... 2024-04-15T22:06:55.425 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:55.468 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:55.493 INFO:teuthology.orchestra.run.smithi088.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T22:06:55.493 INFO:teuthology.orchestra.run.smithi088.stderr:: No such file or directory 2024-04-15T22:06:55.493 INFO:teuthology.orchestra.run.smithi088.stderr:/var/log/ceph/cephadm.log: 73.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:06:55.495 INFO:teuthology.orchestra.run.smithi088.stderr: 2024-04-15T22:06:55.495 INFO:teuthology.orchestra.run.smithi088.stderr:real 0m0.015s 2024-04-15T22:06:55.495 INFO:teuthology.orchestra.run.smithi088.stderr:user 0m0.011s 2024-04-15T22:06:55.495 INFO:teuthology.orchestra.run.smithi088.stderr:sys 0m0.017s 2024-04-15T22:06:55.496 INFO:teuthology.orchestra.run.smithi193.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T22:06:55.496 INFO:teuthology.orchestra.run.smithi193.stderr:: No such file or directory 2024-04-15T22:06:55.496 INFO:teuthology.orchestra.run.smithi193.stderr:/var/log/ceph/cephadm.log: 73.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:06:55.498 INFO:teuthology.orchestra.run.smithi193.stderr: 2024-04-15T22:06:55.498 INFO:teuthology.orchestra.run.smithi193.stderr:real 0m0.015s 2024-04-15T22:06:55.498 INFO:teuthology.orchestra.run.smithi193.stderr:user 0m0.010s 2024-04-15T22:06:55.498 INFO:teuthology.orchestra.run.smithi193.stderr:sys 0m0.017s 2024-04-15T22:06:55.498 INFO:tasks.cephadm:Archiving logs... 2024-04-15T22:06:55.498 DEBUG:teuthology.misc:Transferring archived files from smithi088:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529/remote/smithi088/log 2024-04-15T22:06:55.499 DEBUG:teuthology.orchestra.run.smithi088:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:06:55.564 DEBUG:teuthology.misc:Transferring archived files from smithi193:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529/remote/smithi193/log 2024-04-15T22:06:55.564 DEBUG:teuthology.orchestra.run.smithi193:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:06:55.593 INFO:tasks.cephadm:Removing cluster... 2024-04-15T22:06:55.593 DEBUG:teuthology.orchestra.run.smithi088:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 76f1721a-fb74-11ee-bc8f-c7b262605968 --force 2024-04-15T22:06:55.781 INFO:teuthology.orchestra.run.smithi088.stdout:Deleting cluster with fsid: 76f1721a-fb74-11ee-bc8f-c7b262605968 2024-04-15T22:06:55.895 DEBUG:teuthology.orchestra.run.smithi193:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 76f1721a-fb74-11ee-bc8f-c7b262605968 --force 2024-04-15T22:06:56.072 INFO:teuthology.orchestra.run.smithi193.stdout:Deleting cluster with fsid: 76f1721a-fb74-11ee-bc8f-c7b262605968 2024-04-15T22:06:56.185 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T22:06:56.185 DEBUG:teuthology.orchestra.run.smithi088:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:06:56.201 DEBUG:teuthology.orchestra.run.smithi193:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:06:56.216 INFO:tasks.cephadm:Teardown complete 2024-04-15T22:06:56.216 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, 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_6c637841c215537a4502385240412f1966e0faab/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_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi088 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:06:56.411 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=4ba1d87016f64a17b285424c976c8b03 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, 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_6c637841c215537a4502385240412f1966e0faab/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_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi088 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:06:56.415 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T22:06:56.426 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-15T22:06:56.434 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi088:/dev/vg_nvme/lv_1... 2024-04-15T22:06:56.434 DEBUG:teuthology.orchestra.run.smithi088:> sudo nvme disconnect -n lv_1 2024-04-15T22:06:56.584 INFO:teuthology.orchestra.run.smithi088.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-15T22:06:56.585 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:56.586 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi088:/dev/vg_nvme/lv_2... 2024-04-15T22:06:56.586 DEBUG:teuthology.orchestra.run.smithi088:> sudo nvme disconnect -n lv_2 2024-04-15T22:06:56.727 INFO:teuthology.orchestra.run.smithi088.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-15T22:06:56.728 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:56.728 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi088:/dev/vg_nvme/lv_3... 2024-04-15T22:06:56.729 DEBUG:teuthology.orchestra.run.smithi088:> sudo nvme disconnect -n lv_3 2024-04-15T22:06:56.874 INFO:teuthology.orchestra.run.smithi088.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-15T22:06:56.875 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:56.875 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi088:/dev/vg_nvme/lv_4... 2024-04-15T22:06:56.876 DEBUG:teuthology.orchestra.run.smithi088:> sudo nvme disconnect -n lv_4 2024-04-15T22:06:57.023 INFO:teuthology.orchestra.run.smithi088.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-15T22:06:57.025 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:57.025 DEBUG:teuthology.orchestra.run.smithi088:> set -ex 2024-04-15T22:06:57.025 DEBUG:teuthology.orchestra.run.smithi088:> sudo dd of=/scratch_devs 2024-04-15T22:06:57.053 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi193:/dev/vg_nvme/lv_1... 2024-04-15T22:06:57.053 DEBUG:teuthology.orchestra.run.smithi193:> sudo nvme disconnect -n lv_1 2024-04-15T22:06:57.186 INFO:teuthology.orchestra.run.smithi193.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-15T22:06:57.187 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:57.188 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi193:/dev/vg_nvme/lv_2... 2024-04-15T22:06:57.188 DEBUG:teuthology.orchestra.run.smithi193:> sudo nvme disconnect -n lv_2 2024-04-15T22:06:57.322 INFO:teuthology.orchestra.run.smithi193.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-15T22:06:57.323 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:57.324 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi193:/dev/vg_nvme/lv_3... 2024-04-15T22:06:57.324 DEBUG:teuthology.orchestra.run.smithi193:> sudo nvme disconnect -n lv_3 2024-04-15T22:06:57.470 INFO:teuthology.orchestra.run.smithi193.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-15T22:06:57.471 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:57.472 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi193:/dev/vg_nvme/lv_4... 2024-04-15T22:06:57.472 DEBUG:teuthology.orchestra.run.smithi193:> sudo nvme disconnect -n lv_4 2024-04-15T22:06:57.604 INFO:teuthology.orchestra.run.smithi193.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-15T22:06:57.605 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:57.606 DEBUG:teuthology.orchestra.run.smithi193:> set -ex 2024-04-15T22:06:57.606 DEBUG:teuthology.orchestra.run.smithi193:> sudo dd of=/scratch_devs 2024-04-15T22:06:57.638 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T22:06:57.647 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T22:06:57.647 DEBUG:teuthology.orchestra.run.smithi088:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:06:57.649 DEBUG:teuthology.orchestra.run.smithi193:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:06:57.662 INFO:teuthology.orchestra.run.smithi088.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:06:57.667 INFO:teuthology.orchestra.run.smithi088.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:06:57.667 INFO:teuthology.orchestra.run.smithi088.stdout:=============================================================================== 2024-04-15T22:06:57.667 INFO:teuthology.orchestra.run.smithi088.stdout:^* hv01.front.sepia.ceph.com 3 6 17 5 +1000us[+1004us] +/- 54ms 2024-04-15T22:06:57.667 INFO:teuthology.orchestra.run.smithi088.stdout:^+ hv02.front.sepia.ceph.com 3 6 17 5 -371us[ -366us] +/- 68ms 2024-04-15T22:06:57.667 INFO:teuthology.orchestra.run.smithi088.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 6 -852us[ -847us] +/- 65ms 2024-04-15T22:06:57.667 INFO:teuthology.orchestra.run.smithi088.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:57.695 INFO:teuthology.orchestra.run.smithi193.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:06:57.699 INFO:teuthology.orchestra.run.smithi193.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:06:57.699 INFO:teuthology.orchestra.run.smithi193.stdout:=============================================================================== 2024-04-15T22:06:57.699 INFO:teuthology.orchestra.run.smithi193.stdout:^* hv01.front.sepia.ceph.com 3 6 17 5 +991us[ +978us] +/- 54ms 2024-04-15T22:06:57.700 INFO:teuthology.orchestra.run.smithi193.stdout:^+ hv02.front.sepia.ceph.com 3 6 17 5 -369us[ -382us] +/- 68ms 2024-04-15T22:06:57.700 INFO:teuthology.orchestra.run.smithi193.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 6 -862us[ -874us] +/- 65ms 2024-04-15T22:06:57.700 INFO:teuthology.orchestra.run.smithi193.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:06:57.701 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T22:06:57.709 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T22:06:57.710 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T22:06:57.739 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:57.804 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:57.874 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:57.904 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:57.904 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:57.937 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:57.937 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T22:06:57.946 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T22:06:57.955 INFO:teuthology.task.internal:Duration was 266.748172 seconds 2024-04-15T22:06:57.955 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T22:06:57.964 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T22:06:57.965 DEBUG:teuthology.orchestra.run.smithi088:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:06:57.967 DEBUG:teuthology.orchestra.run.smithi193:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:06:58.009 INFO:teuthology.orchestra.run.smithi088.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:06:58.023 INFO:teuthology.orchestra.run.smithi193.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:06:58.420 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T22:06:58.421 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi088.front.sepia.ceph.com 2024-04-15T22:06:58.421 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:58.441 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi193.front.sepia.ceph.com 2024-04-15T22:06:58.442 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:58.462 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T22:06:58.463 DEBUG:teuthology.orchestra.run.smithi088:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:06:58.484 DEBUG:teuthology.orchestra.run.smithi193:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:06:58.533 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T22:06:58.534 DEBUG:teuthology.orchestra.run.smithi088:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:06:58.555 DEBUG:teuthology.orchestra.run.smithi193:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:06:58.665 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T22:06:58.673 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T22:06:58.674 DEBUG:teuthology.orchestra.run.smithi088:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:06:58.702 DEBUG:teuthology.orchestra.run.smithi193:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:06:58.730 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T22:06:58.741 DEBUG:teuthology.orchestra.run.smithi088:> 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-15T22:06:58.744 DEBUG:teuthology.orchestra.run.smithi193:> 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-15T22:06:58.768 INFO:teuthology.orchestra.run.smithi088.stdout:kernel.core_pattern = core 2024-04-15T22:06:58.796 INFO:teuthology.orchestra.run.smithi193.stdout:kernel.core_pattern = core 2024-04-15T22:06:58.839 DEBUG:teuthology.orchestra.run.smithi088:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:06:58.853 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:58.853 DEBUG:teuthology.orchestra.run.smithi193:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:06:58.893 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:06:58.894 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T22:06:58.902 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T22:06:58.903 DEBUG:teuthology.misc:Transferring archived files from smithi088:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529/remote/smithi088 2024-04-15T22:06:58.903 DEBUG:teuthology.orchestra.run.smithi088:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:06:58.939 DEBUG:teuthology.misc:Transferring archived files from smithi193:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529/remote/smithi193 2024-04-15T22:06:58.939 DEBUG:teuthology.orchestra.run.smithi193:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:06:58.974 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T22:06:58.974 DEBUG:teuthology.orchestra.run.smithi088:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:06:58.977 DEBUG:teuthology.orchestra.run.smithi193:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:06:59.024 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T22:06:59.033 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T22:06:59.033 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T22:06:59.041 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T22:06:59.042 DEBUG:teuthology.orchestra.run.smithi088:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:06:59.044 DEBUG:teuthology.orchestra.run.smithi193:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:06:59.056 INFO:teuthology.orchestra.run.smithi088.stdout: 265305 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:06 /home/ubuntu/cephtest 2024-04-15T22:06:59.078 INFO:teuthology.orchestra.run.smithi193.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:06 /home/ubuntu/cephtest 2024-04-15T22:06:59.080 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T22:06:59.089 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T22:06:59.108 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T22:06:59.135 DEBUG:teuthology.nuke:shortname: smithi088 2024-04-15T22:06:59.135 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:06:59.160 DEBUG:teuthology.nuke:shortname: smithi193 2024-04-15T22:06:59.161 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:06:59.164 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi088.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529', '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-15 21:53:10.638728', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDXmvey6c15NXgSjywO94s9+66hoVuQOmpdQjegeO4awqyJD6IKU9yw2ZQPWaMqhvBtraOl+Kxo2rXbxQ1qdURk='} 2024-04-15T22:06:59.182 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi193.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657529', '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-15 21:53:10.637303', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC0lRkGb8ODdvdYsXSACJzhTVadyqr50bUHuCxA0D0JHE0ahq0g6blHtgTsc/E/fcoiVfhMgB3P6FdgKsSTE+Zk='} 2024-04-15T22:06:59.212 INFO:teuthology.orchestra.console.smithi088:Power off 2024-04-15T22:06:59.212 DEBUG:teuthology.orchestra.console.smithi088:pexpect command: ipmitool -H smithi088.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:06:59.229 INFO:teuthology.orchestra.console.smithi193:Power off 2024-04-15T22:06:59.229 DEBUG:teuthology.orchestra.console.smithi193:pexpect command: ipmitool -H smithi193.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:06:59.237 DEBUG:teuthology.orchestra.console.smithi088:power off output: Chassis Power Control: Down/Off 2024-04-15T22:06:59.237 DEBUG:teuthology.orchestra.console.smithi088:pexpect command: ipmitool -H smithi088.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:06:59.251 DEBUG:teuthology.orchestra.console.smithi193:power off output: Chassis Power Control: Down/Off 2024-04-15T22:06:59.252 DEBUG:teuthology.orchestra.console.smithi193:pexpect command: ipmitool -H smithi193.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:06:59.261 DEBUG:teuthology.orchestra.console.smithi088:check power output: Chassis Power is on 2024-04-15T22:06:59.273 DEBUG:teuthology.orchestra.console.smithi193:check power output: Chassis Power is on 2024-04-15T22:07:03.262 DEBUG:teuthology.orchestra.console.smithi088:pexpect command: ipmitool -H smithi088.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:07:03.274 DEBUG:teuthology.orchestra.console.smithi193:pexpect command: ipmitool -H smithi193.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:07:03.373 DEBUG:teuthology.orchestra.console.smithi088:check power output: Chassis Power is on 2024-04-15T22:07:03.384 DEBUG:teuthology.orchestra.console.smithi193:check power output: Chassis Power is on 2024-04-15T22:07:07.374 DEBUG:teuthology.orchestra.console.smithi088:pexpect command: ipmitool -H smithi088.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:07:07.384 DEBUG:teuthology.orchestra.console.smithi193:pexpect command: ipmitool -H smithi193.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:07:07.485 DEBUG:teuthology.orchestra.console.smithi088:check power output: Chassis Power is off 2024-04-15T22:07:07.494 DEBUG:teuthology.orchestra.console.smithi193:check power output: Chassis Power is on 2024-04-15T22:07:07.586 INFO:teuthology.orchestra.console.smithi088:Power off completed 2024-04-15T22:07:11.498 DEBUG:teuthology.orchestra.console.smithi193:pexpect command: ipmitool -H smithi193.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:07:11.613 DEBUG:teuthology.orchestra.console.smithi193:check power output: Chassis Power is off 2024-04-15T22:07:11.713 INFO:teuthology.orchestra.console.smithi193:Power off completed 2024-04-15T22:07:11.818 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 266.74817180633545 failure_reason: 'Command failed on smithi088 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull''' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=4ba1d87016f64a17b285424c976c8b03 status: fail success: false 2024-04-15T22:07:11.818 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T22:07:11.905 INFO:teuthology.run:FAIL