2024-04-15T22:22:57.545 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T22:22:57.545 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi --archive /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592 --verbose --owner scheduled_teuthology@teuthology --description orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} -- /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592/orig.config.yaml 2024-04-15T22:22:57.578 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T22:22:57.659 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7657592' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 7775 sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 sleep_before_teardown: 0 subset: 18/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 targets: smithi142.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLuiis66eLRuxVt9E2GfOASoO0tj11vA2eZLBjW7Yvn1+7lZJf6ugTD21EopXzB5oDlgt6funItavnDaMKdX/10= smithi162.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCxcIKIuMTwTizZLsJwqHYSrrFLvFjG+VTlAfCYLyLgxXKwDEkpwpmYv1mzt1bJDpxbfup/rgXWL52OPlNd+vOY= 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: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-15_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T22:22:57.659 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa; will attempt to use it 2024-04-15T22:22:57.659 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks 2024-04-15T22:22:57.660 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T22:22:57.661 INFO:teuthology.task.internal:Checking packages... 2024-04-15T22:22:57.683 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'a9a752df26c63acad72e1b3569fd79a515ca0765' 2024-04-15T22:22:57.684 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T22:22:57.684 INFO:teuthology.packaging:ref: None 2024-04-15T22:22:57.684 INFO:teuthology.packaging:tag: None 2024-04-15T22:22:57.684 INFO:teuthology.packaging:branch: squid 2024-04-15T22:22:57.684 INFO:teuthology.packaging:sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:22:57.684 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-04-15T22:22:57.925 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2114.ga9a752df 2024-04-15T22:22:57.926 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T22:22:57.933 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T22:22:57.933 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T22:22:57.944 INFO:teuthology.task.internal:Saving configuration 2024-04-15T22:22:57.956 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T22:22:57.962 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:22:57.987 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi142.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 22:16:49.082105', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLuiis66eLRuxVt9E2GfOASoO0tj11vA2eZLBjW7Yvn1+7lZJf6ugTD21EopXzB5oDlgt6funItavnDaMKdX/10='} 2024-04-15T22:22:58.012 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi162.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 22:16:49.083634', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCxcIKIuMTwTizZLsJwqHYSrrFLvFjG+VTlAfCYLyLgxXKwDEkpwpmYv1mzt1bJDpxbfup/rgXWL52OPlNd+vOY='} 2024-04-15T22:22:58.012 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T22:22:58.019 INFO:teuthology.task.internal:roles: ubuntu@smithi142.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-15T22:22:58.019 INFO:teuthology.task.internal:roles: ubuntu@smithi162.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-15T22:22:58.019 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T22:22:58.086 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fad2401eee0>, signals=[15]) 2024-04-15T22:22:58.086 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T22:22:58.093 INFO:teuthology.task.internal:Opening connections... 2024-04-15T22:22:58.094 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi142.front.sepia.ceph.com 2024-04-15T22:22:58.097 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:22:58.198 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi162.front.sepia.ceph.com 2024-04-15T22:22:58.199 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:22:58.285 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T22:22:58.291 DEBUG:teuthology.orchestra.run.smithi142:> uname -m 2024-04-15T22:22:58.308 INFO:teuthology.orchestra.run.smithi142.stdout:x86_64 2024-04-15T22:22:58.308 DEBUG:teuthology.orchestra.run.smithi142:> cat /etc/os-release 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:NAME="CentOS Stream" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:VERSION="9" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:ID="centos" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:ID_LIKE="rhel fedora" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:VERSION_ID="9" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:PLATFORM_ID="platform:el9" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:ANSI_COLOR="0;31" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:LOGO="fedora-logo-icon" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:HOME_URL="https://centos.org/" 2024-04-15T22:22:58.365 INFO:teuthology.orchestra.run.smithi142.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T22:22:58.366 INFO:teuthology.orchestra.run.smithi142.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T22:22:58.366 INFO:teuthology.orchestra.run.smithi142.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T22:22:58.366 INFO:teuthology.lock.ops:Updating smithi142.front.sepia.ceph.com on lock server 2024-04-15T22:22:58.387 DEBUG:teuthology.orchestra.run.smithi162:> uname -m 2024-04-15T22:22:58.404 INFO:teuthology.orchestra.run.smithi162.stdout:x86_64 2024-04-15T22:22:58.404 DEBUG:teuthology.orchestra.run.smithi162:> cat /etc/os-release 2024-04-15T22:22:58.460 INFO:teuthology.orchestra.run.smithi162.stdout:NAME="CentOS Stream" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:VERSION="9" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:ID="centos" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:ID_LIKE="rhel fedora" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:VERSION_ID="9" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:PLATFORM_ID="platform:el9" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:ANSI_COLOR="0;31" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:LOGO="fedora-logo-icon" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:HOME_URL="https://centos.org/" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T22:22:58.461 INFO:teuthology.orchestra.run.smithi162.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T22:22:58.462 INFO:teuthology.lock.ops:Updating smithi162.front.sepia.ceph.com on lock server 2024-04-15T22:22:58.479 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T22:22:58.487 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T22:22:58.491 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T22:22:58.492 DEBUG:teuthology.orchestra.run.smithi142:> test '!' -e /home/ubuntu/cephtest 2024-04-15T22:22:58.494 DEBUG:teuthology.orchestra.run.smithi162:> test '!' -e /home/ubuntu/cephtest 2024-04-15T22:22:58.517 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T22:22:58.523 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T22:22:58.523 DEBUG:teuthology.orchestra.run.smithi142:> test -z $(ls -A /var/lib/ceph) 2024-04-15T22:22:58.549 DEBUG:teuthology.orchestra.run.smithi162:> test -z $(ls -A /var/lib/ceph) 2024-04-15T22:22:58.582 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T22:22:58.633 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T22:22:58.649 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T22:22:58.649 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-15T22:22:58.649 DEBUG:teuthology.orchestra.run.smithi142:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T22:22:58.650 DEBUG:teuthology.orchestra.run.smithi162:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T22:22:58.664 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:22:58.664 DEBUG:teuthology.orchestra.run.smithi162:> uname -r 2024-04-15T22:22:58.665 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:22:58.665 DEBUG:teuthology.orchestra.run.smithi142:> uname -r 2024-04-15T22:22:58.720 INFO:teuthology.orchestra.run.smithi162.stdout:5.14.0-361.el9.x86_64 2024-04-15T22:22:58.720 INFO:teuthology.task.kernel:Running kernel on smithi162: 5.14.0-361.el9.x86_64 2024-04-15T22:22:58.720 DEBUG:teuthology.orchestra.run.smithi162:> sudo yum install -y kernel 2024-04-15T22:22:58.721 INFO:teuthology.orchestra.run.smithi142.stdout:5.14.0-361.el9.x86_64 2024-04-15T22:22:58.721 INFO:teuthology.task.kernel:Running kernel on smithi142: 5.14.0-361.el9.x86_64 2024-04-15T22:22:58.721 DEBUG:teuthology.orchestra.run.smithi142:> sudo yum install -y kernel 2024-04-15T22:23:00.752 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS-9 - AppStream 14 MB/s | 6.7 MB 00:00 2024-04-15T22:23:00.816 INFO:teuthology.orchestra.run.smithi142.stdout:CentOS-9 - AppStream 13 MB/s | 6.7 MB 00:00 2024-04-15T22:23:02.217 INFO:teuthology.orchestra.run.smithi142.stdout:CentOS-9 - BaseOS 6.8 MB/s | 2.0 MB 00:00 2024-04-15T22:23:02.427 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS-9 - BaseOS 3.6 MB/s | 2.0 MB 00:00 2024-04-15T22:23:03.291 INFO:teuthology.orchestra.run.smithi142.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.0 MB 00:00 2024-04-15T22:23:03.553 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.0 MB 00:00 2024-04-15T22:23:08.685 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS Stream 9 - AppStream 4.9 MB/s | 19 MB 00:03 2024-04-15T22:23:08.766 INFO:teuthology.orchestra.run.smithi142.stdout:CentOS Stream 9 - AppStream 4.3 MB/s | 19 MB 00:04 2024-04-15T22:23:12.785 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.2 MB 00:00 2024-04-15T22:23:14.485 INFO:teuthology.orchestra.run.smithi162.stdout:CentOS Stream 9 - Extras packages 32 kB/s | 16 kB 00:00 2024-04-15T22:23:15.250 INFO:teuthology.orchestra.run.smithi142.stdout:CentOS Stream 9 - CRB 2.1 MB/s | 6.2 MB 00:02 2024-04-15T22:23:16.759 INFO:teuthology.orchestra.run.smithi142.stdout:CentOS Stream 9 - Extras packages 46 kB/s | 16 kB 00:00 2024-04-15T22:23:17.761 INFO:teuthology.orchestra.run.smithi162.stdout:Extra Packages for Enterprise Linux 6.6 MB/s | 21 MB 00:03 2024-04-15T22:23:18.354 INFO:teuthology.orchestra.run.smithi142.stdout:Extra Packages for Enterprise Linux 14 MB/s | 21 MB 00:01 2024-04-15T22:23:22.819 INFO:teuthology.orchestra.run.smithi162.stdout:lab-extras 36 kB/s | 1.7 kB 00:00 2024-04-15T22:23:23.334 INFO:teuthology.orchestra.run.smithi142.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-04-15T22:23:25.201 INFO:teuthology.orchestra.run.smithi162.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T22:23:25.201 INFO:teuthology.orchestra.run.smithi162.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T22:23:25.301 INFO:teuthology.orchestra.run.smithi162.stdout:Dependencies resolved. 2024-04-15T22:23:25.313 INFO:teuthology.orchestra.run.smithi162.stdout:================================================================================ 2024-04-15T22:23:25.313 INFO:teuthology.orchestra.run.smithi162.stdout: Package Arch Version Repository Size 2024-04-15T22:23:25.313 INFO:teuthology.orchestra.run.smithi162.stdout:================================================================================ 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout:Installing: 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout:Installing dependencies: 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout:Transaction Summary 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout:================================================================================ 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout:Install 4 Packages 2024-04-15T22:23:25.314 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-04-15T22:23:25.315 INFO:teuthology.orchestra.run.smithi162.stdout:Total download size: 77 M 2024-04-15T22:23:25.315 INFO:teuthology.orchestra.run.smithi162.stdout:Installed size: 123 M 2024-04-15T22:23:25.315 INFO:teuthology.orchestra.run.smithi162.stdout:Downloading Packages: 2024-04-15T22:23:25.511 INFO:teuthology.orchestra.run.smithi162.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.4 MB/s | 277 kB 00:00 2024-04-15T22:23:25.691 INFO:teuthology.orchestra.run.smithi142.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T22:23:25.691 INFO:teuthology.orchestra.run.smithi142.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T22:23:25.782 INFO:teuthology.orchestra.run.smithi142.stdout:Dependencies resolved. 2024-04-15T22:23:25.794 INFO:teuthology.orchestra.run.smithi142.stdout:================================================================================ 2024-04-15T22:23:25.794 INFO:teuthology.orchestra.run.smithi142.stdout: Package Arch Version Repository Size 2024-04-15T22:23:25.794 INFO:teuthology.orchestra.run.smithi142.stdout:================================================================================ 2024-04-15T22:23:25.794 INFO:teuthology.orchestra.run.smithi142.stdout:Installing: 2024-04-15T22:23:25.794 INFO:teuthology.orchestra.run.smithi142.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T22:23:25.794 INFO:teuthology.orchestra.run.smithi142.stdout:Installing dependencies: 2024-04-15T22:23:25.794 INFO:teuthology.orchestra.run.smithi142.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T22:23:25.795 INFO:teuthology.orchestra.run.smithi142.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T22:23:25.795 INFO:teuthology.orchestra.run.smithi142.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T22:23:25.795 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-04-15T22:23:25.795 INFO:teuthology.orchestra.run.smithi142.stdout:Transaction Summary 2024-04-15T22:23:25.795 INFO:teuthology.orchestra.run.smithi142.stdout:================================================================================ 2024-04-15T22:23:25.795 INFO:teuthology.orchestra.run.smithi142.stdout:Install 4 Packages 2024-04-15T22:23:25.795 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-04-15T22:23:25.796 INFO:teuthology.orchestra.run.smithi142.stdout:Total download size: 77 M 2024-04-15T22:23:25.796 INFO:teuthology.orchestra.run.smithi142.stdout:Installed size: 123 M 2024-04-15T22:23:25.796 INFO:teuthology.orchestra.run.smithi142.stdout:Downloading Packages: 2024-04-15T22:23:26.135 INFO:teuthology.orchestra.run.smithi142.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 817 kB/s | 277 kB 00:00 2024-04-15T22:23:26.337 INFO:teuthology.orchestra.run.smithi162.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 15 MB/s | 15 MB 00:01 2024-04-15T22:23:26.811 INFO:teuthology.orchestra.run.smithi142.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 15 MB/s | 15 MB 00:01 2024-04-15T22:23:27.187 INFO:teuthology.orchestra.run.smithi162.stdout:(3/4): kernel-modules-core-5.14.0-438.el9.x86_6 17 MB/s | 28 MB 00:01 2024-04-15T22:23:27.436 INFO:teuthology.orchestra.run.smithi142.stdout:(3/4): kernel-modules-core-5.14.0-438.el9.x86_6 21 MB/s | 28 MB 00:01 2024-04-15T22:23:27.803 INFO:teuthology.orchestra.run.smithi162.stdout:(4/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 14 MB/s | 34 MB 00:02 2024-04-15T22:23:27.807 INFO:teuthology.orchestra.run.smithi162.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:23:27.808 INFO:teuthology.orchestra.run.smithi162.stdout:Total 31 MB/s | 77 MB 00:02 2024-04-15T22:23:27.808 INFO:teuthology.orchestra.run.smithi162.stdout:Running transaction check 2024-04-15T22:23:27.878 INFO:teuthology.orchestra.run.smithi142.stdout:(4/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 16 MB/s | 34 MB 00:02 2024-04-15T22:23:27.882 INFO:teuthology.orchestra.run.smithi142.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:23:27.882 INFO:teuthology.orchestra.run.smithi142.stdout:Total 37 MB/s | 77 MB 00:02 2024-04-15T22:23:27.882 INFO:teuthology.orchestra.run.smithi142.stdout:Running transaction check 2024-04-15T22:23:28.183 INFO:teuthology.orchestra.run.smithi162.stdout:Transaction check succeeded. 2024-04-15T22:23:28.183 INFO:teuthology.orchestra.run.smithi162.stdout:Running transaction test 2024-04-15T22:23:28.243 INFO:teuthology.orchestra.run.smithi142.stdout:Transaction check succeeded. 2024-04-15T22:23:28.243 INFO:teuthology.orchestra.run.smithi142.stdout:Running transaction test 2024-04-15T22:23:29.024 INFO:teuthology.orchestra.run.smithi162.stdout:Transaction test succeeded. 2024-04-15T22:23:29.024 INFO:teuthology.orchestra.run.smithi162.stdout:Running transaction 2024-04-15T22:23:29.099 INFO:teuthology.orchestra.run.smithi142.stdout:Transaction test succeeded. 2024-04-15T22:23:29.100 INFO:teuthology.orchestra.run.smithi142.stdout:Running transaction 2024-04-15T22:23:31.327 INFO:teuthology.orchestra.run.smithi162.stdout: Preparing : 1/1 2024-04-15T22:23:31.437 INFO:teuthology.orchestra.run.smithi142.stdout: Preparing : 1/1 2024-04-15T22:23:31.998 INFO:teuthology.orchestra.run.smithi162.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T22:23:32.038 INFO:teuthology.orchestra.run.smithi142.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T22:23:32.078 INFO:teuthology.orchestra.run.smithi162.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T22:23:32.127 INFO:teuthology.orchestra.run.smithi142.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T22:23:34.819 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T22:23:34.851 INFO:teuthology.orchestra.run.smithi142.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T22:23:34.985 INFO:teuthology.orchestra.run.smithi142.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T22:23:35.004 INFO:teuthology.orchestra.run.smithi162.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T22:23:39.711 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T22:23:39.714 INFO:teuthology.orchestra.run.smithi142.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T22:23:39.809 INFO:teuthology.orchestra.run.smithi142.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:23:39.827 INFO:teuthology.orchestra.run.smithi162.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:23:44.538 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:23:44.543 INFO:teuthology.orchestra.run.smithi142.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:13.826 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:13.826 INFO:teuthology.orchestra.run.smithi162.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T22:24:13.826 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-04-15T22:24:13.868 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:14.044 INFO:teuthology.orchestra.run.smithi142.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:14.044 INFO:teuthology.orchestra.run.smithi142.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T22:24:14.044 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-04-15T22:24:14.089 INFO:teuthology.orchestra.run.smithi142.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:14.222 INFO:teuthology.orchestra.run.smithi162.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:14.222 INFO:teuthology.orchestra.run.smithi162.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T22:24:14.222 INFO:teuthology.orchestra.run.smithi162.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T22:24:14.222 INFO:teuthology.orchestra.run.smithi162.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T22:24:14.491 INFO:teuthology.orchestra.run.smithi142.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:14.492 INFO:teuthology.orchestra.run.smithi142.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T22:24:14.492 INFO:teuthology.orchestra.run.smithi142.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T22:24:14.492 INFO:teuthology.orchestra.run.smithi142.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T22:24:14.643 INFO:teuthology.orchestra.run.smithi162.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:14.643 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-04-15T22:24:14.643 INFO:teuthology.orchestra.run.smithi162.stdout:Installed: 2024-04-15T22:24:14.643 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T22:24:14.643 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T22:24:14.643 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T22:24:14.643 INFO:teuthology.orchestra.run.smithi162.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T22:24:14.643 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-04-15T22:24:14.644 INFO:teuthology.orchestra.run.smithi162.stdout:Complete! 2024-04-15T22:24:14.934 INFO:teuthology.orchestra.run.smithi142.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T22:24:14.934 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-04-15T22:24:14.934 INFO:teuthology.orchestra.run.smithi142.stdout:Installed: 2024-04-15T22:24:14.934 INFO:teuthology.orchestra.run.smithi142.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T22:24:14.934 INFO:teuthology.orchestra.run.smithi142.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T22:24:14.934 INFO:teuthology.orchestra.run.smithi142.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T22:24:14.934 INFO:teuthology.orchestra.run.smithi142.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T22:24:14.934 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-04-15T22:24:14.935 INFO:teuthology.orchestra.run.smithi142.stdout:Complete! 2024-04-15T22:24:14.974 DEBUG:teuthology.orchestra.run.smithi162:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T22:24:15.074 INFO:teuthology.orchestra.run.smithi162.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T22:24:15.075 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T22:24:15.075 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T22:24:15.075 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T22:24:15.075 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T22:24:15.075 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T22:24:15.075 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi162.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T22:24:15.075 DEBUG:teuthology.orchestra.run.smithi162:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T22:24:15.154 INFO:teuthology.orchestra.run.smithi162.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T22:24:15.155 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T22:24:15.155 DEBUG:teuthology.orchestra.run.smithi162:> sudo rpm -qi grub2-tools 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Name : grub2-tools 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Epoch : 1 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Version : 2.06 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Release : 68.el9 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Architecture: x86_64 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Group : Unspecified 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Size : 8264254 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:License : GPLv3+ 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T22:24:15.194 INFO:teuthology.orchestra.run.smithi162.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:Packager : builder@centos.org 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:Vendor : CentOS 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:Summary : Support tools for GRUB. 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:Description : 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:hardware devices. 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-04-15T22:24:15.195 INFO:teuthology.orchestra.run.smithi162.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T22:24:15.196 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T22:24:15.196 INFO:teuthology.task.kernel:Updating grub on smithi162 to boot 5.14.0-438.el9.x86_64 2024-04-15T22:24:15.196 DEBUG:teuthology.orchestra.run.smithi162:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T22:24:15.261 DEBUG:teuthology.orchestra.run.smithi142:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T22:24:15.407 INFO:teuthology.orchestra.run.smithi142.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T22:24:15.407 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T22:24:15.407 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T22:24:15.407 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T22:24:15.407 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T22:24:15.407 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T22:24:15.407 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi142.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T22:24:15.407 DEBUG:teuthology.orchestra.run.smithi142:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T22:24:15.487 INFO:teuthology.orchestra.run.smithi142.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T22:24:15.488 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T22:24:15.488 DEBUG:teuthology.orchestra.run.smithi142:> sudo rpm -qi grub2-tools 2024-04-15T22:24:15.529 INFO:teuthology.orchestra.run.smithi142.stdout:Name : grub2-tools 2024-04-15T22:24:15.529 INFO:teuthology.orchestra.run.smithi142.stdout:Epoch : 1 2024-04-15T22:24:15.529 INFO:teuthology.orchestra.run.smithi142.stdout:Version : 2.06 2024-04-15T22:24:15.529 INFO:teuthology.orchestra.run.smithi142.stdout:Release : 68.el9 2024-04-15T22:24:15.529 INFO:teuthology.orchestra.run.smithi142.stdout:Architecture: x86_64 2024-04-15T22:24:15.529 INFO:teuthology.orchestra.run.smithi142.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T22:24:15.529 INFO:teuthology.orchestra.run.smithi142.stdout:Group : Unspecified 2024-04-15T22:24:15.529 INFO:teuthology.orchestra.run.smithi142.stdout:Size : 8264254 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:License : GPLv3+ 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:Packager : builder@centos.org 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:Vendor : CentOS 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:Summary : Support tools for GRUB. 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:Description : 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T22:24:15.530 INFO:teuthology.orchestra.run.smithi142.stdout:hardware devices. 2024-04-15T22:24:15.531 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-04-15T22:24:15.531 INFO:teuthology.orchestra.run.smithi142.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T22:24:15.531 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T22:24:15.532 INFO:teuthology.task.kernel:Updating grub on smithi142 to boot 5.14.0-438.el9.x86_64 2024-04-15T22:24:15.532 DEBUG:teuthology.orchestra.run.smithi142:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T22:24:15.808 INFO:teuthology.orchestra.run.smithi162.stderr:Generating grub configuration file ... 2024-04-15T22:24:16.216 INFO:teuthology.orchestra.run.smithi142.stderr:Generating grub configuration file ... 2024-04-15T22:24:17.204 INFO:teuthology.orchestra.run.smithi162.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T22:24:17.235 INFO:teuthology.orchestra.run.smithi162.stderr:done 2024-04-15T22:24:17.237 DEBUG:teuthology.orchestra.run.smithi162:> mktemp 2024-04-15T22:24:17.252 INFO:teuthology.orchestra.run.smithi162.stdout:/tmp/tmp.wKa4XKT25Z 2024-04-15T22:24:17.252 DEBUG:teuthology.orchestra.run.smithi162:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.wKa4XKT25Z 2024-04-15T22:24:17.321 DEBUG:teuthology.orchestra.run.smithi162:> sudo chmod 0666 /tmp/tmp.wKa4XKT25Z 2024-04-15T22:24:17.463 DEBUG:teuthology.orchestra.remote:smithi162:/tmp/tmp.wKa4XKT25Z is 6KB 2024-04-15T22:24:17.512 DEBUG:teuthology.orchestra.run.smithi162:> rm -fr /tmp/tmp.wKa4XKT25Z 2024-04-15T22:24:17.526 DEBUG:teuthology.orchestra.run.smithi162:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T22:24:17.589 INFO:teuthology.orchestra.run.smithi142.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T22:24:17.591 INFO:teuthology.orchestra.run.smithi162.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T22:24:17.591 INFO:teuthology.orchestra.run.smithi162.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T22:24:17.591 INFO:teuthology.orchestra.run.smithi162.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T22:24:17.591 INFO:teuthology.orchestra.run.smithi162.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T22:24:17.593 DEBUG:teuthology.orchestra.run.smithi162:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T22:24:17.625 INFO:teuthology.orchestra.run.smithi142.stderr:done 2024-04-15T22:24:17.627 DEBUG:teuthology.orchestra.run.smithi142:> mktemp 2024-04-15T22:24:17.642 INFO:teuthology.orchestra.run.smithi142.stdout:/tmp/tmp.QIKGuU2Xm7 2024-04-15T22:24:17.642 DEBUG:teuthology.orchestra.run.smithi142:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.QIKGuU2Xm7 2024-04-15T22:24:17.711 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 0666 /tmp/tmp.QIKGuU2Xm7 2024-04-15T22:24:17.724 DEBUG:teuthology.orchestra.run.smithi162:> sudo shutdown -r now 2024-04-15T22:24:17.847 DEBUG:teuthology.orchestra.remote:smithi142:/tmp/tmp.QIKGuU2Xm7 is 6KB 2024-04-15T22:24:17.896 DEBUG:teuthology.orchestra.run.smithi142:> rm -fr /tmp/tmp.QIKGuU2Xm7 2024-04-15T22:24:17.910 DEBUG:teuthology.orchestra.run.smithi142:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T22:24:17.975 INFO:teuthology.orchestra.run.smithi142.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T22:24:17.975 INFO:teuthology.orchestra.run.smithi142.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T22:24:17.975 INFO:teuthology.orchestra.run.smithi142.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T22:24:17.975 INFO:teuthology.orchestra.run.smithi142.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T22:24:17.976 DEBUG:teuthology.orchestra.run.smithi142:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T22:24:18.147 DEBUG:teuthology.orchestra.run.smithi142:> sudo shutdown -r now 2024-04-15T22:24:47.732 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T22:24:47.733 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-04-15T22:24:47.734 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:24:48.150 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T22:24:48.151 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-04-15T22:24:48.151 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:25:06.078 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.162 2024-04-15T22:25:06.590 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.142 2024-04-15T22:25:15.088 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-04-15T22:25:15.089 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:25:15.592 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-04-15T22:25:15.592 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:25:18.142 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.162 2024-04-15T22:25:30.153 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-04-15T22:25:30.153 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:25:48.574 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.162 2024-04-15T22:26:03.586 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-04-15T22:26:03.587 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:26:03.990 DEBUG:teuthology.orchestra.run.smithi162:> true 2024-04-15T22:26:04.424 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-04-15T22:26:04.424 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-438.el9.x86_64"... 2024-04-15T22:26:04.424 DEBUG:teuthology.orchestra.run.smithi162:> uname -r 2024-04-15T22:26:04.440 INFO:teuthology.orchestra.run.smithi162.stdout:5.14.0-438.el9.x86_64 2024-04-15T22:26:04.440 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T22:26:04.440 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:26:04.440 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T22:26:05.441 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T22:26:05.441 DEBUG:teuthology.orchestra.run.smithi162:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:26:05.503 INFO:teuthology.orchestra.run.smithi162.stdout:ttyS1 2024-04-15T22:26:05.542 DEBUG:teuthology.parallel:result is None 2024-04-15T22:26:15.595 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T22:26:27.596 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-04-15T22:26:27.597 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:26:28.092 DEBUG:teuthology.orchestra.run.smithi142:> true 2024-04-15T22:26:28.494 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-04-15T22:26:28.494 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-438.el9.x86_64"... 2024-04-15T22:26:28.495 DEBUG:teuthology.orchestra.run.smithi142:> uname -r 2024-04-15T22:26:28.511 INFO:teuthology.orchestra.run.smithi142.stdout:5.14.0-438.el9.x86_64 2024-04-15T22:26:28.511 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T22:26:28.511 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:26:28.511 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T22:26:29.512 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T22:26:29.513 DEBUG:teuthology.orchestra.run.smithi142:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:26:29.592 INFO:teuthology.orchestra.run.smithi142.stdout:ttyS1 2024-04-15T22:26:29.629 DEBUG:teuthology.parallel:result is None 2024-04-15T22:26:29.630 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T22:26:29.637 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T22:26:29.638 DEBUG:teuthology.orchestra.run.smithi142:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:26:29.640 DEBUG:teuthology.orchestra.run.smithi162:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:26:29.660 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T22:26:29.669 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T22:26:29.677 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T22:26:29.677 DEBUG:teuthology.orchestra.run.smithi142:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:26:29.698 DEBUG:teuthology.orchestra.run.smithi162:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:26:29.728 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T22:26:29.735 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T22:26:29.735 DEBUG:teuthology.orchestra.run.smithi142:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T22:26:29.760 DEBUG:teuthology.orchestra.run.smithi162:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T22:26:29.797 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:26:29.800 INFO:teuthology.orchestra.run.smithi162.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:26:29.811 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:26:29.814 INFO:teuthology.orchestra.run.smithi162.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:26:29.816 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T22:26:29.823 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T22:26:29.823 DEBUG:teuthology.orchestra.run.smithi142:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:26:29.856 DEBUG:teuthology.orchestra.run.smithi162:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:26:29.886 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T22:26:29.896 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T22:26:29.896 DEBUG:teuthology.orchestra.run.smithi142:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:26:29.926 DEBUG:teuthology.orchestra.run.smithi162:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:26:29.943 DEBUG:teuthology.orchestra.run.smithi142:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:26:30.026 DEBUG:teuthology.orchestra.run.smithi142:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:26:30.075 DEBUG:teuthology.orchestra.run.smithi142:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:26:30.160 DEBUG:teuthology.orchestra.run.smithi142:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:26:30.202 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-04-15T22:26:30.203 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:26:30.271 DEBUG:teuthology.orchestra.run.smithi162:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:26:30.313 DEBUG:teuthology.orchestra.run.smithi162:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:26:30.365 DEBUG:teuthology.orchestra.run.smithi162:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:26:30.450 DEBUG:teuthology.orchestra.run.smithi162:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:26:30.493 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-04-15T22:26:30.493 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:26:30.561 DEBUG:teuthology.orchestra.run.smithi142:> sudo service rsyslog restart 2024-04-15T22:26:30.564 DEBUG:teuthology.orchestra.run.smithi162:> sudo service rsyslog restart 2024-04-15T22:26:30.609 INFO:teuthology.orchestra.run.smithi142.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:26:30.657 INFO:teuthology.orchestra.run.smithi162.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:26:31.163 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T22:26:31.176 INFO:teuthology.task.internal:Starting timer... 2024-04-15T22:26:31.176 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T22:26:31.192 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T22:26:31.203 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-15T22:26:31.203 DEBUG:teuthology.orchestra.run.smithi142:> sudo service auditd rotate 2024-04-15T22:26:31.264 INFO:teuthology.orchestra.run.smithi142.stdout:Rotating logs: 2024-04-15T22:26:31.266 DEBUG:teuthology.orchestra.run.smithi162:> sudo service auditd rotate 2024-04-15T22:26:31.323 INFO:teuthology.orchestra.run.smithi162.stdout:Rotating logs: 2024-04-15T22:26:31.325 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T22:26:31.325 DEBUG:teuthology.orchestra.run.smithi142:> /usr/sbin/getenforce 2024-04-15T22:26:31.347 INFO:teuthology.orchestra.run.smithi142.stdout:Permissive 2024-04-15T22:26:31.347 DEBUG:teuthology.orchestra.run.smithi162:> /usr/sbin/getenforce 2024-04-15T22:26:31.365 INFO:teuthology.orchestra.run.smithi162.stdout:Permissive 2024-04-15T22:26:31.366 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi142.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi162.front.sepia.ceph.com': 'permissive'} 2024-04-15T22:26:31.366 DEBUG:teuthology.orchestra.run.smithi142:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:26:31.417 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:26:31.418 DEBUG:teuthology.orchestra.run.smithi162:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:26:31.447 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:26:31.448 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T22:26:31.448 DEBUG:teuthology.orchestra.run.smithi142:> sudo /usr/sbin/setenforce permissive 2024-04-15T22:26:31.499 DEBUG:teuthology.orchestra.run.smithi162:> sudo /usr/sbin/setenforce permissive 2024-04-15T22:26:31.542 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T22:26:31.552 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T22:26:31.574 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-15T22:26:31.576 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi142.front.sepia.ceph.com,smithi162.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T22:30:49.927 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi142.front.sepia.ceph.com'), Remote(name='ubuntu@smithi162.front.sepia.ceph.com')] 2024-04-15T22:30:49.928 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-04-15T22:30:49.929 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:30:50.024 DEBUG:teuthology.orchestra.run.smithi142:> true 2024-04-15T22:30:50.111 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-04-15T22:30:50.111 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-04-15T22:30:50.112 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:30:50.200 DEBUG:teuthology.orchestra.run.smithi162:> true 2024-04-15T22:30:50.290 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-04-15T22:30:50.291 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T22:30:50.302 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T22:30:50.302 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:30:50.303 DEBUG:teuthology.orchestra.run.smithi142:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:30:50.305 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:30:50.305 DEBUG:teuthology.orchestra.run.smithi162:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:30:50.335 INFO:teuthology.orchestra.run.smithi142.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T22:30:50.353 INFO:teuthology.orchestra.run.smithi142.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T22:30:50.364 INFO:teuthology.orchestra.run.smithi162.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T22:30:50.382 INFO:teuthology.orchestra.run.smithi162.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T22:30:50.384 INFO:teuthology.orchestra.run.smithi142.stderr:sudo: ntpd: command not found 2024-04-15T22:30:50.398 INFO:teuthology.orchestra.run.smithi142.stdout:506 Cannot talk to daemon 2024-04-15T22:30:50.414 INFO:teuthology.orchestra.run.smithi162.stderr:sudo: ntpd: command not found 2024-04-15T22:30:50.415 INFO:teuthology.orchestra.run.smithi142.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T22:30:50.428 INFO:teuthology.orchestra.run.smithi162.stdout:506 Cannot talk to daemon 2024-04-15T22:30:50.433 INFO:teuthology.orchestra.run.smithi142.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T22:30:50.446 INFO:teuthology.orchestra.run.smithi162.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T22:30:50.464 INFO:teuthology.orchestra.run.smithi162.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T22:30:50.493 INFO:teuthology.orchestra.run.smithi142.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:30:50.496 INFO:teuthology.orchestra.run.smithi142.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:30:50.497 INFO:teuthology.orchestra.run.smithi142.stdout:=============================================================================== 2024-04-15T22:30:50.497 INFO:teuthology.orchestra.run.smithi142.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:50.497 INFO:teuthology.orchestra.run.smithi142.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:50.497 INFO:teuthology.orchestra.run.smithi142.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:50.497 INFO:teuthology.orchestra.run.smithi142.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:50.524 INFO:teuthology.orchestra.run.smithi162.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:30:50.527 INFO:teuthology.orchestra.run.smithi162.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:30:50.528 INFO:teuthology.orchestra.run.smithi162.stdout:=============================================================================== 2024-04-15T22:30:50.528 INFO:teuthology.orchestra.run.smithi162.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:50.528 INFO:teuthology.orchestra.run.smithi162.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:50.528 INFO:teuthology.orchestra.run.smithi162.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:50.528 INFO:teuthology.orchestra.run.smithi162.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:50.529 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-15T22:30:50.539 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-15T22:30:50.540 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-04-15T22:30:50.540 DEBUG:teuthology.orchestra.run.smithi142:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:30:50.556 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-15T22:30:50.556 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_1 2024-04-15T22:30:50.611 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T22:30:50.612 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:30:50.612 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 5h/5d Inode: 665 Links: 1 2024-04-15T22:30:50.612 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:30:50.612 INFO:teuthology.orchestra.run.smithi142.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:30:50.612 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-04-15 22:30:48.919255921 +0000 2024-04-15T22:30:50.612 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-04-15 22:30:27.090669690 +0000 2024-04-15T22:30:50.612 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-04-15 22:30:27.090669690 +0000 2024-04-15T22:30:50.612 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: 2024-04-15 22:30:27.090669690 +0000 2024-04-15T22:30:50.612 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T22:30:50.679 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-04-15T22:30:50.680 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-04-15T22:30:50.680 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000196024 s, 2.6 MB/s 2024-04-15T22:30:50.681 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T22:30:50.737 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_2 2024-04-15T22:30:50.792 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T22:30:50.792 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:30:50.792 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 5h/5d Inode: 685 Links: 1 2024-04-15T22:30:50.792 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:30:50.792 INFO:teuthology.orchestra.run.smithi142.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:30:50.793 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-04-15 22:30:48.919255921 +0000 2024-04-15T22:30:50.793 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-04-15 22:30:27.432663208 +0000 2024-04-15T22:30:50.793 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-04-15 22:30:27.432663208 +0000 2024-04-15T22:30:50.793 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: 2024-04-15 22:30:27.432663208 +0000 2024-04-15T22:30:50.793 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T22:30:50.860 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-04-15T22:30:50.860 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-04-15T22:30:50.860 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000272011 s, 1.9 MB/s 2024-04-15T22:30:50.861 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T22:30:50.918 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_3 2024-04-15T22:30:50.974 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T22:30:50.974 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:30:50.974 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-04-15T22:30:50.975 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:30:50.975 INFO:teuthology.orchestra.run.smithi142.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:30:50.975 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-04-15 22:30:48.919255921 +0000 2024-04-15T22:30:50.975 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-04-15 22:30:27.775656706 +0000 2024-04-15T22:30:50.975 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-04-15 22:30:27.775656706 +0000 2024-04-15T22:30:50.975 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: 2024-04-15 22:30:27.775656706 +0000 2024-04-15T22:30:50.975 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T22:30:51.040 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-04-15T22:30:51.040 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-04-15T22:30:51.040 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000210374 s, 2.4 MB/s 2024-04-15T22:30:51.042 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T22:30:51.098 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_4 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-04-15 22:30:48.919255921 +0000 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-04-15 22:30:28.122650129 +0000 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-04-15 22:30:28.122650129 +0000 2024-04-15T22:30:51.154 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: 2024-04-15 22:30:28.122650129 +0000 2024-04-15T22:30:51.155 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T22:30:51.220 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-04-15T22:30:51.220 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-04-15T22:30:51.221 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000234853 s, 2.2 MB/s 2024-04-15T22:30:51.222 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T22:30:51.278 DEBUG:teuthology.orchestra.run.smithi142:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-15T22:30:51.425 INFO:teuthology.orchestra.run.smithi142.stdout:loop 2024-04-15T22:30:51.427 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_1... 2024-04-15T22:30:51.427 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-15T22:30:51.466 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-04-15T22:30:51.506 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_11 2024-04-15T22:30:51.538 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_2... 2024-04-15T22:30:51.538 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-15T22:30:51.619 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-04-15T22:30:51.658 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_21 2024-04-15T22:30:51.696 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_3... 2024-04-15T22:30:51.696 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-15T22:30:51.776 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-04-15T22:30:51.816 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_31 2024-04-15T22:30:51.845 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_4... 2024-04-15T22:30:51.845 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-15T22:30:51.926 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-04-15T22:30:51.965 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_41 2024-04-15T22:30:52.002 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-04-15T22:30:52.002 DEBUG:teuthology.orchestra.run.smithi142:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:30:52.059 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme list 2024-04-15T22:30:52.126 INFO:teuthology.orchestra.run.smithi142.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-15T22:30:52.127 INFO:teuthology.orchestra.run.smithi142.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-15T22:30:52.127 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme0n1 CVFT6303009Y400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-15T22:30:52.127 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme1n1 e3eee825c82ae0a8062f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:30:52.127 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme2n1 8f8f0af2553e9e17096c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:30:52.127 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme3n1 23a978a6daeadcc4d126 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:30:52.127 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme4n1 a2b0aed6e4513f681b54 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:30:52.128 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-15T22:30:52.128 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-04-15T22:30:52.128 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/scratch_devs 2024-04-15T22:30:52.196 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-04-15T22:30:52.197 DEBUG:teuthology.orchestra.run.smithi162:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:30:52.218 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-15T22:30:52.218 DEBUG:teuthology.orchestra.run.smithi162:> stat /dev/vg_nvme/lv_1 2024-04-15T22:30:52.279 INFO:teuthology.orchestra.run.smithi162.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T22:30:52.279 INFO:teuthology.orchestra.run.smithi162.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:30:52.279 INFO:teuthology.orchestra.run.smithi162.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-04-15T22:30:52.279 INFO:teuthology.orchestra.run.smithi162.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:30:52.279 INFO:teuthology.orchestra.run.smithi162.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:30:52.279 INFO:teuthology.orchestra.run.smithi162.stdout:Access: 2024-04-15 22:30:48.950546081 +0000 2024-04-15T22:30:52.280 INFO:teuthology.orchestra.run.smithi162.stdout:Modify: 2024-04-15 22:30:26.155018411 +0000 2024-04-15T22:30:52.280 INFO:teuthology.orchestra.run.smithi162.stdout:Change: 2024-04-15 22:30:26.155018411 +0000 2024-04-15T22:30:52.280 INFO:teuthology.orchestra.run.smithi162.stdout: Birth: 2024-04-15 22:30:26.155018411 +0000 2024-04-15T22:30:52.280 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T22:30:52.351 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records in 2024-04-15T22:30:52.352 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records out 2024-04-15T22:30:52.352 INFO:teuthology.orchestra.run.smithi162.stderr:512 bytes copied, 0.000194292 s, 2.6 MB/s 2024-04-15T22:30:52.353 DEBUG:teuthology.orchestra.run.smithi162:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T22:30:52.412 DEBUG:teuthology.orchestra.run.smithi162:> stat /dev/vg_nvme/lv_2 2024-04-15T22:30:52.468 INFO:teuthology.orchestra.run.smithi162.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T22:30:52.469 INFO:teuthology.orchestra.run.smithi162.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:30:52.469 INFO:teuthology.orchestra.run.smithi162.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-04-15T22:30:52.469 INFO:teuthology.orchestra.run.smithi162.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:30:52.469 INFO:teuthology.orchestra.run.smithi162.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:30:52.469 INFO:teuthology.orchestra.run.smithi162.stdout:Access: 2024-04-15 22:30:48.950546081 +0000 2024-04-15T22:30:52.469 INFO:teuthology.orchestra.run.smithi162.stdout:Modify: 2024-04-15 22:30:26.502011138 +0000 2024-04-15T22:30:52.469 INFO:teuthology.orchestra.run.smithi162.stdout:Change: 2024-04-15 22:30:26.502011138 +0000 2024-04-15T22:30:52.469 INFO:teuthology.orchestra.run.smithi162.stdout: Birth: 2024-04-15 22:30:26.502011138 +0000 2024-04-15T22:30:52.469 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T22:30:52.537 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records in 2024-04-15T22:30:52.538 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records out 2024-04-15T22:30:52.538 INFO:teuthology.orchestra.run.smithi162.stderr:512 bytes copied, 0.00020006 s, 2.6 MB/s 2024-04-15T22:30:52.539 DEBUG:teuthology.orchestra.run.smithi162:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T22:30:52.597 DEBUG:teuthology.orchestra.run.smithi162:> stat /dev/vg_nvme/lv_3 2024-04-15T22:30:52.653 INFO:teuthology.orchestra.run.smithi162.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T22:30:52.653 INFO:teuthology.orchestra.run.smithi162.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:30:52.653 INFO:teuthology.orchestra.run.smithi162.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-04-15T22:30:52.653 INFO:teuthology.orchestra.run.smithi162.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:30:52.653 INFO:teuthology.orchestra.run.smithi162.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:30:52.653 INFO:teuthology.orchestra.run.smithi162.stdout:Access: 2024-04-15 22:30:48.950546081 +0000 2024-04-15T22:30:52.654 INFO:teuthology.orchestra.run.smithi162.stdout:Modify: 2024-04-15 22:30:26.861003695 +0000 2024-04-15T22:30:52.654 INFO:teuthology.orchestra.run.smithi162.stdout:Change: 2024-04-15 22:30:26.861003695 +0000 2024-04-15T22:30:52.654 INFO:teuthology.orchestra.run.smithi162.stdout: Birth: 2024-04-15 22:30:26.861003695 +0000 2024-04-15T22:30:52.654 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T22:30:52.722 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records in 2024-04-15T22:30:52.722 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records out 2024-04-15T22:30:52.722 INFO:teuthology.orchestra.run.smithi162.stderr:512 bytes copied, 0.000278217 s, 1.8 MB/s 2024-04-15T22:30:52.723 DEBUG:teuthology.orchestra.run.smithi162:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T22:30:52.780 DEBUG:teuthology.orchestra.run.smithi162:> stat /dev/vg_nvme/lv_4 2024-04-15T22:30:52.836 INFO:teuthology.orchestra.run.smithi162.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T22:30:52.836 INFO:teuthology.orchestra.run.smithi162.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T22:30:52.837 INFO:teuthology.orchestra.run.smithi162.stdout:Device: 5h/5d Inode: 725 Links: 1 2024-04-15T22:30:52.837 INFO:teuthology.orchestra.run.smithi162.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T22:30:52.837 INFO:teuthology.orchestra.run.smithi162.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T22:30:52.837 INFO:teuthology.orchestra.run.smithi162.stdout:Access: 2024-04-15 22:30:48.950546081 +0000 2024-04-15T22:30:52.837 INFO:teuthology.orchestra.run.smithi162.stdout:Modify: 2024-04-15 22:30:27.215996341 +0000 2024-04-15T22:30:52.837 INFO:teuthology.orchestra.run.smithi162.stdout:Change: 2024-04-15 22:30:27.215996341 +0000 2024-04-15T22:30:52.837 INFO:teuthology.orchestra.run.smithi162.stdout: Birth: 2024-04-15 22:30:27.215996341 +0000 2024-04-15T22:30:52.837 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T22:30:52.904 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records in 2024-04-15T22:30:52.904 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records out 2024-04-15T22:30:52.904 INFO:teuthology.orchestra.run.smithi162.stderr:512 bytes copied, 0.000186517 s, 2.7 MB/s 2024-04-15T22:30:52.905 DEBUG:teuthology.orchestra.run.smithi162:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T22:30:52.962 DEBUG:teuthology.orchestra.run.smithi162:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-15T22:30:53.107 INFO:teuthology.orchestra.run.smithi162.stdout:loop 2024-04-15T22:30:53.109 INFO:tasks.nvme_loop:Connecting nvme_loop smithi162:/dev/vg_nvme/lv_1... 2024-04-15T22:30:53.109 DEBUG:teuthology.orchestra.run.smithi162:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-15T22:30:53.149 INFO:teuthology.orchestra.run.smithi162.stdout:1 2024-04-15T22:30:53.188 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/vg_nvme/lv_11 2024-04-15T22:30:53.231 INFO:tasks.nvme_loop:Connecting nvme_loop smithi162:/dev/vg_nvme/lv_2... 2024-04-15T22:30:53.232 DEBUG:teuthology.orchestra.run.smithi162:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-15T22:30:53.317 INFO:teuthology.orchestra.run.smithi162.stdout:1 2024-04-15T22:30:53.358 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/vg_nvme/lv_21 2024-04-15T22:30:53.390 INFO:tasks.nvme_loop:Connecting nvme_loop smithi162:/dev/vg_nvme/lv_3... 2024-04-15T22:30:53.390 DEBUG:teuthology.orchestra.run.smithi162:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-15T22:30:53.431 INFO:teuthology.orchestra.run.smithi162.stdout:1 2024-04-15T22:30:53.472 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/vg_nvme/lv_31 2024-04-15T22:30:53.503 INFO:tasks.nvme_loop:Connecting nvme_loop smithi162:/dev/vg_nvme/lv_4... 2024-04-15T22:30:53.503 DEBUG:teuthology.orchestra.run.smithi162:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-15T22:30:53.585 INFO:teuthology.orchestra.run.smithi162.stdout:1 2024-04-15T22:30:53.626 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/vg_nvme/lv_41 2024-04-15T22:30:53.658 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-04-15T22:30:53.658 DEBUG:teuthology.orchestra.run.smithi162:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T22:30:53.713 DEBUG:teuthology.orchestra.run.smithi162:> sudo nvme list 2024-04-15T22:30:53.782 INFO:teuthology.orchestra.run.smithi162.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-15T22:30:53.783 INFO:teuthology.orchestra.run.smithi162.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-15T22:30:53.783 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/nvme0n1 CVFT623300JU400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-15T22:30:53.783 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/nvme1n1 a37c87d45513049227ef Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:30:53.783 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/nvme2n1 488fd2d957d5ee8d6e54 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:30:53.783 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/nvme3n1 7aad8db9f3a04ebce1e0 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:30:53.783 INFO:teuthology.orchestra.run.smithi162.stdout:/dev/nvme4n1 c6cf98eceac7acb340e7 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T22:30:53.784 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-15T22:30:53.784 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-04-15T22:30:53.784 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/scratch_devs 2024-04-15T22:30:53.853 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T22:30:53.965 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T22:30:53.965 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:30:53.966 INFO:tasks.cephadm:Cluster fsid is d219ff2e-fb77-11ee-bc8f-c7b262605968 2024-04-15T22:30:53.966 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T22:30:53.966 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-15T22:30:53.966 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi142': '172.21.15.142', 'mon.smithi162': '172.21.15.162'} 2024-04-15T22:30:53.966 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T22:30:53.967 DEBUG:teuthology.orchestra.run.smithi142:> sudo hostname $(hostname -s) 2024-04-15T22:30:54.001 DEBUG:teuthology.orchestra.run.smithi162:> sudo hostname $(hostname -s) 2024-04-15T22:30:54.030 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T22:30:54.031 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:30:54.171 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54895/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2114-ga9a752df', 'node_name': '172.21.5.39+adami09', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2114.ga9a752df'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-14 16:04:37.608971', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2024-04-15T22:30:54.320 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 a9a752df26c63acad72e1b3569fd79a515ca0765 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:30:54.322 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm 2024-04-15T22:30:54.322 DEBUG:teuthology.orchestra.run.smithi142:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:30:54.792 INFO:teuthology.orchestra.run.smithi142.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 22:30 /home/ubuntu/cephtest/cephadm 2024-04-15T22:30:54.793 DEBUG:teuthology.orchestra.run.smithi162:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:30:55.269 INFO:teuthology.orchestra.run.smithi162.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 22:30 /home/ubuntu/cephtest/cephadm 2024-04-15T22:30:55.269 DEBUG:teuthology.orchestra.run.smithi142:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:30:55.286 DEBUG:teuthology.orchestra.run.smithi162:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:30:55.313 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 on all hosts... 2024-04-15T22:30:55.313 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:30:55.329 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:30:56.161 INFO:teuthology.orchestra.run.smithi142.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:30:56.217 INFO:teuthology.orchestra.run.smithi162.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:30:56.348 INFO:teuthology.orchestra.run.smithi142.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:30:56.349 INFO:teuthology.orchestra.run.smithi142.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:30:56.349 INFO:teuthology.orchestra.run.smithi142.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T22:30:56.349 INFO:teuthology.orchestra.run.smithi142.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:30:56.373 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:56.374 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi142 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:30:56.375 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T22:30:56.377 DEBUG:teuthology.misc:Transferring archived files from smithi142:/var/lib/ceph/d219ff2e-fb77-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592/remote/smithi142/crash 2024-04-15T22:30:56.378 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /var/lib/ceph/d219ff2e-fb77-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:30:56.378 INFO:teuthology.orchestra.run.smithi162.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:30:56.379 INFO:teuthology.orchestra.run.smithi162.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:30:56.379 INFO:teuthology.orchestra.run.smithi162.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T22:30:56.379 INFO:teuthology.orchestra.run.smithi162.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:30:56.418 INFO:teuthology.orchestra.run.smithi142.stderr:tar: /var/lib/ceph/d219ff2e-fb77-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:30:56.418 INFO:teuthology.orchestra.run.smithi142.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:30:56.420 DEBUG:teuthology.misc:Transferring archived files from smithi162:/var/lib/ceph/d219ff2e-fb77-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592/remote/smithi162/crash 2024-04-15T22:30:56.421 DEBUG:teuthology.orchestra.run.smithi162:> sudo tar c -f - -C /var/lib/ceph/d219ff2e-fb77-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:30:56.484 INFO:teuthology.orchestra.run.smithi162.stderr:tar: /var/lib/ceph/d219ff2e-fb77-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:30:56.485 INFO:teuthology.orchestra.run.smithi162.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:30:56.485 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T22:30:56.486 DEBUG:teuthology.orchestra.run.smithi142:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/d219ff2e-fb77-11ee-bc8f-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-15T22:30:56.515 INFO:teuthology.orchestra.run.smithi142.stderr:grep: /var/log/ceph/d219ff2e-fb77-11ee-bc8f-c7b262605968/ceph.log: No such file or directory 2024-04-15T22:30:56.516 INFO:tasks.cephadm:Compressing logs... 2024-04-15T22:30:56.516 DEBUG:teuthology.orchestra.run.smithi142:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T22:30:56.559 DEBUG:teuthology.orchestra.run.smithi162:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T22:30:56.585 INFO:teuthology.orchestra.run.smithi142.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose --: No such file or directory /var/log/ceph/cephadm.log 2024-04-15T22:30:56.585 INFO:teuthology.orchestra.run.smithi142.stderr: 2024-04-15T22:30:56.585 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/cephadm.log: 73.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:30:56.586 INFO:teuthology.orchestra.run.smithi162.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T22:30:56.586 INFO:teuthology.orchestra.run.smithi162.stderr:: No such file or directory 2024-04-15T22:30:56.587 INFO:teuthology.orchestra.run.smithi142.stderr: 2024-04-15T22:30:56.587 INFO:teuthology.orchestra.run.smithi142.stderr:real 0m0.016s 2024-04-15T22:30:56.587 INFO:teuthology.orchestra.run.smithi142.stderr:user 0m0.010s 2024-04-15T22:30:56.587 INFO:teuthology.orchestra.run.smithi142.stderr:sys 0m0.020s 2024-04-15T22:30:56.588 INFO:teuthology.orchestra.run.smithi162.stderr:/var/log/ceph/cephadm.log: 73.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:30:56.589 INFO:teuthology.orchestra.run.smithi162.stderr: 2024-04-15T22:30:56.589 INFO:teuthology.orchestra.run.smithi162.stderr:real 0m0.015s 2024-04-15T22:30:56.589 INFO:teuthology.orchestra.run.smithi162.stderr:user 0m0.012s 2024-04-15T22:30:56.589 INFO:teuthology.orchestra.run.smithi162.stderr:sys 0m0.016s 2024-04-15T22:30:56.589 INFO:tasks.cephadm:Archiving logs... 2024-04-15T22:30:56.589 DEBUG:teuthology.misc:Transferring archived files from smithi142:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592/remote/smithi142/log 2024-04-15T22:30:56.590 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:30:56.659 DEBUG:teuthology.misc:Transferring archived files from smithi162:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592/remote/smithi162/log 2024-04-15T22:30:56.660 DEBUG:teuthology.orchestra.run.smithi162:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:30:56.689 INFO:tasks.cephadm:Removing cluster... 2024-04-15T22:30:56.689 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d219ff2e-fb77-11ee-bc8f-c7b262605968 --force 2024-04-15T22:30:56.884 INFO:teuthology.orchestra.run.smithi142.stdout:Deleting cluster with fsid: d219ff2e-fb77-11ee-bc8f-c7b262605968 2024-04-15T22:30:57.001 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d219ff2e-fb77-11ee-bc8f-c7b262605968 --force 2024-04-15T22:30:57.179 INFO:teuthology.orchestra.run.smithi162.stdout:Deleting cluster with fsid: d219ff2e-fb77-11ee-bc8f-c7b262605968 2024-04-15T22:30:57.293 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T22:30:57.293 DEBUG:teuthology.orchestra.run.smithi142:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:30:57.308 DEBUG:teuthology.orchestra.run.smithi162:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:30:57.324 INFO:tasks.cephadm:Teardown complete 2024-04-15T22:30:57.325 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi142 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:30:57.535 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=4043ef14d2d847c79121d7976fb7ac1c Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi142 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:30:57.538 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T22:30:57.548 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-15T22:30:57.560 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_1... 2024-04-15T22:30:57.561 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_1 2024-04-15T22:30:57.704 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-15T22:30:57.705 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:57.706 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_2... 2024-04-15T22:30:57.706 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_2 2024-04-15T22:30:57.841 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-15T22:30:57.842 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:57.842 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_3... 2024-04-15T22:30:57.843 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_3 2024-04-15T22:30:57.985 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-15T22:30:57.986 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:57.986 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_4... 2024-04-15T22:30:57.987 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_4 2024-04-15T22:30:58.130 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-15T22:30:58.131 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:58.131 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-04-15T22:30:58.131 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/scratch_devs 2024-04-15T22:30:58.160 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi162:/dev/vg_nvme/lv_1... 2024-04-15T22:30:58.160 DEBUG:teuthology.orchestra.run.smithi162:> sudo nvme disconnect -n lv_1 2024-04-15T22:30:58.289 INFO:teuthology.orchestra.run.smithi162.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-15T22:30:58.290 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:58.291 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi162:/dev/vg_nvme/lv_2... 2024-04-15T22:30:58.291 DEBUG:teuthology.orchestra.run.smithi162:> sudo nvme disconnect -n lv_2 2024-04-15T22:30:58.433 INFO:teuthology.orchestra.run.smithi162.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-15T22:30:58.434 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:58.435 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi162:/dev/vg_nvme/lv_3... 2024-04-15T22:30:58.435 DEBUG:teuthology.orchestra.run.smithi162:> sudo nvme disconnect -n lv_3 2024-04-15T22:30:58.568 INFO:teuthology.orchestra.run.smithi162.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-15T22:30:58.569 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:58.570 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi162:/dev/vg_nvme/lv_4... 2024-04-15T22:30:58.570 DEBUG:teuthology.orchestra.run.smithi162:> sudo nvme disconnect -n lv_4 2024-04-15T22:30:58.703 INFO:teuthology.orchestra.run.smithi162.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-15T22:30:58.704 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:58.705 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-04-15T22:30:58.705 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/scratch_devs 2024-04-15T22:30:58.736 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T22:30:58.745 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T22:30:58.746 DEBUG:teuthology.orchestra.run.smithi142:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:30:58.749 DEBUG:teuthology.orchestra.run.smithi162:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:30:58.762 INFO:teuthology.orchestra.run.smithi142.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:30:58.766 INFO:teuthology.orchestra.run.smithi142.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:30:58.766 INFO:teuthology.orchestra.run.smithi142.stdout:=============================================================================== 2024-04-15T22:30:58.767 INFO:teuthology.orchestra.run.smithi142.stdout:^* hv01.front.sepia.ceph.com 3 6 17 2 +937us[ +955us] +/- 48ms 2024-04-15T22:30:58.767 INFO:teuthology.orchestra.run.smithi142.stdout:^+ hv02.front.sepia.ceph.com 3 6 17 1 -433us[ -433us] +/- 58ms 2024-04-15T22:30:58.767 INFO:teuthology.orchestra.run.smithi142.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 1 -850us[ -850us] +/- 72ms 2024-04-15T22:30:58.767 INFO:teuthology.orchestra.run.smithi142.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:58.791 INFO:teuthology.orchestra.run.smithi162.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:30:58.796 INFO:teuthology.orchestra.run.smithi162.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:30:58.797 INFO:teuthology.orchestra.run.smithi162.stdout:=============================================================================== 2024-04-15T22:30:58.797 INFO:teuthology.orchestra.run.smithi162.stdout:^* hv01.front.sepia.ceph.com 3 6 17 1 +954us[ +952us] +/- 48ms 2024-04-15T22:30:58.797 INFO:teuthology.orchestra.run.smithi162.stdout:^+ hv02.front.sepia.ceph.com 3 6 17 1 -442us[ -444us] +/- 58ms 2024-04-15T22:30:58.797 INFO:teuthology.orchestra.run.smithi162.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 2 -879us[ -881us] +/- 72ms 2024-04-15T22:30:58.798 INFO:teuthology.orchestra.run.smithi162.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:30:58.798 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T22:30:58.811 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T22:30:58.812 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T22:30:58.825 DEBUG:teuthology.orchestra.run.smithi142:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T22:30:58.894 DEBUG:teuthology.orchestra.run.smithi162:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T22:30:58.961 DEBUG:teuthology.orchestra.run.smithi142:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:30:58.993 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:58.993 DEBUG:teuthology.orchestra.run.smithi162:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:30:59.024 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:59.025 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T22:30:59.035 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T22:30:59.045 INFO:teuthology.task.internal:Duration was 267.868927 seconds 2024-04-15T22:30:59.045 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T22:30:59.056 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T22:30:59.056 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:30:59.060 DEBUG:teuthology.orchestra.run.smithi162:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:30:59.104 INFO:teuthology.orchestra.run.smithi142.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:30:59.110 INFO:teuthology.orchestra.run.smithi162.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:30:59.394 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T22:30:59.394 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi142.front.sepia.ceph.com 2024-04-15T22:30:59.394 DEBUG:teuthology.orchestra.run.smithi142:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T22:30:59.416 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi162.front.sepia.ceph.com 2024-04-15T22:30:59.416 DEBUG:teuthology.orchestra.run.smithi162:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T22:30:59.439 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T22:30:59.440 DEBUG:teuthology.orchestra.run.smithi142:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:30:59.459 DEBUG:teuthology.orchestra.run.smithi162:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:30:59.510 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T22:30:59.510 DEBUG:teuthology.orchestra.run.smithi142:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:30:59.528 DEBUG:teuthology.orchestra.run.smithi162:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:30:59.641 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T22:30:59.650 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T22:30:59.651 DEBUG:teuthology.orchestra.run.smithi142:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:30:59.683 DEBUG:teuthology.orchestra.run.smithi162:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:30:59.711 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T22:30:59.721 DEBUG:teuthology.orchestra.run.smithi142:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:30:59.725 DEBUG:teuthology.orchestra.run.smithi162:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:30:59.749 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern = core 2024-04-15T22:30:59.778 INFO:teuthology.orchestra.run.smithi162.stdout:kernel.core_pattern = core 2024-04-15T22:30:59.821 DEBUG:teuthology.orchestra.run.smithi142:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:30:59.836 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:59.836 DEBUG:teuthology.orchestra.run.smithi162:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:30:59.876 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:30:59.876 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T22:30:59.887 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T22:30:59.887 DEBUG:teuthology.misc:Transferring archived files from smithi142:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592/remote/smithi142 2024-04-15T22:30:59.888 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:30:59.925 DEBUG:teuthology.misc:Transferring archived files from smithi162:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592/remote/smithi162 2024-04-15T22:30:59.925 DEBUG:teuthology.orchestra.run.smithi162:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:30:59.962 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T22:30:59.962 DEBUG:teuthology.orchestra.run.smithi142:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:30:59.964 DEBUG:teuthology.orchestra.run.smithi162:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:31:00.012 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T22:31:00.023 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T22:31:00.023 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T22:31:00.033 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T22:31:00.033 DEBUG:teuthology.orchestra.run.smithi142:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:31:00.036 DEBUG:teuthology.orchestra.run.smithi162:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:31:00.048 INFO:teuthology.orchestra.run.smithi142.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:30 /home/ubuntu/cephtest 2024-04-15T22:31:00.068 INFO:teuthology.orchestra.run.smithi162.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:31 /home/ubuntu/cephtest 2024-04-15T22:31:00.069 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T22:31:00.078 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T22:31:00.113 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T22:31:00.138 DEBUG:teuthology.nuke:shortname: smithi142 2024-04-15T22:31:00.138 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:31:00.161 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi142.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 22:16:49.082105', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLuiis66eLRuxVt9E2GfOASoO0tj11vA2eZLBjW7Yvn1+7lZJf6ugTD21EopXzB5oDlgt6funItavnDaMKdX/10='} 2024-04-15T22:31:00.164 DEBUG:teuthology.nuke:shortname: smithi162 2024-04-15T22:31:00.165 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:31:00.183 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi162.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657592', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 22:16:49.083634', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCxcIKIuMTwTizZLsJwqHYSrrFLvFjG+VTlAfCYLyLgxXKwDEkpwpmYv1mzt1bJDpxbfup/rgXWL52OPlNd+vOY='} 2024-04-15T22:31:00.215 INFO:teuthology.orchestra.console.smithi142:Power off 2024-04-15T22:31:00.215 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:31:00.240 DEBUG:teuthology.orchestra.console.smithi142:power off output: Chassis Power Control: Down/Off 2024-04-15T22:31:00.240 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:31:00.256 INFO:teuthology.orchestra.console.smithi162:Power off 2024-04-15T22:31:00.257 DEBUG:teuthology.orchestra.console.smithi162:pexpect command: ipmitool -H smithi162.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:31:00.266 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is on 2024-04-15T22:31:00.279 DEBUG:teuthology.orchestra.console.smithi162:power off output: Chassis Power Control: Down/Off 2024-04-15T22:31:00.279 DEBUG:teuthology.orchestra.console.smithi162:pexpect command: ipmitool -H smithi162.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:31:00.312 DEBUG:teuthology.orchestra.console.smithi162:check power output: Chassis Power is on 2024-04-15T22:31:04.267 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:31:04.313 DEBUG:teuthology.orchestra.console.smithi162:pexpect command: ipmitool -H smithi162.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:31:04.381 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is on 2024-04-15T22:31:04.424 DEBUG:teuthology.orchestra.console.smithi162:check power output: Chassis Power is on 2024-04-15T22:31:08.383 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:31:08.426 DEBUG:teuthology.orchestra.console.smithi162:pexpect command: ipmitool -H smithi162.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:31:08.497 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is off 2024-04-15T22:31:08.536 DEBUG:teuthology.orchestra.console.smithi162:check power output: Chassis Power is off 2024-04-15T22:31:08.599 INFO:teuthology.orchestra.console.smithi142:Power off completed 2024-04-15T22:31:08.637 INFO:teuthology.orchestra.console.smithi162:Power off completed 2024-04-15T22:31:08.742 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: 267.86892676353455 failure_reason: 'Command failed on smithi142 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull''' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=4043ef14d2d847c79121d7976fb7ac1c status: fail success: false 2024-04-15T22:31:08.742 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T22:31:08.828 INFO:teuthology.run:FAIL