2024-03-21T13:20:05.718 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-03-21T13:20:05.719 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --archive /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871 --name adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi --description orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --owner scheduled_adking@teuthology -- /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871/orig.config.yaml 2024-03-21T13:20:05.752 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-21T13:20:05.828 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871 branch: wip-adk-testing-2024-03-20-2326 description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: adking@redhat.com first_in_suite: false job_id: '7614871' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-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: wip-adk-testing-2024-03-20-2326 ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-adk-testing-2024-03-20-2326 sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 owner: scheduled_adking@teuthology priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 4016 sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 sleep_before_teardown: 0 subset: 1/16 suite: orch:cephadm suite_branch: wip-adk-testing-2024-03-20-2326 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 targets: smithi082.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBN1ycpYIelgkHU9GaPuDiR67VE5Di5Z78pnauYtraSRZjLYIH6JGHYQPcOxMHZTkNgVEXaoeP3v0if0HJ3YQNIE= smithi090.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCxXsQchyBQeCifZyduhbjYT1RKm81uhAiljLFTFIOF4NInRU2dhfI2ifV0UqE4JZg0ZNAEH08+PBJkOrxbmsKI= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: e691533f9cbb33d85b2187bba20d7102f098636d timestamp: 2024-03-21_11:21:25 tube: smithi user: adking verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-03-21T13:20:05.828 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa; will attempt to use it 2024-03-21T13:20:05.829 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks 2024-03-21T13:20:05.829 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-03-21T13:20:05.831 INFO:teuthology.task.internal:Checking packages... 2024-03-21T13:20:05.852 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'ba760091cd7bd2b0d23f4825ac856ba66450e988' 2024-03-21T13:20:05.853 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-03-21T13:20:05.853 INFO:teuthology.packaging:ref: None 2024-03-21T13:20:05.853 INFO:teuthology.packaging:tag: None 2024-03-21T13:20:05.853 INFO:teuthology.packaging:branch: wip-adk-testing-2024-03-20-2326 2024-03-21T13:20:05.853 INFO:teuthology.packaging:sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 2024-03-21T13:20:05.853 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-adk-testing-2024-03-20-2326 2024-03-21T13:20:06.092 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2309.gba760091 2024-03-21T13:20:06.093 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-03-21T13:20:06.102 INFO:teuthology.task.internal:no buildpackages task found 2024-03-21T13:20:06.102 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-03-21T13:20:06.111 INFO:teuthology.task.internal:Saving configuration 2024-03-21T13:20:06.124 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-03-21T13:20:06.129 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-21T13:20:06.157 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi082.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871', '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-03-21 13:13:51.083370', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBN1ycpYIelgkHU9GaPuDiR67VE5Di5Z78pnauYtraSRZjLYIH6JGHYQPcOxMHZTkNgVEXaoeP3v0if0HJ3YQNIE='} 2024-03-21T13:20:06.181 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi090.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871', '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-03-21 13:13:51.082153', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCxXsQchyBQeCifZyduhbjYT1RKm81uhAiljLFTFIOF4NInRU2dhfI2ifV0UqE4JZg0ZNAEH08+PBJkOrxbmsKI='} 2024-03-21T13:20:06.181 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-03-21T13:20:06.188 INFO:teuthology.task.internal:roles: ubuntu@smithi082.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-03-21T13:20:06.188 INFO:teuthology.task.internal:roles: ubuntu@smithi090.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-03-21T13:20:06.188 INFO:teuthology.run_tasks:Running task console_log... 2024-03-21T13:20:06.259 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fa3e4ee5160>, signals=[15]) 2024-03-21T13:20:06.259 INFO:teuthology.run_tasks:Running task internal.connect... 2024-03-21T13:20:06.265 INFO:teuthology.task.internal:Opening connections... 2024-03-21T13:20:06.265 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi082.front.sepia.ceph.com 2024-03-21T13:20:06.267 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:20:06.357 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi090.front.sepia.ceph.com 2024-03-21T13:20:06.357 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:20:06.446 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-03-21T13:20:06.453 DEBUG:teuthology.orchestra.run.smithi082:> uname -m 2024-03-21T13:20:06.470 INFO:teuthology.orchestra.run.smithi082.stdout:x86_64 2024-03-21T13:20:06.470 DEBUG:teuthology.orchestra.run.smithi082:> cat /etc/os-release 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:NAME="CentOS Stream" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:VERSION="9" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:ID="centos" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:ID_LIKE="rhel fedora" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:VERSION_ID="9" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:PLATFORM_ID="platform:el9" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:PRETTY_NAME="CentOS Stream 9" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:ANSI_COLOR="0;31" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:LOGO="fedora-logo-icon" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:HOME_URL="https://centos.org/" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-03-21T13:20:06.527 INFO:teuthology.orchestra.run.smithi082.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-03-21T13:20:06.528 INFO:teuthology.orchestra.run.smithi082.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-03-21T13:20:06.528 INFO:teuthology.lock.ops:Updating smithi082.front.sepia.ceph.com on lock server 2024-03-21T13:20:06.549 DEBUG:teuthology.orchestra.run.smithi090:> uname -m 2024-03-21T13:20:06.566 INFO:teuthology.orchestra.run.smithi090.stdout:x86_64 2024-03-21T13:20:06.566 DEBUG:teuthology.orchestra.run.smithi090:> cat /etc/os-release 2024-03-21T13:20:06.622 INFO:teuthology.orchestra.run.smithi090.stdout:NAME="CentOS Stream" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:VERSION="9" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:ID="centos" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:ID_LIKE="rhel fedora" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:VERSION_ID="9" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:PLATFORM_ID="platform:el9" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:PRETTY_NAME="CentOS Stream 9" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:ANSI_COLOR="0;31" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:LOGO="fedora-logo-icon" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:HOME_URL="https://centos.org/" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-03-21T13:20:06.623 INFO:teuthology.orchestra.run.smithi090.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-03-21T13:20:06.624 INFO:teuthology.lock.ops:Updating smithi090.front.sepia.ceph.com on lock server 2024-03-21T13:20:06.640 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-03-21T13:20:06.648 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-03-21T13:20:06.743 INFO:teuthology.task.internal:Checking for old test directory... 2024-03-21T13:20:06.744 DEBUG:teuthology.orchestra.run.smithi082:> test '!' -e /home/ubuntu/cephtest 2024-03-21T13:20:06.746 DEBUG:teuthology.orchestra.run.smithi090:> test '!' -e /home/ubuntu/cephtest 2024-03-21T13:20:06.762 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-03-21T13:20:06.769 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-03-21T13:20:06.769 DEBUG:teuthology.orchestra.run.smithi082:> test -z $(ls -A /var/lib/ceph) 2024-03-21T13:20:06.803 DEBUG:teuthology.orchestra.run.smithi090:> test -z $(ls -A /var/lib/ceph) 2024-03-21T13:20:06.890 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-03-21T13:20:06.947 INFO:teuthology.run_tasks:Running task kernel... 2024-03-21T13:20:06.960 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-03-21T13:20:06.961 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-03-21T13:20:06.961 DEBUG:teuthology.orchestra.run.smithi082:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-21T13:20:06.961 DEBUG:teuthology.orchestra.run.smithi090:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-21T13:20:06.978 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:20:06.978 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:20:06.978 DEBUG:teuthology.orchestra.run.smithi082:> uname -r 2024-03-21T13:20:06.979 DEBUG:teuthology.orchestra.run.smithi090:> uname -r 2024-03-21T13:20:07.034 INFO:teuthology.orchestra.run.smithi082.stdout:5.14.0-361.el9.x86_64 2024-03-21T13:20:07.035 INFO:teuthology.task.kernel:Running kernel on smithi082: 5.14.0-361.el9.x86_64 2024-03-21T13:20:07.035 DEBUG:teuthology.orchestra.run.smithi082:> sudo yum install -y kernel 2024-03-21T13:20:07.036 INFO:teuthology.orchestra.run.smithi090.stdout:5.14.0-361.el9.x86_64 2024-03-21T13:20:07.036 INFO:teuthology.task.kernel:Running kernel on smithi090: 5.14.0-361.el9.x86_64 2024-03-21T13:20:07.036 DEBUG:teuthology.orchestra.run.smithi090:> sudo yum install -y kernel 2024-03-21T13:20:09.107 INFO:teuthology.orchestra.run.smithi082.stdout:CentOS-9 - AppStream 14 MB/s | 6.7 MB 00:00 2024-03-21T13:20:09.487 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS-9 - AppStream 14 MB/s | 6.7 MB 00:00 2024-03-21T13:20:10.533 INFO:teuthology.orchestra.run.smithi082.stdout:CentOS-9 - BaseOS 6.3 MB/s | 2.0 MB 00:00 2024-03-21T13:20:10.929 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS-9 - BaseOS 6.3 MB/s | 2.0 MB 00:00 2024-03-21T13:20:11.324 INFO:teuthology.orchestra.run.smithi082.stdout:CentOS Stream 9 - BaseOS 17 MB/s | 8.0 MB 00:00 2024-03-21T13:20:12.012 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.0 MB 00:00 2024-03-21T13:20:14.116 INFO:teuthology.orchestra.run.smithi082.stdout:CentOS Stream 9 - AppStream 11 MB/s | 19 MB 00:01 2024-03-21T13:20:16.189 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - AppStream 6.0 MB/s | 19 MB 00:03 2024-03-21T13:20:19.725 INFO:teuthology.orchestra.run.smithi082.stdout:CentOS Stream 9 - CRB 2.8 MB/s | 6.1 MB 00:02 2024-03-21T13:20:20.498 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - CRB 8.7 MB/s | 6.1 MB 00:00 2024-03-21T13:20:21.175 INFO:teuthology.orchestra.run.smithi082.stdout:CentOS Stream 9 - Extras packages 49 kB/s | 16 kB 00:00 2024-03-21T13:20:22.058 INFO:teuthology.orchestra.run.smithi090.stdout:CentOS Stream 9 - Extras packages 38 kB/s | 16 kB 00:00 2024-03-21T13:20:22.576 INFO:teuthology.orchestra.run.smithi082.stdout:Extra Packages for Enterprise Linux 16 MB/s | 21 MB 00:01 2024-03-21T13:20:22.936 INFO:teuthology.orchestra.run.smithi090.stdout:Extra Packages for Enterprise Linux 27 MB/s | 21 MB 00:00 2024-03-21T13:20:27.392 INFO:teuthology.orchestra.run.smithi082.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-03-21T13:20:27.945 INFO:teuthology.orchestra.run.smithi090.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-03-21T13:20:29.491 INFO:teuthology.orchestra.run.smithi082.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-03-21T13:20:29.491 INFO:teuthology.orchestra.run.smithi082.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-03-21T13:20:29.575 INFO:teuthology.orchestra.run.smithi082.stdout:Dependencies resolved. 2024-03-21T13:20:29.583 INFO:teuthology.orchestra.run.smithi082.stdout:================================================================================ 2024-03-21T13:20:29.583 INFO:teuthology.orchestra.run.smithi082.stdout: Package Architecture Version Repository Size 2024-03-21T13:20:29.583 INFO:teuthology.orchestra.run.smithi082.stdout:================================================================================ 2024-03-21T13:20:29.583 INFO:teuthology.orchestra.run.smithi082.stdout:Installing: 2024-03-21T13:20:29.583 INFO:teuthology.orchestra.run.smithi082.stdout: kernel x86_64 5.14.0-430.el9 baseos 44 k 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout:Installing dependencies: 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout: kernel-core x86_64 5.14.0-430.el9 baseos 15 M 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout: kernel-modules x86_64 5.14.0-430.el9 baseos 33 M 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout: kernel-modules-core x86_64 5.14.0-430.el9 baseos 27 M 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout:Transaction Summary 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout:================================================================================ 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout:Install 4 Packages 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-03-21T13:20:29.584 INFO:teuthology.orchestra.run.smithi082.stdout:Total download size: 76 M 2024-03-21T13:20:29.585 INFO:teuthology.orchestra.run.smithi082.stdout:Installed size: 123 M 2024-03-21T13:20:29.585 INFO:teuthology.orchestra.run.smithi082.stdout:Downloading Packages: 2024-03-21T13:20:29.735 INFO:teuthology.orchestra.run.smithi082.stdout:(1/4): kernel-5.14.0-430.el9.x86_64.rpm 421 kB/s | 44 kB 00:00 2024-03-21T13:20:30.060 INFO:teuthology.orchestra.run.smithi090.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-03-21T13:20:30.060 INFO:teuthology.orchestra.run.smithi090.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-03-21T13:20:30.175 INFO:teuthology.orchestra.run.smithi090.stdout:Dependencies resolved. 2024-03-21T13:20:30.180 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-03-21T13:20:30.180 INFO:teuthology.orchestra.run.smithi090.stdout: Package Architecture Version Repository Size 2024-03-21T13:20:30.180 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-03-21T13:20:30.180 INFO:teuthology.orchestra.run.smithi090.stdout:Installing: 2024-03-21T13:20:30.180 INFO:teuthology.orchestra.run.smithi090.stdout: kernel x86_64 5.14.0-430.el9 baseos 44 k 2024-03-21T13:20:30.180 INFO:teuthology.orchestra.run.smithi090.stdout:Installing dependencies: 2024-03-21T13:20:30.180 INFO:teuthology.orchestra.run.smithi090.stdout: kernel-core x86_64 5.14.0-430.el9 baseos 15 M 2024-03-21T13:20:30.181 INFO:teuthology.orchestra.run.smithi090.stdout: kernel-modules x86_64 5.14.0-430.el9 baseos 33 M 2024-03-21T13:20:30.181 INFO:teuthology.orchestra.run.smithi090.stdout: kernel-modules-core x86_64 5.14.0-430.el9 baseos 27 M 2024-03-21T13:20:30.181 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-03-21T13:20:30.181 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction Summary 2024-03-21T13:20:30.181 INFO:teuthology.orchestra.run.smithi090.stdout:================================================================================ 2024-03-21T13:20:30.181 INFO:teuthology.orchestra.run.smithi090.stdout:Install 4 Packages 2024-03-21T13:20:30.181 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-03-21T13:20:30.181 INFO:teuthology.orchestra.run.smithi090.stdout:Total download size: 76 M 2024-03-21T13:20:30.182 INFO:teuthology.orchestra.run.smithi090.stdout:Installed size: 123 M 2024-03-21T13:20:30.182 INFO:teuthology.orchestra.run.smithi090.stdout:Downloading Packages: 2024-03-21T13:20:30.369 INFO:teuthology.orchestra.run.smithi082.stdout:(2/4): kernel-core-5.14.0-430.el9.x86_64.rpm 20 MB/s | 15 MB 00:00 2024-03-21T13:20:30.463 INFO:teuthology.orchestra.run.smithi090.stdout:(1/4): kernel-5.14.0-430.el9.x86_64.rpm 204 kB/s | 44 kB 00:00 2024-03-21T13:20:31.002 INFO:teuthology.orchestra.run.smithi082.stdout:(3/4): kernel-modules-core-5.14.0-430.el9.x86_6 22 MB/s | 27 MB 00:01 2024-03-21T13:20:31.302 INFO:teuthology.orchestra.run.smithi082.stdout:(4/4): kernel-modules-5.14.0-430.el9.x86_64.rpm 20 MB/s | 33 MB 00:01 2024-03-21T13:20:31.303 INFO:teuthology.orchestra.run.smithi082.stdout:-------------------------------------------------------------------------------- 2024-03-21T13:20:31.303 INFO:teuthology.orchestra.run.smithi082.stdout:Total 44 MB/s | 76 MB 00:01 2024-03-21T13:20:31.965 INFO:teuthology.orchestra.run.smithi082.stdout:Running transaction check 2024-03-21T13:20:32.328 INFO:teuthology.orchestra.run.smithi082.stdout:Transaction check succeeded. 2024-03-21T13:20:32.328 INFO:teuthology.orchestra.run.smithi082.stdout:Running transaction test 2024-03-21T13:20:32.622 INFO:teuthology.orchestra.run.smithi090.stdout:(2/4): kernel-core-5.14.0-430.el9.x86_64.rpm 6.3 MB/s | 15 MB 00:02 2024-03-21T13:20:33.338 INFO:teuthology.orchestra.run.smithi082.stdout:Transaction test succeeded. 2024-03-21T13:20:33.339 INFO:teuthology.orchestra.run.smithi082.stdout:Running transaction 2024-03-21T13:20:33.914 INFO:teuthology.orchestra.run.smithi090.stdout:(3/4): kernel-modules-core-5.14.0-430.el9.x86_6 8.0 MB/s | 27 MB 00:03 2024-03-21T13:20:34.822 INFO:teuthology.orchestra.run.smithi090.stdout:(4/4): kernel-modules-5.14.0-430.el9.x86_64.rpm 7.3 MB/s | 33 MB 00:04 2024-03-21T13:20:34.823 INFO:teuthology.orchestra.run.smithi090.stdout:-------------------------------------------------------------------------------- 2024-03-21T13:20:34.823 INFO:teuthology.orchestra.run.smithi090.stdout:Total 16 MB/s | 76 MB 00:04 2024-03-21T13:20:35.484 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction check 2024-03-21T13:20:35.818 INFO:teuthology.orchestra.run.smithi082.stdout: Preparing : 1/1 2024-03-21T13:20:35.869 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction check succeeded. 2024-03-21T13:20:35.869 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction test 2024-03-21T13:20:36.482 INFO:teuthology.orchestra.run.smithi082.stdout: Installing : kernel-modules-core-5.14.0-430.el9.x86_64 1/4 2024-03-21T13:20:36.577 INFO:teuthology.orchestra.run.smithi082.stdout: Installing : kernel-core-5.14.0-430.el9.x86_64 2/4 2024-03-21T13:20:36.912 INFO:teuthology.orchestra.run.smithi090.stdout:Transaction test succeeded. 2024-03-21T13:20:36.913 INFO:teuthology.orchestra.run.smithi090.stdout:Running transaction 2024-03-21T13:20:39.338 INFO:teuthology.orchestra.run.smithi082.stdout: Running scriptlet: kernel-core-5.14.0-430.el9.x86_64 2/4 2024-03-21T13:20:39.472 INFO:teuthology.orchestra.run.smithi082.stdout: Installing : kernel-modules-5.14.0-430.el9.x86_64 3/4 2024-03-21T13:20:39.481 INFO:teuthology.orchestra.run.smithi090.stdout: Preparing : 1/1 2024-03-21T13:20:40.140 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : kernel-modules-core-5.14.0-430.el9.x86_64 1/4 2024-03-21T13:20:40.221 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : kernel-core-5.14.0-430.el9.x86_64 2/4 2024-03-21T13:20:42.953 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: kernel-core-5.14.0-430.el9.x86_64 2/4 2024-03-21T13:20:43.098 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : kernel-modules-5.14.0-430.el9.x86_64 3/4 2024-03-21T13:20:44.153 INFO:teuthology.orchestra.run.smithi082.stdout: Running scriptlet: kernel-modules-5.14.0-430.el9.x86_64 3/4 2024-03-21T13:20:44.297 INFO:teuthology.orchestra.run.smithi082.stdout: Installing : kernel-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:20:47.784 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: kernel-modules-5.14.0-430.el9.x86_64 3/4 2024-03-21T13:20:47.825 INFO:teuthology.orchestra.run.smithi090.stdout: Installing : kernel-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:20:48.987 INFO:teuthology.orchestra.run.smithi082.stdout: Running scriptlet: kernel-modules-core-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:20:52.523 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: kernel-modules-core-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:18.277 INFO:teuthology.orchestra.run.smithi082.stdout: Running scriptlet: kernel-core-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:18.277 INFO:teuthology.orchestra.run.smithi082.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-03-21T13:21:18.277 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-03-21T13:21:18.321 INFO:teuthology.orchestra.run.smithi082.stdout: Running scriptlet: kernel-modules-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:18.735 INFO:teuthology.orchestra.run.smithi082.stdout: Running scriptlet: kernel-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:18.735 INFO:teuthology.orchestra.run.smithi082.stdout: Verifying : kernel-5.14.0-430.el9.x86_64 1/4 2024-03-21T13:21:18.735 INFO:teuthology.orchestra.run.smithi082.stdout: Verifying : kernel-core-5.14.0-430.el9.x86_64 2/4 2024-03-21T13:21:18.735 INFO:teuthology.orchestra.run.smithi082.stdout: Verifying : kernel-modules-5.14.0-430.el9.x86_64 3/4 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout: Verifying : kernel-modules-core-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout:Installed: 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout: kernel-5.14.0-430.el9.x86_64 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout: kernel-core-5.14.0-430.el9.x86_64 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout: kernel-modules-5.14.0-430.el9.x86_64 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout: kernel-modules-core-5.14.0-430.el9.x86_64 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-03-21T13:21:19.162 INFO:teuthology.orchestra.run.smithi082.stdout:Complete! 2024-03-21T13:21:19.467 DEBUG:teuthology.orchestra.run.smithi082:> rpm -q kernel | sort -rV | head -n 1 2024-03-21T13:21:19.568 INFO:teuthology.orchestra.run.smithi082.stdout:kernel-5.14.0-430.el9.x86_64 2024-03-21T13:21:19.568 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-430.el9.x86_64 2024-03-21T13:21:19.568 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-430.el9.x86_64 2024-03-21T13:21:19.569 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-21T13:21:19.569 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-21T13:21:19.569 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-03-21T13:21:19.569 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi082.front.sepia.ceph.com, path=None, version=distro) 2024-03-21T13:21:19.569 DEBUG:teuthology.orchestra.run.smithi082:> rpm -q kernel | sort -rV | head -n 1 2024-03-21T13:21:19.650 INFO:teuthology.orchestra.run.smithi082.stdout:kernel-5.14.0-430.el9.x86_64 2024-03-21T13:21:19.650 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-430.el9.x86_64 2024-03-21T13:21:19.650 DEBUG:teuthology.orchestra.run.smithi082:> sudo rpm -qi grub2-tools 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:Name : grub2-tools 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:Epoch : 1 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:Version : 2.06 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:Release : 68.el9 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:Architecture: x86_64 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:Group : Unspecified 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:Size : 8264254 2024-03-21T13:21:19.685 INFO:teuthology.orchestra.run.smithi082.stdout:License : GPLv3+ 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:Packager : builder@centos.org 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:Vendor : CentOS 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:URL : http://www.gnu.org/software/grub/ 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:Summary : Support tools for GRUB. 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:Description : 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:customizable bootloader with modular architecture. It supports a rich 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:variety of kernel formats, file systems, computer architectures and 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout:hardware devices. 2024-03-21T13:21:19.686 INFO:teuthology.orchestra.run.smithi082.stdout: 2024-03-21T13:21:19.687 INFO:teuthology.orchestra.run.smithi082.stdout:This subpackage provides tools for support of all platforms. 2024-03-21T13:21:19.687 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-03-21T13:21:19.687 INFO:teuthology.task.kernel:Updating grub on smithi082 to boot 5.14.0-430.el9.x86_64 2024-03-21T13:21:19.688 DEBUG:teuthology.orchestra.run.smithi082:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-03-21T13:21:20.335 INFO:teuthology.orchestra.run.smithi082.stderr:Generating grub configuration file ... 2024-03-21T13:21:21.758 INFO:teuthology.orchestra.run.smithi082.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-03-21T13:21:21.790 INFO:teuthology.orchestra.run.smithi082.stderr:done 2024-03-21T13:21:21.792 DEBUG:teuthology.orchestra.run.smithi082:> mktemp 2024-03-21T13:21:21.848 INFO:teuthology.orchestra.run.smithi082.stdout:/tmp/tmp.rIoloyCt7N 2024-03-21T13:21:21.848 DEBUG:teuthology.orchestra.run.smithi082:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.rIoloyCt7N 2024-03-21T13:21:21.917 DEBUG:teuthology.orchestra.run.smithi082:> sudo chmod 0666 /tmp/tmp.rIoloyCt7N 2024-03-21T13:21:22.057 DEBUG:teuthology.orchestra.remote:smithi082:/tmp/tmp.rIoloyCt7N is 6KB 2024-03-21T13:21:22.105 DEBUG:teuthology.orchestra.run.smithi082:> rm -fr /tmp/tmp.rIoloyCt7N 2024-03-21T13:21:22.119 DEBUG:teuthology.orchestra.run.smithi082:> sudo /bin/ls /boot/loader/entries || true 2024-03-21T13:21:22.184 INFO:teuthology.orchestra.run.smithi082.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-03-21T13:21:22.184 INFO:teuthology.orchestra.run.smithi082.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-03-21T13:21:22.184 INFO:teuthology.orchestra.run.smithi082.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-03-21T13:21:22.184 INFO:teuthology.orchestra.run.smithi082.stdout:15949e3c88704300882482eddfd7baae-5.14.0-430.el9.x86_64.conf 2024-03-21T13:21:22.186 DEBUG:teuthology.orchestra.run.smithi082:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-430.el9.x86_64 2024-03-21T13:21:22.341 DEBUG:teuthology.orchestra.run.smithi082:> sudo shutdown -r now 2024-03-21T13:21:22.749 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: kernel-core-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:22.749 INFO:teuthology.orchestra.run.smithi090.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-03-21T13:21:22.749 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-03-21T13:21:22.792 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: kernel-modules-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:23.282 INFO:teuthology.orchestra.run.smithi090.stdout: Running scriptlet: kernel-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:23.282 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : kernel-5.14.0-430.el9.x86_64 1/4 2024-03-21T13:21:23.282 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : kernel-core-5.14.0-430.el9.x86_64 2/4 2024-03-21T13:21:23.283 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : kernel-modules-5.14.0-430.el9.x86_64 3/4 2024-03-21T13:21:23.741 INFO:teuthology.orchestra.run.smithi090.stdout: Verifying : kernel-modules-core-5.14.0-430.el9.x86_64 4/4 2024-03-21T13:21:23.741 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-03-21T13:21:23.741 INFO:teuthology.orchestra.run.smithi090.stdout:Installed: 2024-03-21T13:21:23.741 INFO:teuthology.orchestra.run.smithi090.stdout: kernel-5.14.0-430.el9.x86_64 2024-03-21T13:21:23.741 INFO:teuthology.orchestra.run.smithi090.stdout: kernel-core-5.14.0-430.el9.x86_64 2024-03-21T13:21:23.741 INFO:teuthology.orchestra.run.smithi090.stdout: kernel-modules-5.14.0-430.el9.x86_64 2024-03-21T13:21:23.741 INFO:teuthology.orchestra.run.smithi090.stdout: kernel-modules-core-5.14.0-430.el9.x86_64 2024-03-21T13:21:23.741 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-03-21T13:21:23.742 INFO:teuthology.orchestra.run.smithi090.stdout:Complete! 2024-03-21T13:21:24.142 DEBUG:teuthology.orchestra.run.smithi090:> rpm -q kernel | sort -rV | head -n 1 2024-03-21T13:21:24.253 INFO:teuthology.orchestra.run.smithi090.stdout:kernel-5.14.0-430.el9.x86_64 2024-03-21T13:21:24.254 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-430.el9.x86_64 2024-03-21T13:21:24.254 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-430.el9.x86_64 2024-03-21T13:21:24.254 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-21T13:21:24.254 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-21T13:21:24.254 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-03-21T13:21:24.254 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi090.front.sepia.ceph.com, path=None, version=distro) 2024-03-21T13:21:24.254 DEBUG:teuthology.orchestra.run.smithi090:> rpm -q kernel | sort -rV | head -n 1 2024-03-21T13:21:24.333 INFO:teuthology.orchestra.run.smithi090.stdout:kernel-5.14.0-430.el9.x86_64 2024-03-21T13:21:24.334 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-430.el9.x86_64 2024-03-21T13:21:24.334 DEBUG:teuthology.orchestra.run.smithi090:> sudo rpm -qi grub2-tools 2024-03-21T13:21:24.367 INFO:teuthology.orchestra.run.smithi090.stdout:Name : grub2-tools 2024-03-21T13:21:24.367 INFO:teuthology.orchestra.run.smithi090.stdout:Epoch : 1 2024-03-21T13:21:24.367 INFO:teuthology.orchestra.run.smithi090.stdout:Version : 2.06 2024-03-21T13:21:24.367 INFO:teuthology.orchestra.run.smithi090.stdout:Release : 68.el9 2024-03-21T13:21:24.367 INFO:teuthology.orchestra.run.smithi090.stdout:Architecture: x86_64 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Group : Unspecified 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Size : 8264254 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:License : GPLv3+ 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Packager : builder@centos.org 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Vendor : CentOS 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:URL : http://www.gnu.org/software/grub/ 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Summary : Support tools for GRUB. 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:Description : 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-03-21T13:21:24.368 INFO:teuthology.orchestra.run.smithi090.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-03-21T13:21:24.369 INFO:teuthology.orchestra.run.smithi090.stdout:customizable bootloader with modular architecture. It supports a rich 2024-03-21T13:21:24.369 INFO:teuthology.orchestra.run.smithi090.stdout:variety of kernel formats, file systems, computer architectures and 2024-03-21T13:21:24.369 INFO:teuthology.orchestra.run.smithi090.stdout:hardware devices. 2024-03-21T13:21:24.369 INFO:teuthology.orchestra.run.smithi090.stdout: 2024-03-21T13:21:24.369 INFO:teuthology.orchestra.run.smithi090.stdout:This subpackage provides tools for support of all platforms. 2024-03-21T13:21:24.370 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-03-21T13:21:24.370 INFO:teuthology.task.kernel:Updating grub on smithi090 to boot 5.14.0-430.el9.x86_64 2024-03-21T13:21:24.370 DEBUG:teuthology.orchestra.run.smithi090:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-03-21T13:21:25.078 INFO:teuthology.orchestra.run.smithi090.stderr:Generating grub configuration file ... 2024-03-21T13:21:26.821 INFO:teuthology.orchestra.run.smithi090.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-03-21T13:21:26.841 INFO:teuthology.orchestra.run.smithi090.stderr:done 2024-03-21T13:21:26.844 DEBUG:teuthology.orchestra.run.smithi090:> mktemp 2024-03-21T13:21:26.906 INFO:teuthology.orchestra.run.smithi090.stdout:/tmp/tmp.oLsWDozv0b 2024-03-21T13:21:26.906 DEBUG:teuthology.orchestra.run.smithi090:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.oLsWDozv0b 2024-03-21T13:21:26.933 DEBUG:teuthology.orchestra.run.smithi090:> sudo chmod 0666 /tmp/tmp.oLsWDozv0b 2024-03-21T13:21:27.082 DEBUG:teuthology.orchestra.remote:smithi090:/tmp/tmp.oLsWDozv0b is 6KB 2024-03-21T13:21:27.130 DEBUG:teuthology.orchestra.run.smithi090:> rm -fr /tmp/tmp.oLsWDozv0b 2024-03-21T13:21:27.144 DEBUG:teuthology.orchestra.run.smithi090:> sudo /bin/ls /boot/loader/entries || true 2024-03-21T13:21:27.213 INFO:teuthology.orchestra.run.smithi090.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-03-21T13:21:27.213 INFO:teuthology.orchestra.run.smithi090.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-03-21T13:21:27.213 INFO:teuthology.orchestra.run.smithi090.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-03-21T13:21:27.213 INFO:teuthology.orchestra.run.smithi090.stdout:15949e3c88704300882482eddfd7baae-5.14.0-430.el9.x86_64.conf 2024-03-21T13:21:27.214 DEBUG:teuthology.orchestra.run.smithi090:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-430.el9.x86_64 2024-03-21T13:21:27.362 DEBUG:teuthology.orchestra.run.smithi090:> sudo shutdown -r now 2024-03-21T13:21:52.366 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-03-21T13:21:52.367 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-03-21T13:21:52.368 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:21:57.368 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-03-21T13:21:57.368 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-03-21T13:21:57.369 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:10.846 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.82 2024-03-21T13:22:15.710 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.90 2024-03-21T13:22:19.850 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-03-21T13:22:19.851 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:22.910 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.82 2024-03-21T13:22:24.713 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-03-21T13:22:24.736 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:27.806 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.90 2024-03-21T13:22:34.914 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-03-21T13:22:34.915 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:39.812 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-03-21T13:22:39.813 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:42.878 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.90 2024-03-21T13:22:53.345 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.82 2024-03-21T13:22:57.882 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-03-21T13:22:57.883 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:23:08.346 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-03-21T13:23:08.347 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:23:08.814 DEBUG:teuthology.orchestra.run.smithi082:> true 2024-03-21T13:23:09.315 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-03-21T13:23:09.315 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-430.el9.x86_64"... 2024-03-21T13:23:09.315 DEBUG:teuthology.orchestra.run.smithi082:> uname -r 2024-03-21T13:23:09.342 INFO:teuthology.orchestra.run.smithi082.stdout:5.14.0-430.el9.x86_64 2024-03-21T13:23:09.343 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-430.el9.x86_64 vs 5.14.0-430.el9.x86_64 2024-03-21T13:23:09.343 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-21T13:23:09.343 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-03-21T13:23:10.343 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-03-21T13:23:10.344 DEBUG:teuthology.orchestra.run.smithi082:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-21T13:23:10.429 INFO:teuthology.orchestra.run.smithi082.stdout:ttyS1 2024-03-21T13:23:10.660 DEBUG:teuthology.parallel:result is None 2024-03-21T13:23:16.382 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.90 2024-03-21T13:23:34.383 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-03-21T13:23:34.384 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:23:35.010 DEBUG:teuthology.orchestra.run.smithi090:> true 2024-03-21T13:23:35.537 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-03-21T13:23:35.537 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-430.el9.x86_64"... 2024-03-21T13:23:35.537 DEBUG:teuthology.orchestra.run.smithi090:> uname -r 2024-03-21T13:23:35.551 INFO:teuthology.orchestra.run.smithi090.stdout:5.14.0-430.el9.x86_64 2024-03-21T13:23:35.551 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-430.el9.x86_64 vs 5.14.0-430.el9.x86_64 2024-03-21T13:23:35.551 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-21T13:23:35.551 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-03-21T13:23:36.552 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-03-21T13:23:36.553 DEBUG:teuthology.orchestra.run.smithi090:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-21T13:23:36.657 INFO:teuthology.orchestra.run.smithi090.stdout:ttyS1 2024-03-21T13:23:36.705 DEBUG:teuthology.parallel:result is None 2024-03-21T13:23:36.705 INFO:teuthology.run_tasks:Running task internal.base... 2024-03-21T13:23:36.712 INFO:teuthology.task.internal:Creating test directory... 2024-03-21T13:23:36.713 DEBUG:teuthology.orchestra.run.smithi082:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-21T13:23:36.715 DEBUG:teuthology.orchestra.run.smithi090:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-21T13:23:36.731 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-03-21T13:23:36.737 INFO:teuthology.run_tasks:Running task internal.archive... 2024-03-21T13:23:36.747 INFO:teuthology.task.internal:Creating archive directory... 2024-03-21T13:23:36.748 DEBUG:teuthology.orchestra.run.smithi082:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-21T13:23:36.773 DEBUG:teuthology.orchestra.run.smithi090:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-21T13:23:36.802 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-03-21T13:23:36.808 INFO:teuthology.task.internal:Enabling coredump saving... 2024-03-21T13:23:36.808 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:23:36.840 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:23:36.876 INFO:teuthology.orchestra.run.smithi082.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-21T13:23:36.887 INFO:teuthology.orchestra.run.smithi090.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-21T13:23:36.897 INFO:teuthology.orchestra.run.smithi082.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-21T13:23:36.900 INFO:teuthology.orchestra.run.smithi090.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-21T13:23:36.902 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-03-21T13:23:36.919 INFO:teuthology.task.internal:Configuring sudo... 2024-03-21T13:23:36.920 DEBUG:teuthology.orchestra.run.smithi082:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-21T13:23:36.945 DEBUG:teuthology.orchestra.run.smithi090:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-21T13:23:36.973 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-03-21T13:23:36.991 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-03-21T13:23:36.992 DEBUG:teuthology.orchestra.run.smithi082:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-21T13:23:37.021 DEBUG:teuthology.orchestra.run.smithi090:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-21T13:23:37.036 DEBUG:teuthology.orchestra.run.smithi082:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-21T13:23:37.124 DEBUG:teuthology.orchestra.run.smithi082:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-21T13:23:37.173 DEBUG:teuthology.orchestra.run.smithi082:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-21T13:23:37.257 DEBUG:teuthology.orchestra.run.smithi082:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-21T13:23:37.299 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-03-21T13:23:37.299 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-21T13:23:37.366 DEBUG:teuthology.orchestra.run.smithi090:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-21T13:23:37.411 DEBUG:teuthology.orchestra.run.smithi090:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-21T13:23:37.465 DEBUG:teuthology.orchestra.run.smithi090:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-21T13:23:37.546 DEBUG:teuthology.orchestra.run.smithi090:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-21T13:23:37.589 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-03-21T13:23:37.589 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-21T13:23:37.656 DEBUG:teuthology.orchestra.run.smithi082:> sudo service rsyslog restart 2024-03-21T13:23:37.659 DEBUG:teuthology.orchestra.run.smithi090:> sudo service rsyslog restart 2024-03-21T13:23:37.707 INFO:teuthology.orchestra.run.smithi082.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-03-21T13:23:37.881 INFO:teuthology.orchestra.run.smithi090.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-03-21T13:23:38.276 INFO:teuthology.run_tasks:Running task internal.timer... 2024-03-21T13:23:38.284 INFO:teuthology.task.internal:Starting timer... 2024-03-21T13:23:38.284 INFO:teuthology.run_tasks:Running task pcp... 2024-03-21T13:23:38.312 INFO:teuthology.run_tasks:Running task selinux... 2024-03-21T13:23:38.321 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-03-21T13:23:38.321 DEBUG:teuthology.orchestra.run.smithi082:> sudo service auditd rotate 2024-03-21T13:23:38.384 INFO:teuthology.orchestra.run.smithi082.stdout:Rotating logs: 2024-03-21T13:23:38.386 DEBUG:teuthology.orchestra.run.smithi090:> sudo service auditd rotate 2024-03-21T13:23:38.470 INFO:teuthology.orchestra.run.smithi090.stdout:Rotating logs: 2024-03-21T13:23:38.473 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-03-21T13:23:38.473 DEBUG:teuthology.orchestra.run.smithi082:> /usr/sbin/getenforce 2024-03-21T13:23:38.491 INFO:teuthology.orchestra.run.smithi082.stdout:Permissive 2024-03-21T13:23:38.492 DEBUG:teuthology.orchestra.run.smithi090:> /usr/sbin/getenforce 2024-03-21T13:23:38.521 INFO:teuthology.orchestra.run.smithi090.stdout:Permissive 2024-03-21T13:23:38.521 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi082.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi090.front.sepia.ceph.com': 'permissive'} 2024-03-21T13:23:38.521 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:23:38.560 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:23:38.561 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:23:38.612 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:23:38.612 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-03-21T13:23:38.612 DEBUG:teuthology.orchestra.run.smithi082:> sudo /usr/sbin/setenforce permissive 2024-03-21T13:23:38.643 DEBUG:teuthology.orchestra.run.smithi090:> sudo /usr/sbin/setenforce permissive 2024-03-21T13:23:38.696 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-03-21T13:23:38.709 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-03-21T13:23:38.727 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-03-21T13:23:38.728 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi082.front.sepia.ceph.com,smithi090.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-03-21T13:27:54.592 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi082.front.sepia.ceph.com'), Remote(name='ubuntu@smithi090.front.sepia.ceph.com')] 2024-03-21T13:27:54.594 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-03-21T13:27:54.595 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi082.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:27:54.686 DEBUG:teuthology.orchestra.run.smithi082:> true 2024-03-21T13:27:54.761 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi082.front.sepia.ceph.com' 2024-03-21T13:27:54.761 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-03-21T13:27:54.762 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:27:54.862 DEBUG:teuthology.orchestra.run.smithi090:> true 2024-03-21T13:27:54.946 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi090.front.sepia.ceph.com' 2024-03-21T13:27:54.946 INFO:teuthology.run_tasks:Running task clock... 2024-03-21T13:27:54.957 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-03-21T13:27:54.957 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-21T13:27:54.957 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:27:54.960 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-21T13:27:54.960 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:27:54.989 INFO:teuthology.orchestra.run.smithi082.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-03-21T13:27:55.005 INFO:teuthology.orchestra.run.smithi082.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-03-21T13:27:55.017 INFO:teuthology.orchestra.run.smithi090.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-03-21T13:27:55.033 INFO:teuthology.orchestra.run.smithi082.stderr:sudo: ntpd: command not found 2024-03-21T13:27:55.034 INFO:teuthology.orchestra.run.smithi090.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-03-21T13:27:55.047 INFO:teuthology.orchestra.run.smithi082.stdout:506 Cannot talk to daemon 2024-03-21T13:27:55.063 INFO:teuthology.orchestra.run.smithi082.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-03-21T13:27:55.063 INFO:teuthology.orchestra.run.smithi090.stderr:sudo: ntpd: command not found 2024-03-21T13:27:55.077 INFO:teuthology.orchestra.run.smithi090.stdout:506 Cannot talk to daemon 2024-03-21T13:27:55.079 INFO:teuthology.orchestra.run.smithi082.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-03-21T13:27:55.093 INFO:teuthology.orchestra.run.smithi090.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-03-21T13:27:55.109 INFO:teuthology.orchestra.run.smithi090.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-03-21T13:27:55.131 INFO:teuthology.orchestra.run.smithi082.stderr:bash: line 1: ntpq: command not found 2024-03-21T13:27:55.139 INFO:teuthology.orchestra.run.smithi082.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-03-21T13:27:55.139 INFO:teuthology.orchestra.run.smithi082.stdout:=============================================================================== 2024-03-21T13:27:55.139 INFO:teuthology.orchestra.run.smithi082.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:27:55.139 INFO:teuthology.orchestra.run.smithi082.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:27:55.139 INFO:teuthology.orchestra.run.smithi082.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:27:55.139 INFO:teuthology.orchestra.run.smithi082.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:27:55.160 INFO:teuthology.orchestra.run.smithi090.stderr:bash: line 1: ntpq: command not found 2024-03-21T13:27:55.168 INFO:teuthology.orchestra.run.smithi090.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-03-21T13:27:55.168 INFO:teuthology.orchestra.run.smithi090.stdout:=============================================================================== 2024-03-21T13:27:55.168 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:27:55.168 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:27:55.168 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:27:55.168 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:27:55.168 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-03-21T13:27:55.178 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-03-21T13:27:55.179 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-03-21T13:27:55.179 DEBUG:teuthology.orchestra.run.smithi082:> dd if=/scratch_devs of=/dev/stdout 2024-03-21T13:27:55.194 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-03-21T13:27:55.194 DEBUG:teuthology.orchestra.run.smithi082:> stat /dev/vg_nvme/lv_1 2024-03-21T13:27:55.248 INFO:teuthology.orchestra.run.smithi082.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-21T13:27:55.249 INFO:teuthology.orchestra.run.smithi082.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:27:55.249 INFO:teuthology.orchestra.run.smithi082.stdout:Device: 5h/5d Inode: 667 Links: 1 2024-03-21T13:27:55.249 INFO:teuthology.orchestra.run.smithi082.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:27:55.249 INFO:teuthology.orchestra.run.smithi082.stdout:Context: system_u:object_r:device_t:s0 2024-03-21T13:27:55.249 INFO:teuthology.orchestra.run.smithi082.stdout:Access: 2024-03-21 13:27:53.636370487 +0000 2024-03-21T13:27:55.249 INFO:teuthology.orchestra.run.smithi082.stdout:Modify: 2024-03-21 13:27:27.921900711 +0000 2024-03-21T13:27:55.249 INFO:teuthology.orchestra.run.smithi082.stdout:Change: 2024-03-21 13:27:27.921900711 +0000 2024-03-21T13:27:55.249 INFO:teuthology.orchestra.run.smithi082.stdout: Birth: 2024-03-21 13:27:27.921900711 +0000 2024-03-21T13:27:55.249 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-21T13:27:55.315 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records in 2024-03-21T13:27:55.315 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records out 2024-03-21T13:27:55.315 INFO:teuthology.orchestra.run.smithi082.stderr:512 bytes copied, 0.000254961 s, 2.0 MB/s 2024-03-21T13:27:55.317 DEBUG:teuthology.orchestra.run.smithi082:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-21T13:27:55.373 DEBUG:teuthology.orchestra.run.smithi082:> stat /dev/vg_nvme/lv_2 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout:Device: 5h/5d Inode: 687 Links: 1 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout:Context: system_u:object_r:device_t:s0 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout:Access: 2024-03-21 13:27:53.636370487 +0000 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout:Modify: 2024-03-21 13:27:28.261893701 +0000 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout:Change: 2024-03-21 13:27:28.261893701 +0000 2024-03-21T13:27:55.428 INFO:teuthology.orchestra.run.smithi082.stdout: Birth: 2024-03-21 13:27:28.261893701 +0000 2024-03-21T13:27:55.429 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-21T13:27:55.494 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records in 2024-03-21T13:27:55.494 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records out 2024-03-21T13:27:55.494 INFO:teuthology.orchestra.run.smithi082.stderr:512 bytes copied, 0.000241749 s, 2.1 MB/s 2024-03-21T13:27:55.495 DEBUG:teuthology.orchestra.run.smithi082:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-21T13:27:55.550 DEBUG:teuthology.orchestra.run.smithi082:> stat /dev/vg_nvme/lv_3 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout:Device: 5h/5d Inode: 706 Links: 1 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout:Context: system_u:object_r:device_t:s0 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout:Access: 2024-03-21 13:27:53.636370487 +0000 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout:Modify: 2024-03-21 13:27:28.598886752 +0000 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout:Change: 2024-03-21 13:27:28.598886752 +0000 2024-03-21T13:27:55.606 INFO:teuthology.orchestra.run.smithi082.stdout: Birth: 2024-03-21 13:27:28.598886752 +0000 2024-03-21T13:27:55.607 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-21T13:27:55.671 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records in 2024-03-21T13:27:55.671 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records out 2024-03-21T13:27:55.671 INFO:teuthology.orchestra.run.smithi082.stderr:512 bytes copied, 0.000275603 s, 1.9 MB/s 2024-03-21T13:27:55.672 DEBUG:teuthology.orchestra.run.smithi082:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-21T13:27:55.728 DEBUG:teuthology.orchestra.run.smithi082:> stat /dev/vg_nvme/lv_4 2024-03-21T13:27:55.782 INFO:teuthology.orchestra.run.smithi082.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-21T13:27:55.783 INFO:teuthology.orchestra.run.smithi082.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:27:55.783 INFO:teuthology.orchestra.run.smithi082.stdout:Device: 5h/5d Inode: 725 Links: 1 2024-03-21T13:27:55.783 INFO:teuthology.orchestra.run.smithi082.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:27:55.783 INFO:teuthology.orchestra.run.smithi082.stdout:Context: system_u:object_r:device_t:s0 2024-03-21T13:27:55.783 INFO:teuthology.orchestra.run.smithi082.stdout:Access: 2024-03-21 13:27:53.636370487 +0000 2024-03-21T13:27:55.783 INFO:teuthology.orchestra.run.smithi082.stdout:Modify: 2024-03-21 13:27:28.945879597 +0000 2024-03-21T13:27:55.783 INFO:teuthology.orchestra.run.smithi082.stdout:Change: 2024-03-21 13:27:28.945879597 +0000 2024-03-21T13:27:55.783 INFO:teuthology.orchestra.run.smithi082.stdout: Birth: 2024-03-21 13:27:28.945879597 +0000 2024-03-21T13:27:55.783 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-21T13:27:55.848 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records in 2024-03-21T13:27:55.848 INFO:teuthology.orchestra.run.smithi082.stderr:1+0 records out 2024-03-21T13:27:55.848 INFO:teuthology.orchestra.run.smithi082.stderr:512 bytes copied, 0.000171271 s, 3.0 MB/s 2024-03-21T13:27:55.849 DEBUG:teuthology.orchestra.run.smithi082:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-21T13:27:55.904 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:27:56.036 INFO:teuthology.orchestra.run.smithi082.stdout:loop 2024-03-21T13:27:56.038 INFO:tasks.nvme_loop:Connecting nvme_loop smithi082:/dev/vg_nvme/lv_1... 2024-03-21T13:27:56.038 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:27:56.075 INFO:teuthology.orchestra.run.smithi082.stdout:1 2024-03-21T13:27:56.112 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/vg_nvme/lv_11 2024-03-21T13:27:56.149 INFO:tasks.nvme_loop:Connecting nvme_loop smithi082:/dev/vg_nvme/lv_2... 2024-03-21T13:27:56.149 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:27:56.229 INFO:teuthology.orchestra.run.smithi082.stdout:1 2024-03-21T13:27:56.267 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/vg_nvme/lv_21 2024-03-21T13:27:56.295 INFO:tasks.nvme_loop:Connecting nvme_loop smithi082:/dev/vg_nvme/lv_3... 2024-03-21T13:27:56.295 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:27:56.379 INFO:teuthology.orchestra.run.smithi082.stdout:1 2024-03-21T13:27:56.416 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/vg_nvme/lv_31 2024-03-21T13:27:56.444 INFO:tasks.nvme_loop:Connecting nvme_loop smithi082:/dev/vg_nvme/lv_4... 2024-03-21T13:27:56.445 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:27:56.528 INFO:teuthology.orchestra.run.smithi082.stdout:1 2024-03-21T13:27:56.565 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/vg_nvme/lv_41 2024-03-21T13:27:56.593 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-03-21T13:27:56.593 DEBUG:teuthology.orchestra.run.smithi082:> dd if=/scratch_devs of=/dev/stdout 2024-03-21T13:27:56.654 DEBUG:teuthology.orchestra.run.smithi082:> sudo nvme list 2024-03-21T13:27:56.719 INFO:teuthology.orchestra.run.smithi082.stdout:Node SN Model Namespace Usage Format FW Rev 2024-03-21T13:27:56.719 INFO:teuthology.orchestra.run.smithi082.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-03-21T13:27:56.720 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/nvme0n1 PHFT620400SD400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-03-21T13:27:56.720 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/nvme1n1 01eb91c0b564702d79da Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-03-21T13:27:56.720 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/nvme2n1 79e847f982d587a1a205 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-03-21T13:27:56.720 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/nvme3n1 e78ddbab1947bef11cda Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-03-21T13:27:56.720 INFO:teuthology.orchestra.run.smithi082.stdout:/dev/nvme4n1 e2628f10f8e65353e54b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-03-21T13:27:56.721 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-21T13:27:56.721 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-03-21T13:27:56.721 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/scratch_devs 2024-03-21T13:27:56.787 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-03-21T13:27:56.788 DEBUG:teuthology.orchestra.run.smithi090:> dd if=/scratch_devs of=/dev/stdout 2024-03-21T13:27:56.806 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-03-21T13:27:56.807 DEBUG:teuthology.orchestra.run.smithi090:> stat /dev/vg_nvme/lv_1 2024-03-21T13:27:56.864 INFO:teuthology.orchestra.run.smithi090.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-21T13:27:56.864 INFO:teuthology.orchestra.run.smithi090.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:27:56.865 INFO:teuthology.orchestra.run.smithi090.stdout:Device: 5h/5d Inode: 665 Links: 1 2024-03-21T13:27:56.865 INFO:teuthology.orchestra.run.smithi090.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:27:56.865 INFO:teuthology.orchestra.run.smithi090.stdout:Context: system_u:object_r:device_t:s0 2024-03-21T13:27:56.865 INFO:teuthology.orchestra.run.smithi090.stdout:Access: 2024-03-21 13:27:53.582114589 +0000 2024-03-21T13:27:56.865 INFO:teuthology.orchestra.run.smithi090.stdout:Modify: 2024-03-21 13:27:30.708490202 +0000 2024-03-21T13:27:56.865 INFO:teuthology.orchestra.run.smithi090.stdout:Change: 2024-03-21 13:27:30.708490202 +0000 2024-03-21T13:27:56.865 INFO:teuthology.orchestra.run.smithi090.stdout: Birth: 2024-03-21 13:27:30.708490202 +0000 2024-03-21T13:27:56.865 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-21T13:27:56.935 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records in 2024-03-21T13:27:56.935 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records out 2024-03-21T13:27:56.936 INFO:teuthology.orchestra.run.smithi090.stderr:512 bytes copied, 0.000275325 s, 1.9 MB/s 2024-03-21T13:27:56.937 DEBUG:teuthology.orchestra.run.smithi090:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-21T13:27:56.995 DEBUG:teuthology.orchestra.run.smithi090:> stat /dev/vg_nvme/lv_2 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout:Device: 5h/5d Inode: 685 Links: 1 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout:Context: system_u:object_r:device_t:s0 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout:Access: 2024-03-21 13:27:53.582114589 +0000 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout:Modify: 2024-03-21 13:27:31.034484849 +0000 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout:Change: 2024-03-21 13:27:31.034484849 +0000 2024-03-21T13:27:57.053 INFO:teuthology.orchestra.run.smithi090.stdout: Birth: 2024-03-21 13:27:31.034484849 +0000 2024-03-21T13:27:57.054 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-21T13:27:57.121 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records in 2024-03-21T13:27:57.121 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records out 2024-03-21T13:27:57.122 INFO:teuthology.orchestra.run.smithi090.stderr:512 bytes copied, 0.000195706 s, 2.6 MB/s 2024-03-21T13:27:57.123 DEBUG:teuthology.orchestra.run.smithi090:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-21T13:27:57.181 DEBUG:teuthology.orchestra.run.smithi090:> stat /dev/vg_nvme/lv_3 2024-03-21T13:27:57.238 INFO:teuthology.orchestra.run.smithi090.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-21T13:27:57.239 INFO:teuthology.orchestra.run.smithi090.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:27:57.239 INFO:teuthology.orchestra.run.smithi090.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-03-21T13:27:57.239 INFO:teuthology.orchestra.run.smithi090.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:27:57.239 INFO:teuthology.orchestra.run.smithi090.stdout:Context: system_u:object_r:device_t:s0 2024-03-21T13:27:57.239 INFO:teuthology.orchestra.run.smithi090.stdout:Access: 2024-03-21 13:27:53.582114589 +0000 2024-03-21T13:27:57.239 INFO:teuthology.orchestra.run.smithi090.stdout:Modify: 2024-03-21 13:27:31.379479184 +0000 2024-03-21T13:27:57.239 INFO:teuthology.orchestra.run.smithi090.stdout:Change: 2024-03-21 13:27:31.379479184 +0000 2024-03-21T13:27:57.239 INFO:teuthology.orchestra.run.smithi090.stdout: Birth: 2024-03-21 13:27:31.379479184 +0000 2024-03-21T13:27:57.239 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-21T13:27:57.307 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records in 2024-03-21T13:27:57.307 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records out 2024-03-21T13:27:57.307 INFO:teuthology.orchestra.run.smithi090.stderr:512 bytes copied, 0.000193655 s, 2.6 MB/s 2024-03-21T13:27:57.308 DEBUG:teuthology.orchestra.run.smithi090:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-21T13:27:57.366 DEBUG:teuthology.orchestra.run.smithi090:> stat /dev/vg_nvme/lv_4 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout:Context: system_u:object_r:device_t:s0 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout:Access: 2024-03-21 13:27:53.582114589 +0000 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout:Modify: 2024-03-21 13:27:31.718473617 +0000 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout:Change: 2024-03-21 13:27:31.718473617 +0000 2024-03-21T13:27:57.422 INFO:teuthology.orchestra.run.smithi090.stdout: Birth: 2024-03-21 13:27:31.718473617 +0000 2024-03-21T13:27:57.423 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-21T13:27:57.488 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records in 2024-03-21T13:27:57.489 INFO:teuthology.orchestra.run.smithi090.stderr:1+0 records out 2024-03-21T13:27:57.489 INFO:teuthology.orchestra.run.smithi090.stderr:512 bytes copied, 0.000182206 s, 2.8 MB/s 2024-03-21T13:27:57.490 DEBUG:teuthology.orchestra.run.smithi090:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-21T13:27:57.546 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:27:57.686 INFO:teuthology.orchestra.run.smithi090.stdout:loop 2024-03-21T13:27:57.688 INFO:tasks.nvme_loop:Connecting nvme_loop smithi090:/dev/vg_nvme/lv_1... 2024-03-21T13:27:57.688 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:27:57.725 INFO:teuthology.orchestra.run.smithi090.stdout:1 2024-03-21T13:27:57.762 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/vg_nvme/lv_11 2024-03-21T13:27:57.792 INFO:tasks.nvme_loop:Connecting nvme_loop smithi090:/dev/vg_nvme/lv_2... 2024-03-21T13:27:57.792 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:27:57.871 INFO:teuthology.orchestra.run.smithi090.stdout:1 2024-03-21T13:27:57.909 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/vg_nvme/lv_21 2024-03-21T13:27:57.944 INFO:tasks.nvme_loop:Connecting nvme_loop smithi090:/dev/vg_nvme/lv_3... 2024-03-21T13:27:57.944 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:27:58.022 INFO:teuthology.orchestra.run.smithi090.stdout:1 2024-03-21T13:27:58.058 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/vg_nvme/lv_31 2024-03-21T13:27:58.093 INFO:tasks.nvme_loop:Connecting nvme_loop smithi090:/dev/vg_nvme/lv_4... 2024-03-21T13:27:58.094 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:27:58.172 INFO:teuthology.orchestra.run.smithi090.stdout:1 2024-03-21T13:27:58.210 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/vg_nvme/lv_41 2024-03-21T13:27:58.237 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-03-21T13:27:58.237 DEBUG:teuthology.orchestra.run.smithi090:> dd if=/scratch_devs of=/dev/stdout 2024-03-21T13:27:58.292 DEBUG:teuthology.orchestra.run.smithi090:> sudo nvme list 2024-03-21T13:27:58.358 INFO:teuthology.orchestra.run.smithi090.stdout:Node SN Model Namespace Usage Format FW Rev 2024-03-21T13:27:58.358 INFO:teuthology.orchestra.run.smithi090.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-03-21T13:27:58.358 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/nvme0n1 PHFT620400UK400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-03-21T13:27:58.358 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/nvme1n1 d8a809a9f58ad1f91d6e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-03-21T13:27:58.358 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/nvme2n1 9971cbf6740b0e387792 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-03-21T13:27:58.359 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/nvme3n1 26767d9c492632b4c113 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-03-21T13:27:58.359 INFO:teuthology.orchestra.run.smithi090.stdout:/dev/nvme4n1 e1caea2820215b1e282c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-03-21T13:27:58.359 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-21T13:27:58.360 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-03-21T13:27:58.360 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/scratch_devs 2024-03-21T13:27:58.426 INFO:teuthology.run_tasks:Running task cephadm... 2024-03-21T13:27:58.517 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': 'ba760091cd7bd2b0d23f4825ac856ba66450e988'} 2024-03-21T13:27:58.517 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ba760091cd7bd2b0d23f4825ac856ba66450e988 2024-03-21T13:27:58.518 INFO:tasks.cephadm:Cluster fsid is d54b5274-e786-11ee-95cd-87774f69a715 2024-03-21T13:27:58.518 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-03-21T13:27:58.518 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-03-21T13:27:58.518 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 1791, in initialize_config ctx.ceph[cluster_name].mons = get_mons( File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/ceph.py", line 510, in get_mons assert mons AssertionError 2024-03-21T13:27:58.519 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 2192, 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_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 1791, in initialize_config ctx.ceph[cluster_name].mons = get_mons( File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/ceph.py", line 510, in get_mons assert mons AssertionError 2024-03-21T13:27:58.712 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=c5f8c418b85146f6bd7ebe2dee2e25cf Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 2192, 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_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 1791, in initialize_config ctx.ceph[cluster_name].mons = get_mons( File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/ceph.py", line 510, in get_mons assert mons AssertionError 2024-03-21T13:27:58.715 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-03-21T13:27:58.724 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-03-21T13:27:58.759 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi082:/dev/vg_nvme/lv_1... 2024-03-21T13:27:58.759 DEBUG:teuthology.orchestra.run.smithi082:> sudo nvme disconnect -n lv_1 2024-03-21T13:27:58.918 INFO:teuthology.orchestra.run.smithi082.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-03-21T13:27:58.919 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:27:58.920 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi082:/dev/vg_nvme/lv_2... 2024-03-21T13:27:58.920 DEBUG:teuthology.orchestra.run.smithi082:> sudo nvme disconnect -n lv_2 2024-03-21T13:27:59.058 INFO:teuthology.orchestra.run.smithi082.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-03-21T13:27:59.060 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:27:59.060 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi082:/dev/vg_nvme/lv_3... 2024-03-21T13:27:59.060 DEBUG:teuthology.orchestra.run.smithi082:> sudo nvme disconnect -n lv_3 2024-03-21T13:27:59.187 INFO:teuthology.orchestra.run.smithi082.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-03-21T13:27:59.188 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:27:59.189 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi082:/dev/vg_nvme/lv_4... 2024-03-21T13:27:59.189 DEBUG:teuthology.orchestra.run.smithi082:> sudo nvme disconnect -n lv_4 2024-03-21T13:27:59.325 INFO:teuthology.orchestra.run.smithi082.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-03-21T13:27:59.326 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:27:59.326 DEBUG:teuthology.orchestra.run.smithi082:> set -ex 2024-03-21T13:27:59.327 DEBUG:teuthology.orchestra.run.smithi082:> sudo dd of=/scratch_devs 2024-03-21T13:27:59.353 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi090:/dev/vg_nvme/lv_1... 2024-03-21T13:27:59.353 DEBUG:teuthology.orchestra.run.smithi090:> sudo nvme disconnect -n lv_1 2024-03-21T13:27:59.498 INFO:teuthology.orchestra.run.smithi090.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-03-21T13:27:59.499 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:27:59.499 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi090:/dev/vg_nvme/lv_2... 2024-03-21T13:27:59.499 DEBUG:teuthology.orchestra.run.smithi090:> sudo nvme disconnect -n lv_2 2024-03-21T13:27:59.661 INFO:teuthology.orchestra.run.smithi090.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-03-21T13:27:59.663 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:27:59.663 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi090:/dev/vg_nvme/lv_3... 2024-03-21T13:27:59.663 DEBUG:teuthology.orchestra.run.smithi090:> sudo nvme disconnect -n lv_3 2024-03-21T13:27:59.799 INFO:teuthology.orchestra.run.smithi090.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-03-21T13:27:59.799 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:27:59.800 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi090:/dev/vg_nvme/lv_4... 2024-03-21T13:27:59.800 DEBUG:teuthology.orchestra.run.smithi090:> sudo nvme disconnect -n lv_4 2024-03-21T13:27:59.929 INFO:teuthology.orchestra.run.smithi090.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-03-21T13:27:59.930 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:27:59.930 DEBUG:teuthology.orchestra.run.smithi090:> set -ex 2024-03-21T13:27:59.931 DEBUG:teuthology.orchestra.run.smithi090:> sudo dd of=/scratch_devs 2024-03-21T13:27:59.957 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-03-21T13:27:59.966 INFO:teuthology.task.clock:Checking final clock skew... 2024-03-21T13:27:59.966 DEBUG:teuthology.orchestra.run.smithi082:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-21T13:27:59.968 DEBUG:teuthology.orchestra.run.smithi090:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-21T13:27:59.980 INFO:teuthology.orchestra.run.smithi082.stderr:bash: line 1: ntpq: command not found 2024-03-21T13:27:59.988 INFO:teuthology.orchestra.run.smithi082.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-03-21T13:27:59.988 INFO:teuthology.orchestra.run.smithi082.stdout:=============================================================================== 2024-03-21T13:27:59.988 INFO:teuthology.orchestra.run.smithi082.stdout:^? hv01.front.sepia.ceph.com 2 6 7 0 +1960us[+1960us] +/- 107ms 2024-03-21T13:27:59.989 INFO:teuthology.orchestra.run.smithi082.stdout:^? hv02.front.sepia.ceph.com 3 6 3 2 -1460us[-1460us] +/- 64ms 2024-03-21T13:27:59.989 INFO:teuthology.orchestra.run.smithi082.stdout:^? hv03.front.sepia.ceph.com 3 6 7 0 +140us[ +140us] +/- 61ms 2024-03-21T13:27:59.989 INFO:teuthology.orchestra.run.smithi082.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:28:00.010 INFO:teuthology.orchestra.run.smithi090.stderr:bash: line 1: ntpq: command not found 2024-03-21T13:28:00.020 INFO:teuthology.orchestra.run.smithi090.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-03-21T13:28:00.020 INFO:teuthology.orchestra.run.smithi090.stdout:=============================================================================== 2024-03-21T13:28:00.020 INFO:teuthology.orchestra.run.smithi090.stdout:^+ hv01.front.sepia.ceph.com 2 6 7 1 +2006us[+2216us] +/- 107ms 2024-03-21T13:28:00.020 INFO:teuthology.orchestra.run.smithi090.stdout:^+ hv02.front.sepia.ceph.com 3 6 7 1 -1398us[-1188us] +/- 64ms 2024-03-21T13:28:00.020 INFO:teuthology.orchestra.run.smithi090.stdout:^* hv03.front.sepia.ceph.com 3 6 7 1 +193us[ +403us] +/- 61ms 2024-03-21T13:28:00.020 INFO:teuthology.orchestra.run.smithi090.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-03-21T13:28:00.021 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-03-21T13:28:00.030 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-03-21T13:28:00.031 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-03-21T13:28:00.121 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:28:00.183 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:28:00.243 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:28:00.273 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:28:00.273 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:28:00.302 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:28:00.302 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-03-21T13:28:00.312 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-03-21T13:28:00.358 INFO:teuthology.task.internal:Duration was 262.074555 seconds 2024-03-21T13:28:00.359 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-03-21T13:28:00.368 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-03-21T13:28:00.368 DEBUG:teuthology.orchestra.run.smithi082:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-21T13:28:00.370 DEBUG:teuthology.orchestra.run.smithi090:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-21T13:28:00.411 INFO:teuthology.orchestra.run.smithi082.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-03-21T13:28:00.413 INFO:teuthology.orchestra.run.smithi090.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-03-21T13:28:00.594 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-03-21T13:28:00.594 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi082.front.sepia.ceph.com 2024-03-21T13:28:00.594 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:28:00.658 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi090.front.sepia.ceph.com 2024-03-21T13:28:00.659 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:28:00.682 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-03-21T13:28:00.682 DEBUG:teuthology.orchestra.run.smithi082:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-21T13:28:00.701 DEBUG:teuthology.orchestra.run.smithi090:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-21T13:28:00.750 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-03-21T13:28:00.750 DEBUG:teuthology.orchestra.run.smithi082:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-21T13:28:00.769 DEBUG:teuthology.orchestra.run.smithi090:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-21T13:28:00.877 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-03-21T13:28:00.886 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-03-21T13:28:00.887 DEBUG:teuthology.orchestra.run.smithi082:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-21T13:28:00.913 DEBUG:teuthology.orchestra.run.smithi090:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-21T13:28:00.940 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-03-21T13:28:00.949 DEBUG:teuthology.orchestra.run.smithi082:> 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-03-21T13:28:00.956 DEBUG:teuthology.orchestra.run.smithi090:> 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-03-21T13:28:00.979 INFO:teuthology.orchestra.run.smithi082.stdout:kernel.core_pattern = core 2024-03-21T13:28:01.005 INFO:teuthology.orchestra.run.smithi090.stdout:kernel.core_pattern = core 2024-03-21T13:28:01.025 DEBUG:teuthology.orchestra.run.smithi082:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-21T13:28:01.066 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:28:01.067 DEBUG:teuthology.orchestra.run.smithi090:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-21T13:28:01.080 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:28:01.080 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-03-21T13:28:01.090 INFO:teuthology.task.internal:Transferring archived files... 2024-03-21T13:28:01.091 DEBUG:teuthology.misc:Transferring archived files from smithi082:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871/remote/smithi082 2024-03-21T13:28:01.092 DEBUG:teuthology.orchestra.run.smithi082:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-21T13:28:01.156 DEBUG:teuthology.misc:Transferring archived files from smithi090:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871/remote/smithi090 2024-03-21T13:28:01.157 DEBUG:teuthology.orchestra.run.smithi090:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-21T13:28:01.207 INFO:teuthology.task.internal:Removing archive directory... 2024-03-21T13:28:01.208 DEBUG:teuthology.orchestra.run.smithi082:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-21T13:28:01.210 DEBUG:teuthology.orchestra.run.smithi090:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-21T13:28:01.255 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-03-21T13:28:01.266 INFO:teuthology.task.internal:Not uploading archives. 2024-03-21T13:28:01.266 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-03-21T13:28:01.275 INFO:teuthology.task.internal:Tidying up after the test... 2024-03-21T13:28:01.275 DEBUG:teuthology.orchestra.run.smithi082:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-21T13:28:01.277 DEBUG:teuthology.orchestra.run.smithi090:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-21T13:28:01.290 INFO:teuthology.orchestra.run.smithi082.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 21 13:28 /home/ubuntu/cephtest 2024-03-21T13:28:01.310 INFO:teuthology.orchestra.run.smithi090.stdout: 266023 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 21 13:28 /home/ubuntu/cephtest 2024-03-21T13:28:01.311 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-03-21T13:28:01.320 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-03-21T13:28:01.339 INFO:teuthology.nuke:Checking targets against current locks 2024-03-21T13:28:01.368 DEBUG:teuthology.nuke:shortname: smithi082 2024-03-21T13:28:01.368 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-21T13:28:01.394 DEBUG:teuthology.nuke:shortname: smithi090 2024-03-21T13:28:01.395 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-21T13:28:01.399 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi082.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871', '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-03-21 13:13:51.083370', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBN1ycpYIelgkHU9GaPuDiR67VE5Di5Z78pnauYtraSRZjLYIH6JGHYQPcOxMHZTkNgVEXaoeP3v0if0HJ3YQNIE='} 2024-03-21T13:28:01.421 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi090.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614871', '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-03-21 13:13:51.082153', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCxXsQchyBQeCifZyduhbjYT1RKm81uhAiljLFTFIOF4NInRU2dhfI2ifV0UqE4JZg0ZNAEH08+PBJkOrxbmsKI='} 2024-03-21T13:28:01.456 INFO:teuthology.orchestra.console.smithi082:Power off 2024-03-21T13:28:01.456 DEBUG:teuthology.orchestra.console.smithi082:pexpect command: ipmitool -H smithi082.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-21T13:28:01.480 DEBUG:teuthology.orchestra.console.smithi082:power off output: Chassis Power Control: Down/Off 2024-03-21T13:28:01.481 DEBUG:teuthology.orchestra.console.smithi082:pexpect command: ipmitool -H smithi082.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:28:01.496 INFO:teuthology.orchestra.console.smithi090:Power off 2024-03-21T13:28:01.496 DEBUG:teuthology.orchestra.console.smithi090:pexpect command: ipmitool -H smithi090.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-21T13:28:01.506 DEBUG:teuthology.orchestra.console.smithi082:check power output: Chassis Power is on 2024-03-21T13:28:01.520 DEBUG:teuthology.orchestra.console.smithi090:power off output: Chassis Power Control: Down/Off 2024-03-21T13:28:01.520 DEBUG:teuthology.orchestra.console.smithi090:pexpect command: ipmitool -H smithi090.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:28:01.543 DEBUG:teuthology.orchestra.console.smithi090:check power output: Chassis Power is on 2024-03-21T13:28:05.507 DEBUG:teuthology.orchestra.console.smithi082:pexpect command: ipmitool -H smithi082.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:28:05.544 DEBUG:teuthology.orchestra.console.smithi090:pexpect command: ipmitool -H smithi090.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:28:05.617 DEBUG:teuthology.orchestra.console.smithi082:check power output: Chassis Power is on 2024-03-21T13:28:05.652 DEBUG:teuthology.orchestra.console.smithi090:check power output: Chassis Power is on 2024-03-21T13:28:09.623 DEBUG:teuthology.orchestra.console.smithi082:pexpect command: ipmitool -H smithi082.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:28:09.653 DEBUG:teuthology.orchestra.console.smithi090:pexpect command: ipmitool -H smithi090.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:28:09.732 DEBUG:teuthology.orchestra.console.smithi082:check power output: Chassis Power is on 2024-03-21T13:28:09.763 DEBUG:teuthology.orchestra.console.smithi090:check power output: Chassis Power is off 2024-03-21T13:28:09.864 INFO:teuthology.orchestra.console.smithi090:Power off completed 2024-03-21T13:28:13.734 DEBUG:teuthology.orchestra.console.smithi082:pexpect command: ipmitool -H smithi082.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:28:13.843 DEBUG:teuthology.orchestra.console.smithi082:check power output: Chassis Power is off 2024-03-21T13:28:13.944 INFO:teuthology.orchestra.console.smithi082:Power off completed 2024-03-21T13:28:14.048 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 262.0745551586151 failure_reason: '' owner: scheduled_adking@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=c5f8c418b85146f6bd7ebe2dee2e25cf status: fail success: false 2024-03-21T13:28:14.049 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-21T13:28:14.129 INFO:teuthology.run:FAIL