2024-05-10T21:49:22.516 INFO:root:teuthology version: 0.0.1.dev271+g1ae7ad8 2024-05-10T21:49:22.517 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742 --description orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --verbose --owner scheduled_teuthology@teuthology --name teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi -- /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742/orig.config.yaml 2024-05-10T21:49:22.555 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-10T21:49:22.644 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7701742' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) log-only-match: - CEPHADM_ sha1: f72fecff68e1d400c4568684327c900485c20d6a ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: f72fecff68e1d400c4568684327c900485c20d6a selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: f72fecff68e1d400c4568684327c900485c20d6a owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 2153 sha1: f72fecff68e1d400c4568684327c900485c20d6a sleep_before_teardown: 0 subset: 20/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_f72fecff68e1d400c4568684327c900485c20d6a/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: f72fecff68e1d400c4568684327c900485c20d6a targets: smithi053.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAehjbWUvW89Rm5OflHE/tCZvgFtbvt0pzeXbeKamqU/TB1VErCmYdwX/i3QH34uhFqXq0z5vhv903nvR/ecOvM= smithi100.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHRU7BWPn46Q1S1fRT3bIq9aPlVj9Jzb/55gIJV9gp4CFbvdj3xPkOTrLEOE4X3EELIq2+3LPr5oIyD98jES8tk= 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 --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 1ae7ad82388e92a475afff437d49054826c019a1 timestamp: 2024-05-10_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-05-10T21:49:22.644 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_f72fecff68e1d400c4568684327c900485c20d6a/qa; will attempt to use it 2024-05-10T21:49:22.645 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks 2024-05-10T21:49:22.645 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-05-10T21:49:22.647 INFO:teuthology.task.internal:Checking packages... 2024-05-10T21:49:22.676 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'f72fecff68e1d400c4568684327c900485c20d6a' 2024-05-10T21:49:22.676 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-05-10T21:49:22.676 INFO:teuthology.packaging:ref: None 2024-05-10T21:49:22.676 INFO:teuthology.packaging:tag: None 2024-05-10T21:49:22.676 INFO:teuthology.packaging:branch: squid 2024-05-10T21:49:22.676 INFO:teuthology.packaging:sha1: f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T21:49:22.676 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-05-10T21:49:22.899 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2555.gf72fecff 2024-05-10T21:49:22.901 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-05-10T21:49:22.907 INFO:teuthology.task.internal:no buildpackages task found 2024-05-10T21:49:22.908 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-05-10T21:49:22.941 INFO:teuthology.task.internal:Saving configuration 2024-05-10T21:49:22.956 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-05-10T21:49:22.991 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-10T21:49:23.017 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi053.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742', '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-05-10 21:43:04.876629', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAehjbWUvW89Rm5OflHE/tCZvgFtbvt0pzeXbeKamqU/TB1VErCmYdwX/i3QH34uhFqXq0z5vhv903nvR/ecOvM='} 2024-05-10T21:49:23.038 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi100.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742', '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-05-10 21:43:04.875145', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHRU7BWPn46Q1S1fRT3bIq9aPlVj9Jzb/55gIJV9gp4CFbvdj3xPkOTrLEOE4X3EELIq2+3LPr5oIyD98jES8tk='} 2024-05-10T21:49:23.039 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-05-10T21:49:23.045 INFO:teuthology.task.internal:roles: ubuntu@smithi053.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-05-10T21:49:23.045 INFO:teuthology.task.internal:roles: ubuntu@smithi100.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-05-10T21:49:23.045 INFO:teuthology.run_tasks:Running task console_log... 2024-05-10T21:49:23.164 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f271882b0d0>, signals=[15]) 2024-05-10T21:49:23.165 INFO:teuthology.run_tasks:Running task internal.connect... 2024-05-10T21:49:23.170 INFO:teuthology.task.internal:Opening connections... 2024-05-10T21:49:23.170 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi053.front.sepia.ceph.com 2024-05-10T21:49:23.173 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:49:23.251 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi100.front.sepia.ceph.com 2024-05-10T21:49:23.252 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:49:23.330 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-05-10T21:49:23.336 DEBUG:teuthology.orchestra.run.smithi053:> uname -m 2024-05-10T21:49:23.355 INFO:teuthology.orchestra.run.smithi053.stdout:x86_64 2024-05-10T21:49:23.355 DEBUG:teuthology.orchestra.run.smithi053:> cat /etc/os-release 2024-05-10T21:49:23.413 INFO:teuthology.orchestra.run.smithi053.stdout:NAME="CentOS Stream" 2024-05-10T21:49:23.413 INFO:teuthology.orchestra.run.smithi053.stdout:VERSION="9" 2024-05-10T21:49:23.413 INFO:teuthology.orchestra.run.smithi053.stdout:ID="centos" 2024-05-10T21:49:23.413 INFO:teuthology.orchestra.run.smithi053.stdout:ID_LIKE="rhel fedora" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:VERSION_ID="9" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:PLATFORM_ID="platform:el9" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:PRETTY_NAME="CentOS Stream 9" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:ANSI_COLOR="0;31" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:LOGO="fedora-logo-icon" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:HOME_URL="https://centos.org/" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-05-10T21:49:23.414 INFO:teuthology.orchestra.run.smithi053.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-05-10T21:49:23.415 INFO:teuthology.lock.ops:Updating smithi053.front.sepia.ceph.com on lock server 2024-05-10T21:49:23.436 DEBUG:teuthology.orchestra.run.smithi100:> uname -m 2024-05-10T21:49:23.453 INFO:teuthology.orchestra.run.smithi100.stdout:x86_64 2024-05-10T21:49:23.453 DEBUG:teuthology.orchestra.run.smithi100:> cat /etc/os-release 2024-05-10T21:49:23.510 INFO:teuthology.orchestra.run.smithi100.stdout:NAME="CentOS Stream" 2024-05-10T21:49:23.510 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION="9" 2024-05-10T21:49:23.510 INFO:teuthology.orchestra.run.smithi100.stdout:ID="centos" 2024-05-10T21:49:23.510 INFO:teuthology.orchestra.run.smithi100.stdout:ID_LIKE="rhel fedora" 2024-05-10T21:49:23.510 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION_ID="9" 2024-05-10T21:49:23.510 INFO:teuthology.orchestra.run.smithi100.stdout:PLATFORM_ID="platform:el9" 2024-05-10T21:49:23.510 INFO:teuthology.orchestra.run.smithi100.stdout:PRETTY_NAME="CentOS Stream 9" 2024-05-10T21:49:23.510 INFO:teuthology.orchestra.run.smithi100.stdout:ANSI_COLOR="0;31" 2024-05-10T21:49:23.511 INFO:teuthology.orchestra.run.smithi100.stdout:LOGO="fedora-logo-icon" 2024-05-10T21:49:23.511 INFO:teuthology.orchestra.run.smithi100.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-05-10T21:49:23.511 INFO:teuthology.orchestra.run.smithi100.stdout:HOME_URL="https://centos.org/" 2024-05-10T21:49:23.511 INFO:teuthology.orchestra.run.smithi100.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-05-10T21:49:23.511 INFO:teuthology.orchestra.run.smithi100.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-05-10T21:49:23.511 INFO:teuthology.orchestra.run.smithi100.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-05-10T21:49:23.511 INFO:teuthology.lock.ops:Updating smithi100.front.sepia.ceph.com on lock server 2024-05-10T21:49:23.536 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-05-10T21:49:23.545 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-05-10T21:49:23.574 INFO:teuthology.task.internal:Checking for old test directory... 2024-05-10T21:49:23.575 DEBUG:teuthology.orchestra.run.smithi053:> test '!' -e /home/ubuntu/cephtest 2024-05-10T21:49:23.577 DEBUG:teuthology.orchestra.run.smithi100:> test '!' -e /home/ubuntu/cephtest 2024-05-10T21:49:23.593 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-05-10T21:49:23.607 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-05-10T21:49:23.607 DEBUG:teuthology.orchestra.run.smithi053:> test -z $(ls -A /var/lib/ceph) 2024-05-10T21:49:23.634 DEBUG:teuthology.orchestra.run.smithi100:> test -z $(ls -A /var/lib/ceph) 2024-05-10T21:49:23.670 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-05-10T21:49:23.726 INFO:teuthology.run_tasks:Running task kernel... 2024-05-10T21:49:23.740 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-05-10T21:49:23.740 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-05-10T21:49:23.741 DEBUG:teuthology.orchestra.run.smithi053:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-10T21:49:23.741 DEBUG:teuthology.orchestra.run.smithi100:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-10T21:49:23.757 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:49:23.758 DEBUG:teuthology.orchestra.run.smithi100:> uname -r 2024-05-10T21:49:23.759 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:49:23.759 DEBUG:teuthology.orchestra.run.smithi053:> uname -r 2024-05-10T21:49:23.815 INFO:teuthology.orchestra.run.smithi100.stdout:5.14.0-437.el9.x86_64 2024-05-10T21:49:23.815 INFO:teuthology.task.kernel:Running kernel on smithi100: 5.14.0-437.el9.x86_64 2024-05-10T21:49:23.815 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum install -y kernel 2024-05-10T21:49:23.816 INFO:teuthology.orchestra.run.smithi053.stdout:5.14.0-437.el9.x86_64 2024-05-10T21:49:23.816 INFO:teuthology.task.kernel:Running kernel on smithi053: 5.14.0-437.el9.x86_64 2024-05-10T21:49:23.816 DEBUG:teuthology.orchestra.run.smithi053:> sudo yum install -y kernel 2024-05-10T21:49:25.924 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - BaseOS 16 MB/s | 8.1 MB 00:00 2024-05-10T21:49:27.706 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS Stream 9 - BaseOS 3.6 MB/s | 8.1 MB 00:02 2024-05-10T21:49:29.176 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - AppStream 8.8 MB/s | 19 MB 00:02 2024-05-10T21:49:33.251 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - CRB 13 MB/s | 6.2 MB 00:00 2024-05-10T21:49:35.493 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - Extras packages 15 kB/s | 16 kB 00:01 2024-05-10T21:49:36.320 INFO:teuthology.orchestra.run.smithi100.stdout:Extra Packages for Enterprise Linux 31 MB/s | 21 MB 00:00 2024-05-10T21:49:41.436 INFO:teuthology.orchestra.run.smithi100.stdout:lab-extras 32 kB/s | 1.7 kB 00:00 2024-05-10T21:49:43.064 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS Stream 9 - AppStream 1.3 MB/s | 19 MB 00:14 2024-05-10T21:49:43.459 INFO:teuthology.orchestra.run.smithi100.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-05-10T21:49:43.459 INFO:teuthology.orchestra.run.smithi100.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-05-10T21:49:43.550 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-05-10T21:49:43.565 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-05-10T21:49:43.565 INFO:teuthology.orchestra.run.smithi100.stdout: Package Architecture Version Repository Size 2024-05-10T21:49:43.565 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout: kernel x86_64 5.14.0-444.el9 baseos 484 k 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-core x86_64 5.14.0-444.el9 baseos 15 M 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-modules x86_64 5.14.0-444.el9 baseos 34 M 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-modules-core x86_64 5.14.0-444.el9 baseos 28 M 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout:Install 4 Packages 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 78 M 2024-05-10T21:49:43.566 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 123 M 2024-05-10T21:49:43.567 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-05-10T21:49:44.146 INFO:teuthology.orchestra.run.smithi100.stdout:(1/4): kernel-5.14.0-444.el9.x86_64.rpm 1.3 MB/s | 484 kB 00:00 2024-05-10T21:49:46.821 INFO:teuthology.orchestra.run.smithi100.stdout:(2/4): kernel-core-5.14.0-444.el9.x86_64.rpm 5.1 MB/s | 15 MB 00:03 2024-05-10T21:49:47.331 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.2 MB 00:00 2024-05-10T21:49:47.771 INFO:teuthology.orchestra.run.smithi100.stdout:(3/4): kernel-modules-core-5.14.0-444.el9.x86_6 7.7 MB/s | 28 MB 00:03 2024-05-10T21:49:48.446 INFO:teuthology.orchestra.run.smithi100.stdout:(4/4): kernel-modules-5.14.0-444.el9.x86_64.rpm 7.3 MB/s | 34 MB 00:04 2024-05-10T21:49:48.447 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-05-10T21:49:48.447 INFO:teuthology.orchestra.run.smithi100.stdout:Total 16 MB/s | 78 MB 00:04 2024-05-10T21:49:48.824 INFO:teuthology.orchestra.run.smithi053.stdout:CentOS Stream 9 - Extras packages 71 kB/s | 16 kB 00:00 2024-05-10T21:49:49.130 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-05-10T21:49:49.470 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-05-10T21:49:49.470 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-05-10T21:49:50.433 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-05-10T21:49:50.433 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-05-10T21:49:50.886 INFO:teuthology.orchestra.run.smithi053.stdout:Extra Packages for Enterprise Linux 11 MB/s | 21 MB 00:01 2024-05-10T21:49:52.844 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-05-10T21:49:53.473 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : kernel-modules-core-5.14.0-444.el9.x86_64 1/4 2024-05-10T21:49:53.839 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : kernel-core-5.14.0-444.el9.x86_64 2/4 2024-05-10T21:49:56.183 INFO:teuthology.orchestra.run.smithi053.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-05-10T21:49:56.215 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-core-5.14.0-444.el9.x86_64 2/4 2024-05-10T21:49:56.353 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : kernel-modules-5.14.0-444.el9.x86_64 3/4 2024-05-10T21:49:58.265 INFO:teuthology.orchestra.run.smithi053.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-05-10T21:49:58.265 INFO:teuthology.orchestra.run.smithi053.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-05-10T21:49:58.363 INFO:teuthology.orchestra.run.smithi053.stdout:Dependencies resolved. 2024-05-10T21:49:58.368 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-05-10T21:49:58.368 INFO:teuthology.orchestra.run.smithi053.stdout: Package Architecture Version Repository Size 2024-05-10T21:49:58.368 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-05-10T21:49:58.368 INFO:teuthology.orchestra.run.smithi053.stdout:Installing: 2024-05-10T21:49:58.368 INFO:teuthology.orchestra.run.smithi053.stdout: kernel x86_64 5.14.0-444.el9 baseos 484 k 2024-05-10T21:49:58.368 INFO:teuthology.orchestra.run.smithi053.stdout:Installing dependencies: 2024-05-10T21:49:58.369 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-core x86_64 5.14.0-444.el9 baseos 15 M 2024-05-10T21:49:58.369 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-modules x86_64 5.14.0-444.el9 baseos 34 M 2024-05-10T21:49:58.369 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-modules-core x86_64 5.14.0-444.el9 baseos 28 M 2024-05-10T21:49:58.369 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:49:58.369 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction Summary 2024-05-10T21:49:58.369 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-05-10T21:49:58.369 INFO:teuthology.orchestra.run.smithi053.stdout:Install 4 Packages 2024-05-10T21:49:58.369 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:49:58.370 INFO:teuthology.orchestra.run.smithi053.stdout:Total download size: 78 M 2024-05-10T21:49:58.370 INFO:teuthology.orchestra.run.smithi053.stdout:Installed size: 123 M 2024-05-10T21:49:58.370 INFO:teuthology.orchestra.run.smithi053.stdout:Downloading Packages: 2024-05-10T21:49:59.176 INFO:teuthology.orchestra.run.smithi053.stdout:(1/4): kernel-5.14.0-444.el9.x86_64.rpm 728 kB/s | 484 kB 00:00 2024-05-10T21:50:01.060 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-modules-5.14.0-444.el9.x86_64 3/4 2024-05-10T21:50:01.105 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : kernel-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:50:05.855 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-modules-core-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:50:12.126 INFO:teuthology.orchestra.run.smithi053.stdout:(2/4): kernel-core-5.14.0-444.el9.x86_64.rpm 1.1 MB/s | 15 MB 00:13 2024-05-10T21:50:23.433 INFO:teuthology.orchestra.run.smithi053.stdout:(3/4): kernel-modules-5.14.0-444.el9.x86_64.rpm 1.4 MB/s | 34 MB 00:24 2024-05-10T21:50:29.825 INFO:teuthology.orchestra.run.smithi053.stdout:(4/4): kernel-modules-core-5.14.0-444.el9.x86_6 934 kB/s | 28 MB 00:30 2024-05-10T21:50:29.825 INFO:teuthology.orchestra.run.smithi053.stdout:-------------------------------------------------------------------------------- 2024-05-10T21:50:29.825 INFO:teuthology.orchestra.run.smithi053.stdout:Total 2.5 MB/s | 78 MB 00:31 2024-05-10T21:50:30.531 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction check 2024-05-10T21:50:30.924 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction check succeeded. 2024-05-10T21:50:30.924 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction test 2024-05-10T21:50:31.883 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction test succeeded. 2024-05-10T21:50:31.883 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction 2024-05-10T21:50:34.438 INFO:teuthology.orchestra.run.smithi053.stdout: Preparing : 1/1 2024-05-10T21:50:35.093 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : kernel-modules-core-5.14.0-444.el9.x86_64 1/4 2024-05-10T21:50:35.183 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : kernel-core-5.14.0-444.el9.x86_64 2/4 2024-05-10T21:50:35.332 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-core-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:50:35.370 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-modules-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:50:35.754 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:50:35.754 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : kernel-5.14.0-444.el9.x86_64 1/4 2024-05-10T21:50:35.754 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : kernel-core-5.14.0-444.el9.x86_64 2/4 2024-05-10T21:50:35.754 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : kernel-modules-5.14.0-444.el9.x86_64 3/4 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : kernel-modules-core-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-5.14.0-444.el9.x86_64 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-core-5.14.0-444.el9.x86_64 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-modules-5.14.0-444.el9.x86_64 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-modules-core-5.14.0-444.el9.x86_64 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:50:36.545 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-05-10T21:50:36.861 DEBUG:teuthology.orchestra.run.smithi100:> rpm -q kernel | sort -rV | head -n 1 2024-05-10T21:50:36.955 INFO:teuthology.orchestra.run.smithi100.stdout:kernel-5.14.0-444.el9.x86_64 2024-05-10T21:50:36.955 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-444.el9.x86_64 2024-05-10T21:50:36.955 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-437.el9.x86_64 Expected: 5.14.0-444.el9.x86_64 2024-05-10T21:50:36.955 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-10T21:50:36.956 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-10T21:50:36.956 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-05-10T21:50:36.956 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi100.front.sepia.ceph.com, path=None, version=distro) 2024-05-10T21:50:36.956 DEBUG:teuthology.orchestra.run.smithi100:> rpm -q kernel | sort -rV | head -n 1 2024-05-10T21:50:37.005 INFO:teuthology.orchestra.run.smithi100.stdout:kernel-5.14.0-444.el9.x86_64 2024-05-10T21:50:37.005 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-444.el9.x86_64 2024-05-10T21:50:37.005 DEBUG:teuthology.orchestra.run.smithi100:> sudo rpm -qi grub2-tools 2024-05-10T21:50:37.036 INFO:teuthology.orchestra.run.smithi100.stdout:Name : grub2-tools 2024-05-10T21:50:37.036 INFO:teuthology.orchestra.run.smithi100.stdout:Epoch : 1 2024-05-10T21:50:37.036 INFO:teuthology.orchestra.run.smithi100.stdout:Version : 2.06 2024-05-10T21:50:37.036 INFO:teuthology.orchestra.run.smithi100.stdout:Release : 68.el9 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Architecture: x86_64 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Install Date: Fri 19 Apr 2024 09:32:39 PM UTC 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Group : Unspecified 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Size : 8264254 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:License : GPLv3+ 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Packager : builder@centos.org 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Vendor : CentOS 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:URL : http://www.gnu.org/software/grub/ 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Summary : Support tools for GRUB. 2024-05-10T21:50:37.037 INFO:teuthology.orchestra.run.smithi100.stdout:Description : 2024-05-10T21:50:37.038 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:50:37.038 INFO:teuthology.orchestra.run.smithi100.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-05-10T21:50:37.038 INFO:teuthology.orchestra.run.smithi100.stdout:customizable bootloader with modular architecture. It supports a rich 2024-05-10T21:50:37.038 INFO:teuthology.orchestra.run.smithi100.stdout:variety of kernel formats, file systems, computer architectures and 2024-05-10T21:50:37.038 INFO:teuthology.orchestra.run.smithi100.stdout:hardware devices. 2024-05-10T21:50:37.038 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:50:37.038 INFO:teuthology.orchestra.run.smithi100.stdout:This subpackage provides tools for support of all platforms. 2024-05-10T21:50:37.039 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-05-10T21:50:37.039 INFO:teuthology.task.kernel:Updating grub on smithi100 to boot 5.14.0-444.el9.x86_64 2024-05-10T21:50:37.039 DEBUG:teuthology.orchestra.run.smithi100:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-05-10T21:50:37.632 INFO:teuthology.orchestra.run.smithi100.stderr:Generating grub configuration file ... 2024-05-10T21:50:38.015 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-core-5.14.0-444.el9.x86_64 2/4 2024-05-10T21:50:38.153 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : kernel-modules-5.14.0-444.el9.x86_64 3/4 2024-05-10T21:50:38.928 INFO:teuthology.orchestra.run.smithi100.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-05-10T21:50:38.955 INFO:teuthology.orchestra.run.smithi100.stderr:done 2024-05-10T21:50:38.958 DEBUG:teuthology.orchestra.run.smithi100:> mktemp 2024-05-10T21:50:38.973 INFO:teuthology.orchestra.run.smithi100.stdout:/tmp/tmp.DixFXBIAgT 2024-05-10T21:50:38.973 DEBUG:teuthology.orchestra.run.smithi100:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.DixFXBIAgT 2024-05-10T21:50:39.039 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod 0666 /tmp/tmp.DixFXBIAgT 2024-05-10T21:50:39.177 DEBUG:teuthology.orchestra.remote:smithi100:/tmp/tmp.DixFXBIAgT is 6KB 2024-05-10T21:50:39.225 DEBUG:teuthology.orchestra.run.smithi100:> rm -fr /tmp/tmp.DixFXBIAgT 2024-05-10T21:50:39.239 DEBUG:teuthology.orchestra.run.smithi100:> sudo /bin/ls /boot/loader/entries || true 2024-05-10T21:50:39.311 INFO:teuthology.orchestra.run.smithi100.stdout:7fc8828e06d0482694bcf4a447d13cb6-0-rescue.conf 2024-05-10T21:50:39.311 INFO:teuthology.orchestra.run.smithi100.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-239.el9.x86_64.conf 2024-05-10T21:50:39.311 INFO:teuthology.orchestra.run.smithi100.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-437.el9.x86_64.conf 2024-05-10T21:50:39.312 INFO:teuthology.orchestra.run.smithi100.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-444.el9.x86_64.conf 2024-05-10T21:50:39.313 DEBUG:teuthology.orchestra.run.smithi100:> sudo grub2-set-default 7fc8828e06d0482694bcf4a447d13cb6-5.14.0-444.el9.x86_64 2024-05-10T21:50:39.460 DEBUG:teuthology.orchestra.run.smithi100:> sudo shutdown -r now 2024-05-10T21:50:43.230 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-modules-5.14.0-444.el9.x86_64 3/4 2024-05-10T21:50:43.272 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : kernel-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:50:48.364 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-modules-core-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:51:09.469 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-05-10T21:51:09.469 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-05-10T21:51:09.470 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:51:19.294 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-core-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:51:19.332 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-modules-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:51:19.612 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: kernel-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:51:19.612 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : kernel-5.14.0-444.el9.x86_64 1/4 2024-05-10T21:51:19.612 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : kernel-core-5.14.0-444.el9.x86_64 2/4 2024-05-10T21:51:19.612 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : kernel-modules-5.14.0-444.el9.x86_64 3/4 2024-05-10T21:51:20.424 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : kernel-modules-core-5.14.0-444.el9.x86_64 4/4 2024-05-10T21:51:20.424 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:51:20.424 INFO:teuthology.orchestra.run.smithi053.stdout:Installed: 2024-05-10T21:51:20.424 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-5.14.0-444.el9.x86_64 2024-05-10T21:51:20.424 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-core-5.14.0-444.el9.x86_64 2024-05-10T21:51:20.424 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-modules-5.14.0-444.el9.x86_64 2024-05-10T21:51:20.424 INFO:teuthology.orchestra.run.smithi053.stdout: kernel-modules-core-5.14.0-444.el9.x86_64 2024-05-10T21:51:20.425 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:51:20.425 INFO:teuthology.orchestra.run.smithi053.stdout:Complete! 2024-05-10T21:51:20.769 DEBUG:teuthology.orchestra.run.smithi053:> rpm -q kernel | sort -rV | head -n 1 2024-05-10T21:51:20.851 INFO:teuthology.orchestra.run.smithi053.stdout:kernel-5.14.0-444.el9.x86_64 2024-05-10T21:51:20.851 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-444.el9.x86_64 2024-05-10T21:51:20.851 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-437.el9.x86_64 Expected: 5.14.0-444.el9.x86_64 2024-05-10T21:51:20.851 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-10T21:51:20.851 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-10T21:51:20.851 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-05-10T21:51:20.851 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi053.front.sepia.ceph.com, path=None, version=distro) 2024-05-10T21:51:20.851 DEBUG:teuthology.orchestra.run.smithi053:> rpm -q kernel | sort -rV | head -n 1 2024-05-10T21:51:20.901 INFO:teuthology.orchestra.run.smithi053.stdout:kernel-5.14.0-444.el9.x86_64 2024-05-10T21:51:20.902 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-444.el9.x86_64 2024-05-10T21:51:20.903 DEBUG:teuthology.orchestra.run.smithi053:> sudo rpm -qi grub2-tools 2024-05-10T21:51:20.934 INFO:teuthology.orchestra.run.smithi053.stdout:Name : grub2-tools 2024-05-10T21:51:20.934 INFO:teuthology.orchestra.run.smithi053.stdout:Epoch : 1 2024-05-10T21:51:20.934 INFO:teuthology.orchestra.run.smithi053.stdout:Version : 2.06 2024-05-10T21:51:20.934 INFO:teuthology.orchestra.run.smithi053.stdout:Release : 68.el9 2024-05-10T21:51:20.934 INFO:teuthology.orchestra.run.smithi053.stdout:Architecture: x86_64 2024-05-10T21:51:20.934 INFO:teuthology.orchestra.run.smithi053.stdout:Install Date: Fri 19 Apr 2024 09:32:39 PM UTC 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Group : Unspecified 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Size : 8264254 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:License : GPLv3+ 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Packager : builder@centos.org 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Vendor : CentOS 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:URL : http://www.gnu.org/software/grub/ 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Summary : Support tools for GRUB. 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:Description : 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:51:20.935 INFO:teuthology.orchestra.run.smithi053.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-05-10T21:51:20.936 INFO:teuthology.orchestra.run.smithi053.stdout:customizable bootloader with modular architecture. It supports a rich 2024-05-10T21:51:20.936 INFO:teuthology.orchestra.run.smithi053.stdout:variety of kernel formats, file systems, computer architectures and 2024-05-10T21:51:20.936 INFO:teuthology.orchestra.run.smithi053.stdout:hardware devices. 2024-05-10T21:51:20.936 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:51:20.936 INFO:teuthology.orchestra.run.smithi053.stdout:This subpackage provides tools for support of all platforms. 2024-05-10T21:51:20.936 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-05-10T21:51:20.937 INFO:teuthology.task.kernel:Updating grub on smithi053 to boot 5.14.0-444.el9.x86_64 2024-05-10T21:51:20.937 DEBUG:teuthology.orchestra.run.smithi053:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-05-10T21:51:21.531 INFO:teuthology.orchestra.run.smithi053.stderr:Generating grub configuration file ... 2024-05-10T21:51:22.908 INFO:teuthology.orchestra.run.smithi053.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-05-10T21:51:22.944 INFO:teuthology.orchestra.run.smithi053.stderr:done 2024-05-10T21:51:22.947 DEBUG:teuthology.orchestra.run.smithi053:> mktemp 2024-05-10T21:51:22.962 INFO:teuthology.orchestra.run.smithi053.stdout:/tmp/tmp.VFUtO8NV4J 2024-05-10T21:51:22.963 DEBUG:teuthology.orchestra.run.smithi053:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.VFUtO8NV4J 2024-05-10T21:51:23.038 DEBUG:teuthology.orchestra.run.smithi053:> sudo chmod 0666 /tmp/tmp.VFUtO8NV4J 2024-05-10T21:51:23.184 DEBUG:teuthology.orchestra.remote:smithi053:/tmp/tmp.VFUtO8NV4J is 6KB 2024-05-10T21:51:23.233 DEBUG:teuthology.orchestra.run.smithi053:> rm -fr /tmp/tmp.VFUtO8NV4J 2024-05-10T21:51:23.248 DEBUG:teuthology.orchestra.run.smithi053:> sudo /bin/ls /boot/loader/entries || true 2024-05-10T21:51:23.310 INFO:teuthology.orchestra.run.smithi053.stdout:7fc8828e06d0482694bcf4a447d13cb6-0-rescue.conf 2024-05-10T21:51:23.310 INFO:teuthology.orchestra.run.smithi053.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-239.el9.x86_64.conf 2024-05-10T21:51:23.311 INFO:teuthology.orchestra.run.smithi053.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-437.el9.x86_64.conf 2024-05-10T21:51:23.311 INFO:teuthology.orchestra.run.smithi053.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-444.el9.x86_64.conf 2024-05-10T21:51:23.312 DEBUG:teuthology.orchestra.run.smithi053:> sudo grub2-set-default 7fc8828e06d0482694bcf4a447d13cb6-5.14.0-444.el9.x86_64 2024-05-10T21:51:23.460 DEBUG:teuthology.orchestra.run.smithi053:> sudo shutdown -r now 2024-05-10T21:51:28.030 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-05-10T21:51:37.038 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-05-10T21:51:37.040 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:51:40.094 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-05-10T21:51:52.105 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-05-10T21:51:52.106 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:51:53.464 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-05-10T21:51:53.464 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-05-10T21:51:53.465 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:51:55.169 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-05-10T21:52:10.182 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-05-10T21:52:10.183 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:52:11.806 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.53 2024-05-10T21:52:20.814 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-05-10T21:52:20.815 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:52:28.702 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-05-10T21:52:39.203 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.53 2024-05-10T21:52:46.710 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-05-10T21:52:46.711 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:52:47.134 DEBUG:teuthology.orchestra.run.smithi100:> true 2024-05-10T21:52:47.543 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-05-10T21:52:47.544 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-444.el9.x86_64"... 2024-05-10T21:52:47.544 DEBUG:teuthology.orchestra.run.smithi100:> uname -r 2024-05-10T21:52:47.560 INFO:teuthology.orchestra.run.smithi100.stdout:5.14.0-444.el9.x86_64 2024-05-10T21:52:47.560 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-444.el9.x86_64 vs 5.14.0-444.el9.x86_64 2024-05-10T21:52:47.560 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-10T21:52:47.560 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-05-10T21:52:48.561 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-05-10T21:52:48.561 DEBUG:teuthology.orchestra.run.smithi100:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-10T21:52:48.636 INFO:teuthology.orchestra.run.smithi100.stdout:ttyS1 2024-05-10T21:52:48.669 DEBUG:teuthology.parallel:result is None 2024-05-10T21:52:51.204 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-05-10T21:52:51.204 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:52:51.696 DEBUG:teuthology.orchestra.run.smithi053:> true 2024-05-10T21:52:52.261 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-05-10T21:52:52.261 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-444.el9.x86_64"... 2024-05-10T21:52:52.262 DEBUG:teuthology.orchestra.run.smithi053:> uname -r 2024-05-10T21:52:52.277 INFO:teuthology.orchestra.run.smithi053.stdout:5.14.0-444.el9.x86_64 2024-05-10T21:52:52.277 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-444.el9.x86_64 vs 5.14.0-444.el9.x86_64 2024-05-10T21:52:52.278 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-10T21:52:52.278 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-05-10T21:52:53.278 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-05-10T21:52:53.279 DEBUG:teuthology.orchestra.run.smithi053:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-10T21:52:53.381 INFO:teuthology.orchestra.run.smithi053.stdout:ttyS1 2024-05-10T21:52:53.430 DEBUG:teuthology.parallel:result is None 2024-05-10T21:52:53.430 INFO:teuthology.run_tasks:Running task internal.base... 2024-05-10T21:52:53.438 INFO:teuthology.task.internal:Creating test directory... 2024-05-10T21:52:53.438 DEBUG:teuthology.orchestra.run.smithi053:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-10T21:52:53.440 DEBUG:teuthology.orchestra.run.smithi100:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-10T21:52:53.457 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-05-10T21:52:53.477 INFO:teuthology.run_tasks:Running task internal.archive... 2024-05-10T21:52:53.527 INFO:teuthology.task.internal:Creating archive directory... 2024-05-10T21:52:53.528 DEBUG:teuthology.orchestra.run.smithi053:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-10T21:52:53.530 DEBUG:teuthology.orchestra.run.smithi100:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-10T21:52:53.563 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-05-10T21:52:53.578 INFO:teuthology.task.internal:Enabling coredump saving... 2024-05-10T21:52:53.578 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:52:53.588 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:52:53.634 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T21:52:53.644 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T21:52:53.646 INFO:teuthology.orchestra.run.smithi053.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T21:52:53.656 INFO:teuthology.orchestra.run.smithi053.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-10T21:52:53.658 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-05-10T21:52:53.665 INFO:teuthology.task.internal:Configuring sudo... 2024-05-10T21:52:53.666 DEBUG:teuthology.orchestra.run.smithi053:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-10T21:52:53.668 DEBUG:teuthology.orchestra.run.smithi100:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-10T21:52:53.714 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-05-10T21:52:53.723 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-05-10T21:52:53.724 DEBUG:teuthology.orchestra.run.smithi053:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-10T21:52:53.738 DEBUG:teuthology.orchestra.run.smithi100:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-10T21:52:53.773 DEBUG:teuthology.orchestra.run.smithi053:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-10T21:52:53.839 DEBUG:teuthology.orchestra.run.smithi053:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-10T21:52:53.897 DEBUG:teuthology.orchestra.run.smithi053:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-10T21:52:53.983 DEBUG:teuthology.orchestra.run.smithi053:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-10T21:52:54.031 DEBUG:teuthology.orchestra.run.smithi053:> set -ex 2024-05-10T21:52:54.031 DEBUG:teuthology.orchestra.run.smithi053:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-10T21:52:54.101 DEBUG:teuthology.orchestra.run.smithi100:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-10T21:52:54.142 DEBUG:teuthology.orchestra.run.smithi100:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-10T21:52:54.191 DEBUG:teuthology.orchestra.run.smithi100:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-10T21:52:54.275 DEBUG:teuthology.orchestra.run.smithi100:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-10T21:52:54.320 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-05-10T21:52:54.320 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-10T21:52:54.388 DEBUG:teuthology.orchestra.run.smithi053:> sudo service rsyslog restart 2024-05-10T21:52:54.390 DEBUG:teuthology.orchestra.run.smithi100:> sudo service rsyslog restart 2024-05-10T21:52:54.432 INFO:teuthology.orchestra.run.smithi053.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-10T21:52:54.482 INFO:teuthology.orchestra.run.smithi100.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-10T21:52:54.815 INFO:teuthology.run_tasks:Running task internal.timer... 2024-05-10T21:52:54.823 INFO:teuthology.task.internal:Starting timer... 2024-05-10T21:52:54.823 INFO:teuthology.run_tasks:Running task pcp... 2024-05-10T21:52:54.874 INFO:teuthology.run_tasks:Running task selinux... 2024-05-10T21:52:54.923 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-05-10T21:52:54.924 DEBUG:teuthology.orchestra.run.smithi053:> sudo service auditd rotate 2024-05-10T21:52:54.970 INFO:teuthology.orchestra.run.smithi053.stdout:Rotating logs: 2024-05-10T21:52:54.972 DEBUG:teuthology.orchestra.run.smithi100:> sudo service auditd rotate 2024-05-10T21:52:55.074 INFO:teuthology.orchestra.run.smithi100.stdout:Rotating logs: 2024-05-10T21:52:55.076 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-05-10T21:52:55.077 DEBUG:teuthology.orchestra.run.smithi053:> /usr/sbin/getenforce 2024-05-10T21:52:55.099 INFO:teuthology.orchestra.run.smithi053.stdout:Permissive 2024-05-10T21:52:55.099 DEBUG:teuthology.orchestra.run.smithi100:> /usr/sbin/getenforce 2024-05-10T21:52:55.130 INFO:teuthology.orchestra.run.smithi100.stdout:Permissive 2024-05-10T21:52:55.130 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi053.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi100.front.sepia.ceph.com': 'permissive'} 2024-05-10T21:52:55.130 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:52:55.165 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:52:55.165 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:52:55.199 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:52:55.199 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-05-10T21:52:55.199 DEBUG:teuthology.orchestra.run.smithi053:> sudo /usr/sbin/setenforce permissive 2024-05-10T21:52:55.234 DEBUG:teuthology.orchestra.run.smithi100:> sudo /usr/sbin/setenforce permissive 2024-05-10T21:52:55.274 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-05-10T21:52:55.285 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-05-10T21:52:55.306 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-05-10T21:52:55.308 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi053.front.sepia.ceph.com,smithi100.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-05-10T21:57:07.189 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi053.front.sepia.ceph.com'), Remote(name='ubuntu@smithi100.front.sepia.ceph.com')] 2024-05-10T21:57:07.191 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-05-10T21:57:07.192 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi053.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:57:07.271 DEBUG:teuthology.orchestra.run.smithi053:> true 2024-05-10T21:57:07.347 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi053.front.sepia.ceph.com' 2024-05-10T21:57:07.347 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-05-10T21:57:07.348 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-10T21:57:07.429 DEBUG:teuthology.orchestra.run.smithi100:> true 2024-05-10T21:57:07.465 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-05-10T21:57:07.466 INFO:teuthology.run_tasks:Running task clock... 2024-05-10T21:57:07.479 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-05-10T21:57:07.479 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-10T21:57:07.479 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:07.482 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-10T21:57:07.482 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:07.511 INFO:teuthology.orchestra.run.smithi053.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-05-10T21:57:07.526 INFO:teuthology.orchestra.run.smithi053.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-05-10T21:57:07.535 INFO:teuthology.orchestra.run.smithi100.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-05-10T21:57:07.550 INFO:teuthology.orchestra.run.smithi100.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-05-10T21:57:07.551 INFO:teuthology.orchestra.run.smithi053.stderr:sudo: ntpd: command not found 2024-05-10T21:57:07.563 INFO:teuthology.orchestra.run.smithi053.stdout:506 Cannot talk to daemon 2024-05-10T21:57:07.574 INFO:teuthology.orchestra.run.smithi100.stderr:sudo: ntpd: command not found 2024-05-10T21:57:07.577 INFO:teuthology.orchestra.run.smithi053.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-05-10T21:57:07.585 INFO:teuthology.orchestra.run.smithi100.stdout:506 Cannot talk to daemon 2024-05-10T21:57:07.592 INFO:teuthology.orchestra.run.smithi053.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-05-10T21:57:07.599 INFO:teuthology.orchestra.run.smithi100.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-05-10T21:57:07.614 INFO:teuthology.orchestra.run.smithi100.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-05-10T21:57:07.648 INFO:teuthology.orchestra.run.smithi053.stderr:bash: line 1: ntpq: command not found 2024-05-10T21:57:07.652 INFO:teuthology.orchestra.run.smithi053.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-05-10T21:57:07.652 INFO:teuthology.orchestra.run.smithi053.stdout:=============================================================================== 2024-05-10T21:57:07.652 INFO:teuthology.orchestra.run.smithi053.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:07.652 INFO:teuthology.orchestra.run.smithi053.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:07.652 INFO:teuthology.orchestra.run.smithi053.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:07.652 INFO:teuthology.orchestra.run.smithi053.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:07.667 INFO:teuthology.orchestra.run.smithi100.stderr:bash: line 1: ntpq: command not found 2024-05-10T21:57:07.670 INFO:teuthology.orchestra.run.smithi100.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-05-10T21:57:07.670 INFO:teuthology.orchestra.run.smithi100.stdout:=============================================================================== 2024-05-10T21:57:07.670 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:07.670 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:07.670 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:07.670 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:07.671 INFO:teuthology.run_tasks:Running task pexec... 2024-05-10T21:57:07.683 INFO:teuthology.task.pexec:Executing custom commands... 2024-05-10T21:57:07.683 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi053.front.sepia.ceph.com 2024-05-10T21:57:07.683 DEBUG:teuthology.orchestra.run.smithi053:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-05-10T21:57:07.684 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi100.front.sepia.ceph.com 2024-05-10T21:57:07.684 DEBUG:teuthology.orchestra.run.smithi100:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-05-10T21:57:08.292 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:00:55 ago on Fri 10 May 2024 09:56:13 PM UTC. 2024-05-10T21:57:08.295 INFO:teuthology.orchestra.run.smithi053.stdout:Last metadata expiration check: 0:00:49 ago on Fri 10 May 2024 09:56:19 PM UTC. 2024-05-10T21:57:08.410 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-05-10T21:57:08.411 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-05-10T21:57:08.411 INFO:teuthology.orchestra.run.smithi100.stdout: Package Architecture Version Repository Size 2024-05-10T21:57:08.411 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-05-10T21:57:08.411 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-05-10T21:57:08.412 INFO:teuthology.orchestra.run.smithi100.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-05-10T21:57:08.412 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:57:08.412 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-05-10T21:57:08.412 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-05-10T21:57:08.412 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-05-10T21:57:08.412 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:57:08.418 INFO:teuthology.orchestra.run.smithi053.stdout:Dependencies resolved. 2024-05-10T21:57:08.427 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-05-10T21:57:08.427 INFO:teuthology.orchestra.run.smithi053.stdout: Package Architecture Version Repository Size 2024-05-10T21:57:08.427 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-05-10T21:57:08.427 INFO:teuthology.orchestra.run.smithi053.stdout:Installing: 2024-05-10T21:57:08.427 INFO:teuthology.orchestra.run.smithi053.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-05-10T21:57:08.428 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:57:08.428 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction Summary 2024-05-10T21:57:08.428 INFO:teuthology.orchestra.run.smithi053.stdout:================================================================================ 2024-05-10T21:57:08.428 INFO:teuthology.orchestra.run.smithi053.stdout:Install 1 Package 2024-05-10T21:57:08.428 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:57:08.434 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 3.1 M 2024-05-10T21:57:08.434 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 9.8 M 2024-05-10T21:57:08.434 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-05-10T21:57:08.436 INFO:teuthology.orchestra.run.smithi053.stdout:Total download size: 3.1 M 2024-05-10T21:57:08.436 INFO:teuthology.orchestra.run.smithi053.stdout:Installed size: 9.8 M 2024-05-10T21:57:08.436 INFO:teuthology.orchestra.run.smithi053.stdout:Downloading Packages: 2024-05-10T21:57:08.783 INFO:teuthology.orchestra.run.smithi053.stdout:runc-1.1.12-2.el9.x86_64.rpm 18 MB/s | 3.1 MB 00:00 2024-05-10T21:57:08.783 INFO:teuthology.orchestra.run.smithi053.stdout:-------------------------------------------------------------------------------- 2024-05-10T21:57:08.783 INFO:teuthology.orchestra.run.smithi053.stdout:Total 9.0 MB/s | 3.1 MB 00:00 2024-05-10T21:57:08.821 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction check 2024-05-10T21:57:08.827 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction check succeeded. 2024-05-10T21:57:08.827 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction test 2024-05-10T21:57:08.925 INFO:teuthology.orchestra.run.smithi053.stdout:Transaction test succeeded. 2024-05-10T21:57:08.926 INFO:teuthology.orchestra.run.smithi053.stdout:Running transaction 2024-05-10T21:57:09.150 INFO:teuthology.orchestra.run.smithi053.stdout: Preparing : 1/1 2024-05-10T21:57:09.251 INFO:teuthology.orchestra.run.smithi053.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-05-10T21:57:09.550 INFO:teuthology.orchestra.run.smithi100.stdout:runc-1.1.12-2.el9.x86_64.rpm 2.9 MB/s | 3.1 MB 00:01 2024-05-10T21:57:09.550 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-05-10T21:57:09.550 INFO:teuthology.orchestra.run.smithi100.stdout:Total 2.8 MB/s | 3.1 MB 00:01 2024-05-10T21:57:09.590 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-05-10T21:57:09.595 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-05-10T21:57:09.597 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-05-10T21:57:09.693 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-05-10T21:57:09.693 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-05-10T21:57:09.778 INFO:teuthology.orchestra.run.smithi053.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-05-10T21:57:09.913 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-05-10T21:57:10.001 INFO:teuthology.orchestra.run.smithi053.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-05-10T21:57:10.001 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:57:10.001 INFO:teuthology.orchestra.run.smithi053.stdout:Installed: 2024-05-10T21:57:10.001 INFO:teuthology.orchestra.run.smithi053.stdout: runc-4:1.1.12-2.el9.x86_64 2024-05-10T21:57:10.001 INFO:teuthology.orchestra.run.smithi053.stdout: 2024-05-10T21:57:10.001 INFO:teuthology.orchestra.run.smithi053.stdout:Complete! 2024-05-10T21:57:10.019 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-05-10T21:57:10.294 DEBUG:teuthology.parallel:result is None 2024-05-10T21:57:10.657 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-05-10T21:57:10.920 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-05-10T21:57:10.920 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:57:10.920 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-05-10T21:57:10.920 INFO:teuthology.orchestra.run.smithi100.stdout: runc-4:1.1.12-2.el9.x86_64 2024-05-10T21:57:10.920 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-05-10T21:57:10.920 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-05-10T21:57:11.183 DEBUG:teuthology.parallel:result is None 2024-05-10T21:57:11.183 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-05-10T21:57:11.193 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-05-10T21:57:11.194 DEBUG:teuthology.orchestra.run.smithi053:> set -ex 2024-05-10T21:57:11.194 DEBUG:teuthology.orchestra.run.smithi053:> dd if=/scratch_devs of=/dev/stdout 2024-05-10T21:57:11.215 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-05-10T21:57:11.216 DEBUG:teuthology.orchestra.run.smithi053:> stat /dev/vg_nvme/lv_1 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout:Device: 5h/5d Inode: 667 Links: 1 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout:Context: system_u:object_r:device_t:s0 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout:Access: 2024-05-10 21:57:06.124735236 +0000 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout:Modify: 2024-05-10 21:56:47.104095784 +0000 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout:Change: 2024-05-10 21:56:47.104095784 +0000 2024-05-10T21:57:11.275 INFO:teuthology.orchestra.run.smithi053.stdout: Birth: 2024-05-10 21:56:47.104095784 +0000 2024-05-10T21:57:11.276 DEBUG:teuthology.orchestra.run.smithi053:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-05-10T21:57:11.343 INFO:teuthology.orchestra.run.smithi053.stderr:1+0 records in 2024-05-10T21:57:11.343 INFO:teuthology.orchestra.run.smithi053.stderr:1+0 records out 2024-05-10T21:57:11.343 INFO:teuthology.orchestra.run.smithi053.stderr:512 bytes copied, 0.000108946 s, 4.7 MB/s 2024-05-10T21:57:11.344 DEBUG:teuthology.orchestra.run.smithi053:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-05-10T21:57:11.404 DEBUG:teuthology.orchestra.run.smithi053:> stat /dev/vg_nvme/lv_2 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout:Context: system_u:object_r:device_t:s0 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout:Access: 2024-05-10 21:57:06.124735236 +0000 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout:Modify: 2024-05-10 21:56:47.443089358 +0000 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout:Change: 2024-05-10 21:56:47.443089358 +0000 2024-05-10T21:57:11.463 INFO:teuthology.orchestra.run.smithi053.stdout: Birth: 2024-05-10 21:56:47.443089358 +0000 2024-05-10T21:57:11.463 DEBUG:teuthology.orchestra.run.smithi053:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-05-10T21:57:11.530 INFO:teuthology.orchestra.run.smithi053.stderr:1+0 records in 2024-05-10T21:57:11.530 INFO:teuthology.orchestra.run.smithi053.stderr:1+0 records out 2024-05-10T21:57:11.530 INFO:teuthology.orchestra.run.smithi053.stderr:512 bytes copied, 0.000122757 s, 4.2 MB/s 2024-05-10T21:57:11.531 DEBUG:teuthology.orchestra.run.smithi053:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-05-10T21:57:11.590 DEBUG:teuthology.orchestra.run.smithi053:> stat /dev/vg_nvme/lv_3 2024-05-10T21:57:11.647 INFO:teuthology.orchestra.run.smithi053.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-05-10T21:57:11.647 INFO:teuthology.orchestra.run.smithi053.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-10T21:57:11.647 INFO:teuthology.orchestra.run.smithi053.stdout:Device: 5h/5d Inode: 706 Links: 1 2024-05-10T21:57:11.647 INFO:teuthology.orchestra.run.smithi053.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-10T21:57:11.647 INFO:teuthology.orchestra.run.smithi053.stdout:Context: system_u:object_r:device_t:s0 2024-05-10T21:57:11.647 INFO:teuthology.orchestra.run.smithi053.stdout:Access: 2024-05-10 21:57:06.124735236 +0000 2024-05-10T21:57:11.647 INFO:teuthology.orchestra.run.smithi053.stdout:Modify: 2024-05-10 21:56:47.768083197 +0000 2024-05-10T21:57:11.648 INFO:teuthology.orchestra.run.smithi053.stdout:Change: 2024-05-10 21:56:47.768083197 +0000 2024-05-10T21:57:11.648 INFO:teuthology.orchestra.run.smithi053.stdout: Birth: 2024-05-10 21:56:47.768083197 +0000 2024-05-10T21:57:11.648 DEBUG:teuthology.orchestra.run.smithi053:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-05-10T21:57:11.713 INFO:teuthology.orchestra.run.smithi053.stderr:1+0 records in 2024-05-10T21:57:11.713 INFO:teuthology.orchestra.run.smithi053.stderr:1+0 records out 2024-05-10T21:57:11.713 INFO:teuthology.orchestra.run.smithi053.stderr:512 bytes copied, 0.00011375 s, 4.5 MB/s 2024-05-10T21:57:11.714 DEBUG:teuthology.orchestra.run.smithi053:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-05-10T21:57:11.773 DEBUG:teuthology.orchestra.run.smithi053:> stat /dev/vg_nvme/lv_4 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout:Context: system_u:object_r:device_t:s0 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout:Access: 2024-05-10 21:57:06.124735236 +0000 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout:Modify: 2024-05-10 21:56:48.115076620 +0000 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout:Change: 2024-05-10 21:56:48.115076620 +0000 2024-05-10T21:57:11.830 INFO:teuthology.orchestra.run.smithi053.stdout: Birth: 2024-05-10 21:56:48.115076620 +0000 2024-05-10T21:57:11.831 DEBUG:teuthology.orchestra.run.smithi053:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-05-10T21:57:11.896 INFO:teuthology.orchestra.run.smithi053.stderr:1+0 records in 2024-05-10T21:57:11.896 INFO:teuthology.orchestra.run.smithi053.stderr:1+0 records out 2024-05-10T21:57:11.896 INFO:teuthology.orchestra.run.smithi053.stderr:512 bytes copied, 0.00010716 s, 4.8 MB/s 2024-05-10T21:57:11.897 DEBUG:teuthology.orchestra.run.smithi053:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-05-10T21:57:11.955 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:12.090 INFO:teuthology.orchestra.run.smithi053.stdout:loop 2024-05-10T21:57:12.092 INFO:tasks.nvme_loop:Connecting nvme_loop smithi053:/dev/vg_nvme/lv_1... 2024-05-10T21:57:12.092 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:12.126 INFO:teuthology.orchestra.run.smithi053.stdout:1 2024-05-10T21:57:12.156 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/vg_nvme/lv_11 2024-05-10T21:57:12.181 INFO:tasks.nvme_loop:Connecting nvme_loop smithi053:/dev/vg_nvme/lv_2... 2024-05-10T21:57:12.181 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:12.259 INFO:teuthology.orchestra.run.smithi053.stdout:1 2024-05-10T21:57:12.290 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/vg_nvme/lv_21 2024-05-10T21:57:12.321 INFO:tasks.nvme_loop:Connecting nvme_loop smithi053:/dev/vg_nvme/lv_3... 2024-05-10T21:57:12.321 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:12.396 INFO:teuthology.orchestra.run.smithi053.stdout:1 2024-05-10T21:57:12.426 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/vg_nvme/lv_31 2024-05-10T21:57:12.450 INFO:tasks.nvme_loop:Connecting nvme_loop smithi053:/dev/vg_nvme/lv_4... 2024-05-10T21:57:12.451 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:12.526 INFO:teuthology.orchestra.run.smithi053.stdout:1 2024-05-10T21:57:12.556 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/vg_nvme/lv_41 2024-05-10T21:57:12.580 DEBUG:teuthology.orchestra.run.smithi053:> set -ex 2024-05-10T21:57:12.580 DEBUG:teuthology.orchestra.run.smithi053:> dd if=/scratch_devs of=/dev/stdout 2024-05-10T21:57:12.635 DEBUG:teuthology.orchestra.run.smithi053:> sudo nvme list 2024-05-10T21:57:12.701 INFO:teuthology.orchestra.run.smithi053.stdout:Node SN Model Namespace Usage Format FW Rev 2024-05-10T21:57:12.701 INFO:teuthology.orchestra.run.smithi053.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-05-10T21:57:12.701 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/nvme0n1 PHMB751300G8480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-05-10T21:57:12.701 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/nvme1n1 3b498f03fc8e40fc7048 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-05-10T21:57:12.701 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/nvme2n1 ddfb45ef46d0896a7ce2 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-05-10T21:57:12.701 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/nvme3n1 b0d1418b9dab88790348 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-05-10T21:57:12.701 INFO:teuthology.orchestra.run.smithi053.stdout:/dev/nvme4n1 fd139891dbf6ba1071b1 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-05-10T21:57:12.702 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-05-10T21:57:12.702 DEBUG:teuthology.orchestra.run.smithi053:> set -ex 2024-05-10T21:57:12.702 DEBUG:teuthology.orchestra.run.smithi053:> sudo dd of=/scratch_devs 2024-05-10T21:57:12.768 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-05-10T21:57:12.768 DEBUG:teuthology.orchestra.run.smithi100:> dd if=/scratch_devs of=/dev/stdout 2024-05-10T21:57:12.787 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-05-10T21:57:12.788 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/vg_nvme/lv_1 2024-05-10T21:57:12.846 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-05-10T21:57:12.846 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-10T21:57:12.846 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 5h/5d Inode: 668 Links: 1 2024-05-10T21:57:12.846 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-10T21:57:12.846 INFO:teuthology.orchestra.run.smithi100.stdout:Context: system_u:object_r:device_t:s0 2024-05-10T21:57:12.847 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-05-10 21:57:06.110667058 +0000 2024-05-10T21:57:12.847 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-05-10 21:56:35.626415493 +0000 2024-05-10T21:57:12.847 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-05-10 21:56:35.626415493 +0000 2024-05-10T21:57:12.847 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: 2024-05-10 21:56:35.626415493 +0000 2024-05-10T21:57:12.847 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-05-10T21:57:12.914 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-05-10T21:57:12.914 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-05-10T21:57:12.914 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000221687 s, 2.3 MB/s 2024-05-10T21:57:12.915 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-05-10T21:57:12.974 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/vg_nvme/lv_2 2024-05-10T21:57:13.031 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-05-10T21:57:13.031 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-10T21:57:13.031 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-05-10T21:57:13.032 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-10T21:57:13.032 INFO:teuthology.orchestra.run.smithi100.stdout:Context: system_u:object_r:device_t:s0 2024-05-10T21:57:13.032 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-05-10 21:57:06.110667058 +0000 2024-05-10T21:57:13.032 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-05-10 21:56:35.970407048 +0000 2024-05-10T21:57:13.032 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-05-10 21:56:35.970407048 +0000 2024-05-10T21:57:13.032 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: 2024-05-10 21:56:35.970407048 +0000 2024-05-10T21:57:13.032 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-05-10T21:57:13.097 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-05-10T21:57:13.097 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-05-10T21:57:13.097 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000218634 s, 2.3 MB/s 2024-05-10T21:57:13.098 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-05-10T21:57:13.156 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/vg_nvme/lv_3 2024-05-10T21:57:13.212 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-05-10T21:57:13.213 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-10T21:57:13.213 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-05-10T21:57:13.213 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-10T21:57:13.213 INFO:teuthology.orchestra.run.smithi100.stdout:Context: system_u:object_r:device_t:s0 2024-05-10T21:57:13.213 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-05-10 21:57:06.110667058 +0000 2024-05-10T21:57:13.213 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-05-10 21:56:36.293399118 +0000 2024-05-10T21:57:13.213 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-05-10 21:56:36.293399118 +0000 2024-05-10T21:57:13.213 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: 2024-05-10 21:56:36.293399118 +0000 2024-05-10T21:57:13.213 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-05-10T21:57:13.277 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-05-10T21:57:13.277 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-05-10T21:57:13.277 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000208779 s, 2.5 MB/s 2024-05-10T21:57:13.278 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-05-10T21:57:13.335 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/vg_nvme/lv_4 2024-05-10T21:57:13.391 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-05-10T21:57:13.391 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-10T21:57:13.391 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-05-10T21:57:13.391 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-10T21:57:13.391 INFO:teuthology.orchestra.run.smithi100.stdout:Context: system_u:object_r:device_t:s0 2024-05-10T21:57:13.392 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-05-10 21:57:06.110667058 +0000 2024-05-10T21:57:13.392 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-05-10 21:56:36.626390943 +0000 2024-05-10T21:57:13.392 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-05-10 21:56:36.626390943 +0000 2024-05-10T21:57:13.392 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: 2024-05-10 21:56:36.626390943 +0000 2024-05-10T21:57:13.392 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-05-10T21:57:13.455 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-05-10T21:57:13.455 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-05-10T21:57:13.455 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000235621 s, 2.2 MB/s 2024-05-10T21:57:13.456 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-05-10T21:57:13.512 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:13.637 INFO:teuthology.orchestra.run.smithi100.stdout:loop 2024-05-10T21:57:13.638 INFO:tasks.nvme_loop:Connecting nvme_loop smithi100:/dev/vg_nvme/lv_1... 2024-05-10T21:57:13.638 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:13.671 INFO:teuthology.orchestra.run.smithi100.stdout:1 2024-05-10T21:57:13.700 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/vg_nvme/lv_11 2024-05-10T21:57:13.724 INFO:tasks.nvme_loop:Connecting nvme_loop smithi100:/dev/vg_nvme/lv_2... 2024-05-10T21:57:13.724 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:13.797 INFO:teuthology.orchestra.run.smithi100.stdout:1 2024-05-10T21:57:13.826 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/vg_nvme/lv_21 2024-05-10T21:57:13.857 INFO:tasks.nvme_loop:Connecting nvme_loop smithi100:/dev/vg_nvme/lv_3... 2024-05-10T21:57:13.857 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:13.931 INFO:teuthology.orchestra.run.smithi100.stdout:1 2024-05-10T21:57:13.961 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/vg_nvme/lv_31 2024-05-10T21:57:13.991 INFO:tasks.nvme_loop:Connecting nvme_loop smithi100:/dev/vg_nvme/lv_4... 2024-05-10T21:57:13.992 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:14.065 INFO:teuthology.orchestra.run.smithi100.stdout:1 2024-05-10T21:57:14.096 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/vg_nvme/lv_41 2024-05-10T21:57:14.120 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-05-10T21:57:14.120 DEBUG:teuthology.orchestra.run.smithi100:> dd if=/scratch_devs of=/dev/stdout 2024-05-10T21:57:14.181 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme list 2024-05-10T21:57:14.259 INFO:teuthology.orchestra.run.smithi100.stdout:Node SN Model Namespace Usage Format FW Rev 2024-05-10T21:57:14.259 INFO:teuthology.orchestra.run.smithi100.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-05-10T21:57:14.259 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme0n1 PHFT620400WR400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-05-10T21:57:14.259 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme1n1 532b10da7b3a540c2481 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-05-10T21:57:14.259 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme2n1 fbcbf8d1ff1d084e0d35 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-05-10T21:57:14.259 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme3n1 fe6be1b7499fec54c6ca Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-05-10T21:57:14.259 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme4n1 d481183844de7d908f81 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-05-10T21:57:14.260 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-05-10T21:57:14.260 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-05-10T21:57:14.261 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/scratch_devs 2024-05-10T21:57:14.326 INFO:teuthology.run_tasks:Running task cephadm... 2024-05-10T21:57:14.430 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'log-only-match': ['CEPHADM_'], 'sha1': 'f72fecff68e1d400c4568684327c900485c20d6a'} 2024-05-10T21:57:14.430 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T21:57:14.433 INFO:tasks.cephadm:Cluster fsid is 42b121aa-0f18-11ef-bc98-c7b262605968 2024-05-10T21:57:14.433 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-05-10T21:57:14.434 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-05-10T21:57:14.434 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi053': '172.21.15.53', 'mon.smithi100': '172.21.15.100'} 2024-05-10T21:57:14.434 INFO:tasks.cephadm:Normalizing hostnames... 2024-05-10T21:57:14.434 DEBUG:teuthology.orchestra.run.smithi053:> sudo hostname $(hostname -s) 2024-05-10T21:57:14.467 DEBUG:teuthology.orchestra.run.smithi100:> sudo hostname $(hostname -s) 2024-05-10T21:57:14.495 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-05-10T21:57:14.495 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T21:57:14.740 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'f72fecff68e1d400c4568684327c900485c20d6a', '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/55120/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2555-gf72fecff', '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-2555.gf72fecff'}, 'url': 'https://3.chacra.ceph.com/r/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-05-10 16:26:33.694063', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-05-10T21:57:14.891 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref squid, sha1 f72fecff68e1d400c4568684327c900485c20d6a from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T21:57:14.893 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/centos/9/x86_64/flavors/default/cephadm 2024-05-10T21:57:14.893 DEBUG:teuthology.orchestra.run.smithi053:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-10T21:57:15.291 INFO:teuthology.orchestra.run.smithi053.stdout:-rw-r--r--. 1 ubuntu ubuntu 781960 May 10 21:57 /home/ubuntu/cephtest/cephadm 2024-05-10T21:57:15.292 DEBUG:teuthology.orchestra.run.smithi100:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/f72fecff68e1d400c4568684327c900485c20d6a/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-10T21:57:15.826 INFO:teuthology.orchestra.run.smithi100.stdout:-rw-r--r--. 1 ubuntu ubuntu 781960 May 10 21:57 /home/ubuntu/cephtest/cephadm 2024-05-10T21:57:15.827 DEBUG:teuthology.orchestra.run.smithi053:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-10T21:57:15.847 DEBUG:teuthology.orchestra.run.smithi100:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-10T21:57:15.874 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a on all hosts... 2024-05-10T21:57:15.874 DEBUG:teuthology.orchestra.run.smithi053:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull 2024-05-10T21:57:15.890 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull 2024-05-10T21:57:17.433 INFO:teuthology.orchestra.run.smithi053.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a... 2024-05-10T21:57:17.499 INFO:teuthology.orchestra.run.smithi100.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a... 2024-05-10T21:57:17.617 INFO:teuthology.orchestra.run.smithi053.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T21:57:17.617 INFO:teuthology.orchestra.run.smithi053.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a... 2024-05-10T21:57:17.617 INFO:teuthology.orchestra.run.smithi053.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a: reading manifest f72fecff68e1d400c4568684327c900485c20d6a in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-05-10T21:57:17.617 INFO:teuthology.orchestra.run.smithi053.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T21:57:17.638 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:17.638 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi053 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull' 2024-05-10T21:57:17.640 INFO:tasks.cephadm:Archiving crash dumps... 2024-05-10T21:57:17.641 DEBUG:teuthology.misc:Transferring archived files from smithi053:/var/lib/ceph/42b121aa-0f18-11ef-bc98-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742/remote/smithi053/crash 2024-05-10T21:57:17.642 DEBUG:teuthology.orchestra.run.smithi053:> sudo tar c -f - -C /var/lib/ceph/42b121aa-0f18-11ef-bc98-c7b262605968/crash -- . 2024-05-10T21:57:17.676 INFO:teuthology.orchestra.run.smithi053.stderr:tar: /var/lib/ceph/42b121aa-0f18-11ef-bc98-c7b262605968/crash: Cannot open: No such file or directory 2024-05-10T21:57:17.676 INFO:teuthology.orchestra.run.smithi053.stderr:tar: Error is not recoverable: exiting now 2024-05-10T21:57:17.678 DEBUG:teuthology.misc:Transferring archived files from smithi100:/var/lib/ceph/42b121aa-0f18-11ef-bc98-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742/remote/smithi100/crash 2024-05-10T21:57:17.679 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /var/lib/ceph/42b121aa-0f18-11ef-bc98-c7b262605968/crash -- . 2024-05-10T21:57:17.695 INFO:teuthology.orchestra.run.smithi100.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T21:57:17.695 INFO:teuthology.orchestra.run.smithi100.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a... 2024-05-10T21:57:17.695 INFO:teuthology.orchestra.run.smithi100.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a: reading manifest f72fecff68e1d400c4568684327c900485c20d6a in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-05-10T21:57:17.695 INFO:teuthology.orchestra.run.smithi100.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a 2024-05-10T21:57:17.743 INFO:teuthology.orchestra.run.smithi100.stderr:tar: /var/lib/ceph/42b121aa-0f18-11ef-bc98-c7b262605968/crash: Cannot open: No such file or directory 2024-05-10T21:57:17.744 INFO:teuthology.orchestra.run.smithi100.stderr:tar: Error is not recoverable: exiting now 2024-05-10T21:57:17.745 INFO:tasks.cephadm:Checking cluster log for badness... 2024-05-10T21:57:17.745 DEBUG:teuthology.orchestra.run.smithi053:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/42b121aa-0f18-11ef-bc98-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-05-10T21:57:17.770 INFO:teuthology.orchestra.run.smithi053.stderr:grep: /var/log/ceph/42b121aa-0f18-11ef-bc98-c7b262605968/ceph.log: No such file or directory 2024-05-10T21:57:17.772 INFO:tasks.cephadm:Compressing logs... 2024-05-10T21:57:17.772 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:17.815 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:17.839 INFO:teuthology.orchestra.run.smithi053.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-05-10T21:57:17.839 INFO:teuthology.orchestra.run.smithi053.stderr:: No such file or directory 2024-05-10T21:57:17.839 INFO:teuthology.orchestra.run.smithi053.stderr:/var/log/ceph/cephadm.log: 73.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-05-10T21:57:17.840 INFO:teuthology.orchestra.run.smithi100.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-05-10T21:57:17.840 INFO:teuthology.orchestra.run.smithi100.stderr:: No such file or directory 2024-05-10T21:57:17.840 INFO:teuthology.orchestra.run.smithi100.stderr:/var/log/ceph/cephadm.log: 73.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-05-10T21:57:17.841 INFO:teuthology.orchestra.run.smithi053.stderr: 2024-05-10T21:57:17.841 INFO:teuthology.orchestra.run.smithi053.stderr:real 0m0.013s 2024-05-10T21:57:17.841 INFO:teuthology.orchestra.run.smithi053.stderr:user 0m0.016s 2024-05-10T21:57:17.841 INFO:teuthology.orchestra.run.smithi053.stderr:sys 0m0.006s 2024-05-10T21:57:17.842 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-05-10T21:57:17.842 INFO:teuthology.orchestra.run.smithi100.stderr:real 0m0.012s 2024-05-10T21:57:17.842 INFO:teuthology.orchestra.run.smithi100.stderr:user 0m0.005s 2024-05-10T21:57:17.842 INFO:teuthology.orchestra.run.smithi100.stderr:sys 0m0.017s 2024-05-10T21:57:17.842 INFO:tasks.cephadm:Archiving logs... 2024-05-10T21:57:17.843 DEBUG:teuthology.misc:Transferring archived files from smithi053:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742/remote/smithi053/log 2024-05-10T21:57:17.844 DEBUG:teuthology.orchestra.run.smithi053:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-10T21:57:17.908 DEBUG:teuthology.misc:Transferring archived files from smithi100:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742/remote/smithi100/log 2024-05-10T21:57:17.908 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-10T21:57:17.934 INFO:tasks.cephadm:Removing cluster... 2024-05-10T21:57:17.934 DEBUG:teuthology.orchestra.run.smithi053:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 42b121aa-0f18-11ef-bc98-c7b262605968 --force 2024-05-10T21:57:18.137 INFO:teuthology.orchestra.run.smithi053.stdout:Deleting cluster with fsid: 42b121aa-0f18-11ef-bc98-c7b262605968 2024-05-10T21:57:18.287 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 42b121aa-0f18-11ef-bc98-c7b262605968 --force 2024-05-10T21:57:18.469 INFO:teuthology.orchestra.run.smithi100.stdout:Deleting cluster with fsid: 42b121aa-0f18-11ef-bc98-c7b262605968 2024-05-10T21:57:18.585 INFO:tasks.cephadm:Removing cephadm ... 2024-05-10T21:57:18.585 DEBUG:teuthology.orchestra.run.smithi053:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-10T21:57:18.603 DEBUG:teuthology.orchestra.run.smithi100:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-10T21:57:18.618 INFO:tasks.cephadm:Teardown complete 2024-05-10T21:57:18.619 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 2204, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 1833, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi053 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull' 2024-05-10T21:57:18.850 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=ac8ee6fca34f4416840a2be30a40984c Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 2204, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 1833, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/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_f72fecff68e1d400c4568684327c900485c20d6a/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi053 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull' 2024-05-10T21:57:18.853 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-05-10T21:57:18.871 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-05-10T21:57:18.920 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi053:/dev/vg_nvme/lv_1... 2024-05-10T21:57:18.921 DEBUG:teuthology.orchestra.run.smithi053:> sudo nvme disconnect -n lv_1 2024-05-10T21:57:19.078 INFO:teuthology.orchestra.run.smithi053.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-05-10T21:57:19.079 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:19.079 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi053:/dev/vg_nvme/lv_2... 2024-05-10T21:57:19.080 DEBUG:teuthology.orchestra.run.smithi053:> sudo nvme disconnect -n lv_2 2024-05-10T21:57:19.222 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:19.222 INFO:teuthology.orchestra.run.smithi053.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-05-10T21:57:19.223 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi053:/dev/vg_nvme/lv_3... 2024-05-10T21:57:19.223 DEBUG:teuthology.orchestra.run.smithi053:> sudo nvme disconnect -n lv_3 2024-05-10T21:57:19.359 INFO:teuthology.orchestra.run.smithi053.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-05-10T21:57:19.360 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:19.360 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi053:/dev/vg_nvme/lv_4... 2024-05-10T21:57:19.361 DEBUG:teuthology.orchestra.run.smithi053:> sudo nvme disconnect -n lv_4 2024-05-10T21:57:19.507 INFO:teuthology.orchestra.run.smithi053.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-05-10T21:57:19.508 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:19.508 DEBUG:teuthology.orchestra.run.smithi053:> set -ex 2024-05-10T21:57:19.509 DEBUG:teuthology.orchestra.run.smithi053:> sudo dd of=/scratch_devs 2024-05-10T21:57:19.534 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi100:/dev/vg_nvme/lv_1... 2024-05-10T21:57:19.535 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme disconnect -n lv_1 2024-05-10T21:57:19.671 INFO:teuthology.orchestra.run.smithi100.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-05-10T21:57:19.673 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:19.673 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi100:/dev/vg_nvme/lv_2... 2024-05-10T21:57:19.674 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme disconnect -n lv_2 2024-05-10T21:57:19.807 INFO:teuthology.orchestra.run.smithi100.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-05-10T21:57:19.809 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:19.810 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi100:/dev/vg_nvme/lv_3... 2024-05-10T21:57:19.810 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme disconnect -n lv_3 2024-05-10T21:57:19.953 INFO:teuthology.orchestra.run.smithi100.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-05-10T21:57:19.955 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:19.955 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi100:/dev/vg_nvme/lv_4... 2024-05-10T21:57:19.955 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme disconnect -n lv_4 2024-05-10T21:57:20.101 INFO:teuthology.orchestra.run.smithi100.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-05-10T21:57:20.103 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:20.103 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-05-10T21:57:20.104 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/scratch_devs 2024-05-10T21:57:20.131 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-05-10T21:57:20.141 INFO:teuthology.task.clock:Checking final clock skew... 2024-05-10T21:57:20.141 DEBUG:teuthology.orchestra.run.smithi053:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-10T21:57:20.144 DEBUG:teuthology.orchestra.run.smithi100:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-10T21:57:20.160 INFO:teuthology.orchestra.run.smithi053.stderr:bash: line 1: ntpq: command not found 2024-05-10T21:57:20.165 INFO:teuthology.orchestra.run.smithi053.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-05-10T21:57:20.165 INFO:teuthology.orchestra.run.smithi053.stdout:=============================================================================== 2024-05-10T21:57:20.165 INFO:teuthology.orchestra.run.smithi053.stdout:^* hv01.front.sepia.ceph.com 3 6 17 6 +1162us[+1168us] +/- 49ms 2024-05-10T21:57:20.165 INFO:teuthology.orchestra.run.smithi053.stdout:^+ hv02.front.sepia.ceph.com 3 6 17 6 -1519us[-1513us] +/- 67ms 2024-05-10T21:57:20.165 INFO:teuthology.orchestra.run.smithi053.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 7 -71us[ -64us] +/- 74ms 2024-05-10T21:57:20.165 INFO:teuthology.orchestra.run.smithi053.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:20.188 INFO:teuthology.orchestra.run.smithi100.stderr:bash: line 1: ntpq: command not found 2024-05-10T21:57:20.193 INFO:teuthology.orchestra.run.smithi100.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-05-10T21:57:20.194 INFO:teuthology.orchestra.run.smithi100.stdout:=============================================================================== 2024-05-10T21:57:20.194 INFO:teuthology.orchestra.run.smithi100.stdout:^* hv01.front.sepia.ceph.com 3 6 17 6 +1128us[+1117us] +/- 49ms 2024-05-10T21:57:20.194 INFO:teuthology.orchestra.run.smithi100.stdout:^+ hv02.front.sepia.ceph.com 3 6 17 6 -1509us[-1519us] +/- 67ms 2024-05-10T21:57:20.194 INFO:teuthology.orchestra.run.smithi100.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 7 -63us[ -74us] +/- 74ms 2024-05-10T21:57:20.194 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-05-10T21:57:20.194 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-05-10T21:57:20.206 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-05-10T21:57:20.207 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-05-10T21:57:20.241 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:20.309 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:20.371 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:20.402 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:20.403 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:20.432 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:20.433 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-05-10T21:57:20.442 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-05-10T21:57:20.496 INFO:teuthology.task.internal:Duration was 265.672863 seconds 2024-05-10T21:57:20.496 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-05-10T21:57:20.549 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-05-10T21:57:20.549 DEBUG:teuthology.orchestra.run.smithi053:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-10T21:57:20.552 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-10T21:57:20.593 INFO:teuthology.orchestra.run.smithi100.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-10T21:57:20.594 INFO:teuthology.orchestra.run.smithi053.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-10T21:57:21.030 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-05-10T21:57:21.031 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi053.front.sepia.ceph.com 2024-05-10T21:57:21.031 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:21.056 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi100.front.sepia.ceph.com 2024-05-10T21:57:21.056 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:21.084 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-05-10T21:57:21.085 DEBUG:teuthology.orchestra.run.smithi053:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-10T21:57:21.099 DEBUG:teuthology.orchestra.run.smithi100:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-10T21:57:21.153 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-05-10T21:57:21.154 DEBUG:teuthology.orchestra.run.smithi053:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-10T21:57:21.170 DEBUG:teuthology.orchestra.run.smithi100:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-10T21:57:21.293 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-05-10T21:57:21.305 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-05-10T21:57:21.305 DEBUG:teuthology.orchestra.run.smithi053:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-10T21:57:21.332 DEBUG:teuthology.orchestra.run.smithi100:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-10T21:57:21.357 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-05-10T21:57:21.368 DEBUG:teuthology.orchestra.run.smithi053:> 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-05-10T21:57:21.375 DEBUG:teuthology.orchestra.run.smithi100:> 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-05-10T21:57:21.398 INFO:teuthology.orchestra.run.smithi053.stdout:kernel.core_pattern = core 2024-05-10T21:57:21.421 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern = core 2024-05-10T21:57:21.439 DEBUG:teuthology.orchestra.run.smithi053:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-10T21:57:21.477 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:21.478 DEBUG:teuthology.orchestra.run.smithi100:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-10T21:57:21.493 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-10T21:57:21.494 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-05-10T21:57:21.505 INFO:teuthology.task.internal:Transferring archived files... 2024-05-10T21:57:21.506 DEBUG:teuthology.misc:Transferring archived files from smithi053:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742/remote/smithi053 2024-05-10T21:57:21.506 DEBUG:teuthology.orchestra.run.smithi053:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-10T21:57:21.553 DEBUG:teuthology.misc:Transferring archived files from smithi100:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742/remote/smithi100 2024-05-10T21:57:21.553 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-10T21:57:21.586 INFO:teuthology.task.internal:Removing archive directory... 2024-05-10T21:57:21.586 DEBUG:teuthology.orchestra.run.smithi053:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-10T21:57:21.590 DEBUG:teuthology.orchestra.run.smithi100:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-10T21:57:21.637 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-05-10T21:57:21.648 INFO:teuthology.task.internal:Not uploading archives. 2024-05-10T21:57:21.648 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-05-10T21:57:21.675 INFO:teuthology.task.internal:Tidying up after the test... 2024-05-10T21:57:21.675 DEBUG:teuthology.orchestra.run.smithi053:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-10T21:57:21.677 DEBUG:teuthology.orchestra.run.smithi100:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-10T21:57:21.691 INFO:teuthology.orchestra.run.smithi053.stdout: 265480 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 10 21:57 /home/ubuntu/cephtest 2024-05-10T21:57:21.692 INFO:teuthology.orchestra.run.smithi100.stdout: 265296 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 10 21:57 /home/ubuntu/cephtest 2024-05-10T21:57:21.694 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-05-10T21:57:21.723 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-05-10T21:57:21.823 INFO:teuthology.nuke:Checking targets against current locks 2024-05-10T21:57:21.852 DEBUG:teuthology.nuke:shortname: smithi053 2024-05-10T21:57:21.852 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-10T21:57:21.879 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi053.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742', '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-05-10 21:43:04.876629', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAehjbWUvW89Rm5OflHE/tCZvgFtbvt0pzeXbeKamqU/TB1VErCmYdwX/i3QH34uhFqXq0z5vhv903nvR/ecOvM='} 2024-05-10T21:57:21.883 DEBUG:teuthology.nuke:shortname: smithi100 2024-05-10T21:57:21.883 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-10T21:57:21.904 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi100.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-10_21:08:03-orch-squid-distro-default-smithi/7701742', '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-05-10 21:43:04.875145', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHRU7BWPn46Q1S1fRT3bIq9aPlVj9Jzb/55gIJV9gp4CFbvdj3xPkOTrLEOE4X3EELIq2+3LPr5oIyD98jES8tk='} 2024-05-10T21:57:21.940 INFO:teuthology.orchestra.console.smithi053:Power off 2024-05-10T21:57:21.940 DEBUG:teuthology.orchestra.console.smithi053:pexpect command: ipmitool -H smithi053.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-05-10T21:57:21.971 DEBUG:teuthology.orchestra.console.smithi053:power off output: Chassis Power Control: Down/Off 2024-05-10T21:57:21.971 DEBUG:teuthology.orchestra.console.smithi053:pexpect command: ipmitool -H smithi053.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T21:57:21.992 INFO:teuthology.orchestra.console.smithi100:Power off 2024-05-10T21:57:21.992 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-05-10T21:57:22.003 DEBUG:teuthology.orchestra.console.smithi053:check power output: Chassis Power is on 2024-05-10T21:57:22.016 DEBUG:teuthology.orchestra.console.smithi100:power off output: Chassis Power Control: Down/Off 2024-05-10T21:57:22.017 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T21:57:22.042 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is on 2024-05-10T21:57:26.004 DEBUG:teuthology.orchestra.console.smithi053:pexpect command: ipmitool -H smithi053.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T21:57:26.043 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T21:57:26.115 DEBUG:teuthology.orchestra.console.smithi053:check power output: Chassis Power is on 2024-05-10T21:57:26.153 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is on 2024-05-10T21:57:30.121 DEBUG:teuthology.orchestra.console.smithi053:pexpect command: ipmitool -H smithi053.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T21:57:30.154 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T21:57:30.231 DEBUG:teuthology.orchestra.console.smithi053:check power output: Chassis Power is off 2024-05-10T21:57:30.263 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is on 2024-05-10T21:57:30.332 INFO:teuthology.orchestra.console.smithi053:Power off completed 2024-05-10T21:57:34.266 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-10T21:57:34.377 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is off 2024-05-10T21:57:34.477 INFO:teuthology.orchestra.console.smithi100:Power off completed 2024-05-10T21:57:34.587 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-user 3-final} duration: 265.67286348342896 failure_reason: 'Command failed on smithi053 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f72fecff68e1d400c4568684327c900485c20d6a pull''' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=ac8ee6fca34f4416840a2be30a40984c status: fail success: false 2024-05-10T21:57:34.587 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-10T21:57:34.672 INFO:teuthology.run:FAIL