2024-04-15T21:32:48.894 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T21:32:48.894 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472 --owner scheduled_teuthology@teuthology --description orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --name teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi --verbose -- /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472/orig.config.yaml 2024-04-15T21:32:48.928 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:32:49.020 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7657472' 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: smithi022.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAW5XCxZPzDHbvp6UJ0LV/X0xSePXZqEZ1+beouV91ydLvOi9V3mj+spaLRuq5IRImUwi7YvG7xeJoTJY9vUx2A= smithi044.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJ1X7VxNu+r5v899gW4DjI8gbwN/FEw5TVPwF8T02p+Z/LO7fModq3R6HFjbxU2DAwipVtFoG5rVeKmAV7vZldk= 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 --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-15_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T21:32:49.020 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa; will attempt to use it 2024-04-15T21:32:49.020 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks 2024-04-15T21:32:49.021 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T21:32:49.022 INFO:teuthology.task.internal:Checking packages... 2024-04-15T21:32:49.047 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'a9a752df26c63acad72e1b3569fd79a515ca0765' 2024-04-15T21:32:49.047 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T21:32:49.047 INFO:teuthology.packaging:ref: None 2024-04-15T21:32:49.047 INFO:teuthology.packaging:tag: None 2024-04-15T21:32:49.047 INFO:teuthology.packaging:branch: squid 2024-04-15T21:32:49.047 INFO:teuthology.packaging:sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:32:49.047 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-04-15T21:32:49.320 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2114.ga9a752df 2024-04-15T21:32:49.322 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T21:32:49.329 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T21:32:49.329 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T21:32:49.436 INFO:teuthology.task.internal:Saving configuration 2024-04-15T21:32:49.450 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T21:32:49.471 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:32:49.494 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi022.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:27:55.841544', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAW5XCxZPzDHbvp6UJ0LV/X0xSePXZqEZ1+beouV91ydLvOi9V3mj+spaLRuq5IRImUwi7YvG7xeJoTJY9vUx2A='} 2024-04-15T21:32:49.519 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi044.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:27:55.839860', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJ1X7VxNu+r5v899gW4DjI8gbwN/FEw5TVPwF8T02p+Z/LO7fModq3R6HFjbxU2DAwipVtFoG5rVeKmAV7vZldk='} 2024-04-15T21:32:49.519 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T21:32:49.538 INFO:teuthology.task.internal:roles: ubuntu@smithi022.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-15T21:32:49.538 INFO:teuthology.task.internal:roles: ubuntu@smithi044.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-15T21:32:49.538 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T21:32:49.627 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f1f0ed7eee0>, signals=[15]) 2024-04-15T21:32:49.628 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T21:32:49.636 INFO:teuthology.task.internal:Opening connections... 2024-04-15T21:32:49.636 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi022.front.sepia.ceph.com 2024-04-15T21:32:49.637 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi022.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:32:49.760 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi044.front.sepia.ceph.com 2024-04-15T21:32:49.762 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:32:49.869 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T21:32:49.877 DEBUG:teuthology.orchestra.run.smithi022:> uname -m 2024-04-15T21:32:49.895 INFO:teuthology.orchestra.run.smithi022.stdout:x86_64 2024-04-15T21:32:49.896 DEBUG:teuthology.orchestra.run.smithi022:> cat /etc/os-release 2024-04-15T21:32:49.953 INFO:teuthology.orchestra.run.smithi022.stdout:NAME="CentOS Stream" 2024-04-15T21:32:49.953 INFO:teuthology.orchestra.run.smithi022.stdout:VERSION="9" 2024-04-15T21:32:49.953 INFO:teuthology.orchestra.run.smithi022.stdout:ID="centos" 2024-04-15T21:32:49.953 INFO:teuthology.orchestra.run.smithi022.stdout:ID_LIKE="rhel fedora" 2024-04-15T21:32:49.953 INFO:teuthology.orchestra.run.smithi022.stdout:VERSION_ID="9" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:PLATFORM_ID="platform:el9" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:ANSI_COLOR="0;31" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:LOGO="fedora-logo-icon" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:HOME_URL="https://centos.org/" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T21:32:49.954 INFO:teuthology.orchestra.run.smithi022.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T21:32:49.955 INFO:teuthology.lock.ops:Updating smithi022.front.sepia.ceph.com on lock server 2024-04-15T21:32:49.978 DEBUG:teuthology.orchestra.run.smithi044:> uname -m 2024-04-15T21:32:49.996 INFO:teuthology.orchestra.run.smithi044.stdout:x86_64 2024-04-15T21:32:49.996 DEBUG:teuthology.orchestra.run.smithi044:> cat /etc/os-release 2024-04-15T21:32:50.054 INFO:teuthology.orchestra.run.smithi044.stdout:NAME="CentOS Stream" 2024-04-15T21:32:50.054 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION="9" 2024-04-15T21:32:50.054 INFO:teuthology.orchestra.run.smithi044.stdout:ID="centos" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:ID_LIKE="rhel fedora" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:VERSION_ID="9" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:PLATFORM_ID="platform:el9" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:ANSI_COLOR="0;31" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:LOGO="fedora-logo-icon" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:HOME_URL="https://centos.org/" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T21:32:50.055 INFO:teuthology.orchestra.run.smithi044.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T21:32:50.056 INFO:teuthology.lock.ops:Updating smithi044.front.sepia.ceph.com on lock server 2024-04-15T21:32:50.078 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T21:32:50.088 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T21:32:50.139 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T21:32:50.139 DEBUG:teuthology.orchestra.run.smithi022:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:32:50.142 DEBUG:teuthology.orchestra.run.smithi044:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:32:50.159 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T21:32:50.194 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T21:32:50.194 DEBUG:teuthology.orchestra.run.smithi022:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:32:50.199 DEBUG:teuthology.orchestra.run.smithi044:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:32:50.231 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T21:32:50.291 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T21:32:50.320 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T21:32:50.320 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-15T21:32:50.320 DEBUG:teuthology.orchestra.run.smithi022:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:32:50.321 DEBUG:teuthology.orchestra.run.smithi044:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:32:50.337 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:32:50.338 DEBUG:teuthology.orchestra.run.smithi022:> uname -r 2024-04-15T21:32:50.339 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:32:50.339 DEBUG:teuthology.orchestra.run.smithi044:> uname -r 2024-04-15T21:32:50.397 INFO:teuthology.orchestra.run.smithi022.stdout:5.14.0-361.el9.x86_64 2024-04-15T21:32:50.397 INFO:teuthology.task.kernel:Running kernel on smithi022: 5.14.0-361.el9.x86_64 2024-04-15T21:32:50.398 DEBUG:teuthology.orchestra.run.smithi022:> sudo yum install -y kernel 2024-04-15T21:32:50.399 INFO:teuthology.orchestra.run.smithi044.stdout:5.14.0-361.el9.x86_64 2024-04-15T21:32:50.399 INFO:teuthology.task.kernel:Running kernel on smithi044: 5.14.0-361.el9.x86_64 2024-04-15T21:32:50.399 DEBUG:teuthology.orchestra.run.smithi044:> sudo yum install -y kernel 2024-04-15T21:32:53.151 INFO:teuthology.orchestra.run.smithi022.stdout:CentOS-9 - AppStream 6.4 MB/s | 6.7 MB 00:01 2024-04-15T21:32:53.388 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS-9 - AppStream 4.8 MB/s | 6.7 MB 00:01 2024-04-15T21:32:54.851 INFO:teuthology.orchestra.run.smithi022.stdout:CentOS-9 - BaseOS 3.7 MB/s | 2.0 MB 00:00 2024-04-15T21:32:55.063 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS-9 - BaseOS 3.9 MB/s | 2.0 MB 00:00 2024-04-15T21:32:57.044 INFO:teuthology.orchestra.run.smithi022.stdout:CentOS Stream 9 - BaseOS 4.4 MB/s | 8.0 MB 00:01 2024-04-15T21:32:57.056 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - BaseOS 4.9 MB/s | 8.0 MB 00:01 2024-04-15T21:33:12.570 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - AppStream 1.3 MB/s | 19 MB 00:14 2024-04-15T21:33:16.987 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - CRB 8.0 MB/s | 6.2 MB 00:00 2024-04-15T21:33:18.822 INFO:teuthology.orchestra.run.smithi044.stdout:CentOS Stream 9 - Extras packages 26 kB/s | 16 kB 00:00 2024-04-15T21:33:20.739 INFO:teuthology.orchestra.run.smithi044.stdout:Extra Packages for Enterprise Linux 12 MB/s | 21 MB 00:01 2024-04-15T21:33:21.789 INFO:teuthology.orchestra.run.smithi022.stdout:CentOS Stream 9 - AppStream 821 kB/s | 19 MB 00:23 2024-04-15T21:33:25.990 INFO:teuthology.orchestra.run.smithi044.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-04-15T21:33:26.181 INFO:teuthology.orchestra.run.smithi022.stdout:CentOS Stream 9 - CRB 9.1 MB/s | 6.2 MB 00:00 2024-04-15T21:33:27.724 INFO:teuthology.orchestra.run.smithi022.stdout:CentOS Stream 9 - Extras packages 50 kB/s | 16 kB 00:00 2024-04-15T21:33:28.464 INFO:teuthology.orchestra.run.smithi044.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T21:33:28.464 INFO:teuthology.orchestra.run.smithi044.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T21:33:28.554 INFO:teuthology.orchestra.run.smithi044.stdout:Dependencies resolved. 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout: Package Arch Version Repository Size 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout:Installing: 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout:Installing dependencies: 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction Summary 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout:================================================================================ 2024-04-15T21:33:28.563 INFO:teuthology.orchestra.run.smithi044.stdout:Install 4 Packages 2024-04-15T21:33:28.564 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-15T21:33:28.564 INFO:teuthology.orchestra.run.smithi044.stdout:Total download size: 77 M 2024-04-15T21:33:28.564 INFO:teuthology.orchestra.run.smithi044.stdout:Installed size: 123 M 2024-04-15T21:33:28.564 INFO:teuthology.orchestra.run.smithi044.stdout:Downloading Packages: 2024-04-15T21:33:28.774 INFO:teuthology.orchestra.run.smithi044.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.3 MB/s | 277 kB 00:00 2024-04-15T21:33:29.342 INFO:teuthology.orchestra.run.smithi044.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 20 MB/s | 15 MB 00:00 2024-04-15T21:33:29.376 INFO:teuthology.orchestra.run.smithi022.stdout:Extra Packages for Enterprise Linux 14 MB/s | 21 MB 00:01 2024-04-15T21:33:29.867 INFO:teuthology.orchestra.run.smithi044.stdout:(3/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 26 MB/s | 34 MB 00:01 2024-04-15T21:33:30.442 INFO:teuthology.orchestra.run.smithi044.stdout:(4/4): kernel-modules-core-5.14.0-438.el9.x86_6 17 MB/s | 28 MB 00:01 2024-04-15T21:33:30.445 INFO:teuthology.orchestra.run.smithi044.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:33:30.445 INFO:teuthology.orchestra.run.smithi044.stdout:Total 41 MB/s | 77 MB 00:01 2024-04-15T21:33:30.445 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction check 2024-04-15T21:33:30.869 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction check succeeded. 2024-04-15T21:33:30.869 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction test 2024-04-15T21:33:31.755 INFO:teuthology.orchestra.run.smithi044.stdout:Transaction test succeeded. 2024-04-15T21:33:31.755 INFO:teuthology.orchestra.run.smithi044.stdout:Running transaction 2024-04-15T21:33:34.207 INFO:teuthology.orchestra.run.smithi044.stdout: Preparing : 1/1 2024-04-15T21:33:34.584 INFO:teuthology.orchestra.run.smithi022.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-04-15T21:33:34.846 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:33:34.943 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:33:37.049 INFO:teuthology.orchestra.run.smithi022.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T21:33:37.050 INFO:teuthology.orchestra.run.smithi022.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T21:33:37.143 INFO:teuthology.orchestra.run.smithi022.stdout:Dependencies resolved. 2024-04-15T21:33:37.155 INFO:teuthology.orchestra.run.smithi022.stdout:================================================================================ 2024-04-15T21:33:37.155 INFO:teuthology.orchestra.run.smithi022.stdout: Package Arch Version Repository Size 2024-04-15T21:33:37.155 INFO:teuthology.orchestra.run.smithi022.stdout:================================================================================ 2024-04-15T21:33:37.155 INFO:teuthology.orchestra.run.smithi022.stdout:Installing: 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout:Installing dependencies: 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout: 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout:Transaction Summary 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout:================================================================================ 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout:Install 4 Packages 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout: 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout:Total download size: 77 M 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout:Installed size: 123 M 2024-04-15T21:33:37.156 INFO:teuthology.orchestra.run.smithi022.stdout:Downloading Packages: 2024-04-15T21:33:37.327 INFO:teuthology.orchestra.run.smithi022.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.6 MB/s | 277 kB 00:00 2024-04-15T21:33:37.859 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:33:37.860 INFO:teuthology.orchestra.run.smithi022.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 22 MB/s | 15 MB 00:00 2024-04-15T21:33:37.988 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:33:38.561 INFO:teuthology.orchestra.run.smithi022.stdout:(3/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 24 MB/s | 34 MB 00:01 2024-04-15T21:33:38.819 INFO:teuthology.orchestra.run.smithi022.stdout:(4/4): kernel-modules-core-5.14.0-438.el9.x86_6 19 MB/s | 28 MB 00:01 2024-04-15T21:33:38.822 INFO:teuthology.orchestra.run.smithi022.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:33:38.823 INFO:teuthology.orchestra.run.smithi022.stdout:Total 46 MB/s | 77 MB 00:01 2024-04-15T21:33:38.823 INFO:teuthology.orchestra.run.smithi022.stdout:Running transaction check 2024-04-15T21:33:39.272 INFO:teuthology.orchestra.run.smithi022.stdout:Transaction check succeeded. 2024-04-15T21:33:39.272 INFO:teuthology.orchestra.run.smithi022.stdout:Running transaction test 2024-04-15T21:33:40.142 INFO:teuthology.orchestra.run.smithi022.stdout:Transaction test succeeded. 2024-04-15T21:33:40.142 INFO:teuthology.orchestra.run.smithi022.stdout:Running transaction 2024-04-15T21:33:42.626 INFO:teuthology.orchestra.run.smithi022.stdout: Preparing : 1/1 2024-04-15T21:33:43.056 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:33:43.104 INFO:teuthology.orchestra.run.smithi044.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:33:43.245 INFO:teuthology.orchestra.run.smithi022.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:33:43.336 INFO:teuthology.orchestra.run.smithi022.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:33:46.208 INFO:teuthology.orchestra.run.smithi022.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:33:46.397 INFO:teuthology.orchestra.run.smithi022.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:33:48.208 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:33:51.478 INFO:teuthology.orchestra.run.smithi022.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:33:51.524 INFO:teuthology.orchestra.run.smithi022.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:33:56.619 INFO:teuthology.orchestra.run.smithi022.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:18.947 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:18.947 INFO:teuthology.orchestra.run.smithi044.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T21:34:18.947 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-15T21:34:18.992 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:19.391 INFO:teuthology.orchestra.run.smithi044.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:19.391 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:34:19.391 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:34:19.392 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:34:19.819 INFO:teuthology.orchestra.run.smithi044.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:19.819 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-15T21:34:19.820 INFO:teuthology.orchestra.run.smithi044.stdout:Installed: 2024-04-15T21:34:19.820 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T21:34:19.820 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T21:34:19.820 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T21:34:19.820 INFO:teuthology.orchestra.run.smithi044.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T21:34:19.820 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-15T21:34:19.820 INFO:teuthology.orchestra.run.smithi044.stdout:Complete! 2024-04-15T21:34:20.185 DEBUG:teuthology.orchestra.run.smithi044:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:34:20.300 INFO:teuthology.orchestra.run.smithi044.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:34:20.300 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:34:20.300 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-15T21:34:20.301 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:34:20.301 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:34:20.301 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T21:34:20.301 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi044.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:34:20.301 DEBUG:teuthology.orchestra.run.smithi044:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:34:20.385 INFO:teuthology.orchestra.run.smithi044.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:34:20.385 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:34:20.386 DEBUG:teuthology.orchestra.run.smithi044:> sudo rpm -qi grub2-tools 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:Name : grub2-tools 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:Epoch : 1 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:Version : 2.06 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:Release : 68.el9 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:Architecture: x86_64 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:Group : Unspecified 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:Size : 8264254 2024-04-15T21:34:20.424 INFO:teuthology.orchestra.run.smithi044.stdout:License : GPLv3+ 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:Packager : builder@centos.org 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:Vendor : CentOS 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:Summary : Support tools for GRUB. 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:Description : 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout:hardware devices. 2024-04-15T21:34:20.425 INFO:teuthology.orchestra.run.smithi044.stdout: 2024-04-15T21:34:20.426 INFO:teuthology.orchestra.run.smithi044.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T21:34:20.426 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T21:34:20.427 INFO:teuthology.task.kernel:Updating grub on smithi044 to boot 5.14.0-438.el9.x86_64 2024-04-15T21:34:20.427 DEBUG:teuthology.orchestra.run.smithi044:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T21:34:21.123 INFO:teuthology.orchestra.run.smithi044.stderr:Generating grub configuration file ... 2024-04-15T21:34:22.531 INFO:teuthology.orchestra.run.smithi044.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T21:34:22.565 INFO:teuthology.orchestra.run.smithi044.stderr:done 2024-04-15T21:34:22.568 DEBUG:teuthology.orchestra.run.smithi044:> mktemp 2024-04-15T21:34:22.583 INFO:teuthology.orchestra.run.smithi044.stdout:/tmp/tmp.MSSd7DLtwc 2024-04-15T21:34:22.583 DEBUG:teuthology.orchestra.run.smithi044:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.MSSd7DLtwc 2024-04-15T21:34:22.655 DEBUG:teuthology.orchestra.run.smithi044:> sudo chmod 0666 /tmp/tmp.MSSd7DLtwc 2024-04-15T21:34:22.795 DEBUG:teuthology.orchestra.remote:smithi044:/tmp/tmp.MSSd7DLtwc is 6KB 2024-04-15T21:34:22.843 DEBUG:teuthology.orchestra.run.smithi044:> rm -fr /tmp/tmp.MSSd7DLtwc 2024-04-15T21:34:22.858 DEBUG:teuthology.orchestra.run.smithi044:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T21:34:22.934 INFO:teuthology.orchestra.run.smithi044.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T21:34:22.934 INFO:teuthology.orchestra.run.smithi044.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T21:34:22.934 INFO:teuthology.orchestra.run.smithi044.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T21:34:22.934 INFO:teuthology.orchestra.run.smithi044.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T21:34:22.935 DEBUG:teuthology.orchestra.run.smithi044:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T21:34:23.087 DEBUG:teuthology.orchestra.run.smithi044:> sudo shutdown -r now 2024-04-15T21:34:27.618 INFO:teuthology.orchestra.run.smithi022.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:27.618 INFO:teuthology.orchestra.run.smithi022.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T21:34:27.618 INFO:teuthology.orchestra.run.smithi022.stdout: 2024-04-15T21:34:27.664 INFO:teuthology.orchestra.run.smithi022.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:28.038 INFO:teuthology.orchestra.run.smithi022.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:28.038 INFO:teuthology.orchestra.run.smithi022.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:34:28.038 INFO:teuthology.orchestra.run.smithi022.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:34:28.039 INFO:teuthology.orchestra.run.smithi022.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout: 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout:Installed: 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout: 2024-04-15T21:34:28.445 INFO:teuthology.orchestra.run.smithi022.stdout:Complete! 2024-04-15T21:34:28.792 DEBUG:teuthology.orchestra.run.smithi022:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:34:28.895 INFO:teuthology.orchestra.run.smithi022.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:34:28.896 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:34:28.896 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-15T21:34:28.896 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:34:28.896 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:34:28.896 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T21:34:28.896 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi022.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:34:28.896 DEBUG:teuthology.orchestra.run.smithi022:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:34:28.979 INFO:teuthology.orchestra.run.smithi022.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:34:28.979 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:34:28.979 DEBUG:teuthology.orchestra.run.smithi022:> sudo rpm -qi grub2-tools 2024-04-15T21:34:29.023 INFO:teuthology.orchestra.run.smithi022.stdout:Name : grub2-tools 2024-04-15T21:34:29.023 INFO:teuthology.orchestra.run.smithi022.stdout:Epoch : 1 2024-04-15T21:34:29.023 INFO:teuthology.orchestra.run.smithi022.stdout:Version : 2.06 2024-04-15T21:34:29.023 INFO:teuthology.orchestra.run.smithi022.stdout:Release : 68.el9 2024-04-15T21:34:29.023 INFO:teuthology.orchestra.run.smithi022.stdout:Architecture: x86_64 2024-04-15T21:34:29.023 INFO:teuthology.orchestra.run.smithi022.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T21:34:29.023 INFO:teuthology.orchestra.run.smithi022.stdout:Group : Unspecified 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Size : 8264254 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:License : GPLv3+ 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Packager : builder@centos.org 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Vendor : CentOS 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Summary : Support tools for GRUB. 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:Description : 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout: 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T21:34:29.024 INFO:teuthology.orchestra.run.smithi022.stdout:hardware devices. 2024-04-15T21:34:29.025 INFO:teuthology.orchestra.run.smithi022.stdout: 2024-04-15T21:34:29.025 INFO:teuthology.orchestra.run.smithi022.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T21:34:29.025 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T21:34:29.025 INFO:teuthology.task.kernel:Updating grub on smithi022 to boot 5.14.0-438.el9.x86_64 2024-04-15T21:34:29.026 DEBUG:teuthology.orchestra.run.smithi022:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T21:34:29.619 INFO:teuthology.orchestra.run.smithi022.stderr:Generating grub configuration file ... 2024-04-15T21:34:31.042 INFO:teuthology.orchestra.run.smithi022.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T21:34:31.093 INFO:teuthology.orchestra.run.smithi022.stderr:done 2024-04-15T21:34:31.095 DEBUG:teuthology.orchestra.run.smithi022:> mktemp 2024-04-15T21:34:31.110 INFO:teuthology.orchestra.run.smithi022.stdout:/tmp/tmp.EDdJSWzHN6 2024-04-15T21:34:31.114 DEBUG:teuthology.orchestra.run.smithi022:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.EDdJSWzHN6 2024-04-15T21:34:31.183 DEBUG:teuthology.orchestra.run.smithi022:> sudo chmod 0666 /tmp/tmp.EDdJSWzHN6 2024-04-15T21:34:31.327 DEBUG:teuthology.orchestra.remote:smithi022:/tmp/tmp.EDdJSWzHN6 is 6KB 2024-04-15T21:34:31.375 DEBUG:teuthology.orchestra.run.smithi022:> rm -fr /tmp/tmp.EDdJSWzHN6 2024-04-15T21:34:31.390 DEBUG:teuthology.orchestra.run.smithi022:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T21:34:31.458 INFO:teuthology.orchestra.run.smithi022.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T21:34:31.458 INFO:teuthology.orchestra.run.smithi022.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T21:34:31.458 INFO:teuthology.orchestra.run.smithi022.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T21:34:31.459 INFO:teuthology.orchestra.run.smithi022.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T21:34:31.460 DEBUG:teuthology.orchestra.run.smithi022:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T21:34:31.615 DEBUG:teuthology.orchestra.run.smithi022:> sudo shutdown -r now 2024-04-15T21:34:53.110 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T21:34:53.111 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-15T21:34:53.112 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:35:01.624 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T21:35:01.624 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi022.front.sepia.ceph.com' 2024-04-15T21:35:01.625 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi022.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:35:11.647 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.44 2024-04-15T21:35:20.094 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.22 2024-04-15T21:35:20.648 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-15T21:35:20.649 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:35:29.102 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi022.front.sepia.ceph.com' 2024-04-15T21:35:29.103 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi022.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:36:20.703 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T21:36:29.114 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T21:36:32.708 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-15T21:36:32.710 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:36:33.083 DEBUG:teuthology.orchestra.run.smithi044:> true 2024-04-15T21:36:33.463 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-15T21:36:33.463 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-438.el9.x86_64"... 2024-04-15T21:36:33.463 DEBUG:teuthology.orchestra.run.smithi044:> uname -r 2024-04-15T21:36:33.479 INFO:teuthology.orchestra.run.smithi044.stdout:5.14.0-438.el9.x86_64 2024-04-15T21:36:33.479 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-15T21:36:33.479 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T21:36:33.479 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T21:36:34.480 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T21:36:34.480 DEBUG:teuthology.orchestra.run.smithi044:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T21:36:34.550 INFO:teuthology.orchestra.run.smithi044.stdout:ttyS1 2024-04-15T21:36:34.588 DEBUG:teuthology.parallel:result is None 2024-04-15T21:36:41.114 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi022.front.sepia.ceph.com' 2024-04-15T21:36:41.115 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi022.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:36:41.475 DEBUG:teuthology.orchestra.run.smithi022:> true 2024-04-15T21:36:41.850 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi022.front.sepia.ceph.com' 2024-04-15T21:36:41.850 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-438.el9.x86_64"... 2024-04-15T21:36:41.850 DEBUG:teuthology.orchestra.run.smithi022:> uname -r 2024-04-15T21:36:41.866 INFO:teuthology.orchestra.run.smithi022.stdout:5.14.0-438.el9.x86_64 2024-04-15T21:36:41.867 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-15T21:36:41.867 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T21:36:41.867 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T21:36:42.867 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T21:36:42.868 DEBUG:teuthology.orchestra.run.smithi022:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T21:36:42.958 INFO:teuthology.orchestra.run.smithi022.stdout:ttyS1 2024-04-15T21:36:42.991 DEBUG:teuthology.parallel:result is None 2024-04-15T21:36:42.992 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T21:36:43.002 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T21:36:43.002 DEBUG:teuthology.orchestra.run.smithi022:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T21:36:43.005 DEBUG:teuthology.orchestra.run.smithi044:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T21:36:43.024 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T21:36:43.136 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T21:36:43.227 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T21:36:43.228 DEBUG:teuthology.orchestra.run.smithi022:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T21:36:43.230 DEBUG:teuthology.orchestra.run.smithi044:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T21:36:43.261 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T21:36:43.304 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T21:36:43.304 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:36:43.306 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:36:43.342 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:36:43.343 INFO:teuthology.orchestra.run.smithi022.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:36:43.357 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:36:43.358 INFO:teuthology.orchestra.run.smithi022.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T21:36:43.360 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T21:36:43.404 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T21:36:43.404 DEBUG:teuthology.orchestra.run.smithi022:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T21:36:43.407 DEBUG:teuthology.orchestra.run.smithi044:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T21:36:43.438 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T21:36:43.490 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T21:36:43.491 DEBUG:teuthology.orchestra.run.smithi022:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T21:36:43.493 DEBUG:teuthology.orchestra.run.smithi044:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T21:36:43.509 DEBUG:teuthology.orchestra.run.smithi022:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:36:43.594 DEBUG:teuthology.orchestra.run.smithi022:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:36:43.644 DEBUG:teuthology.orchestra.run.smithi022:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:36:43.728 DEBUG:teuthology.orchestra.run.smithi022:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:36:43.773 DEBUG:teuthology.orchestra.run.smithi022:> set -ex 2024-04-15T21:36:43.773 DEBUG:teuthology.orchestra.run.smithi022:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T21:36:43.843 DEBUG:teuthology.orchestra.run.smithi044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:36:43.887 DEBUG:teuthology.orchestra.run.smithi044:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T21:36:43.947 DEBUG:teuthology.orchestra.run.smithi044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:36:44.032 DEBUG:teuthology.orchestra.run.smithi044:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T21:36:44.078 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-15T21:36:44.104 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T21:36:44.149 DEBUG:teuthology.orchestra.run.smithi022:> sudo service rsyslog restart 2024-04-15T21:36:44.152 DEBUG:teuthology.orchestra.run.smithi044:> sudo service rsyslog restart 2024-04-15T21:36:44.199 INFO:teuthology.orchestra.run.smithi022.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T21:36:44.238 INFO:teuthology.orchestra.run.smithi044.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T21:36:44.571 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T21:36:44.582 INFO:teuthology.task.internal:Starting timer... 2024-04-15T21:36:44.582 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T21:36:44.623 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T21:36:44.663 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-15T21:36:44.663 DEBUG:teuthology.orchestra.run.smithi022:> sudo service auditd rotate 2024-04-15T21:36:44.727 INFO:teuthology.orchestra.run.smithi022.stdout:Rotating logs: 2024-04-15T21:36:44.728 DEBUG:teuthology.orchestra.run.smithi044:> sudo service auditd rotate 2024-04-15T21:36:44.790 INFO:teuthology.orchestra.run.smithi044.stdout:Rotating logs: 2024-04-15T21:36:44.791 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T21:36:44.791 DEBUG:teuthology.orchestra.run.smithi022:> /usr/sbin/getenforce 2024-04-15T21:36:44.812 INFO:teuthology.orchestra.run.smithi022.stdout:Permissive 2024-04-15T21:36:44.812 DEBUG:teuthology.orchestra.run.smithi044:> /usr/sbin/getenforce 2024-04-15T21:36:44.867 INFO:teuthology.orchestra.run.smithi044.stdout:Permissive 2024-04-15T21:36:44.867 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi022.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi044.front.sepia.ceph.com': 'permissive'} 2024-04-15T21:36:44.867 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:36:44.898 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:36:44.899 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:36:44.930 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:36:44.931 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T21:36:44.931 DEBUG:teuthology.orchestra.run.smithi022:> sudo /usr/sbin/setenforce permissive 2024-04-15T21:36:45.004 DEBUG:teuthology.orchestra.run.smithi044:> sudo /usr/sbin/setenforce permissive 2024-04-15T21:36:45.044 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T21:36:45.059 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-15T21:36:45.063 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-15T21:36:45.194 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T21:36:45.210 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-15T21:36:45.212 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi022.front.sepia.ceph.com,smithi044.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T21:41:16.459 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi022.front.sepia.ceph.com'), Remote(name='ubuntu@smithi044.front.sepia.ceph.com')] 2024-04-15T21:41:16.460 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi022.front.sepia.ceph.com' 2024-04-15T21:41:16.461 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi022.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:41:16.556 DEBUG:teuthology.orchestra.run.smithi022:> true 2024-04-15T21:41:16.639 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi022.front.sepia.ceph.com' 2024-04-15T21:41:16.639 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-15T21:41:16.640 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:41:16.729 DEBUG:teuthology.orchestra.run.smithi044:> true 2024-04-15T21:41:16.810 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi044.front.sepia.ceph.com' 2024-04-15T21:41:16.810 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T21:41:16.821 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T21:41:16.821 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T21:41:16.822 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:16.824 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T21:41:16.824 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:16.857 INFO:teuthology.orchestra.run.smithi022.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T21:41:16.875 INFO:teuthology.orchestra.run.smithi022.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T21:41:16.884 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T21:41:16.903 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T21:41:16.906 INFO:teuthology.orchestra.run.smithi022.stderr:sudo: ntpd: command not found 2024-04-15T21:41:16.921 INFO:teuthology.orchestra.run.smithi022.stdout:506 Cannot talk to daemon 2024-04-15T21:41:16.935 INFO:teuthology.orchestra.run.smithi044.stderr:sudo: ntpd: command not found 2024-04-15T21:41:16.939 INFO:teuthology.orchestra.run.smithi022.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T21:41:16.949 INFO:teuthology.orchestra.run.smithi044.stdout:506 Cannot talk to daemon 2024-04-15T21:41:16.956 INFO:teuthology.orchestra.run.smithi022.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T21:41:16.967 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T21:41:16.984 INFO:teuthology.orchestra.run.smithi044.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T21:41:17.009 INFO:teuthology.orchestra.run.smithi022.stderr:bash: line 1: ntpq: command not found 2024-04-15T21:41:17.012 INFO:teuthology.orchestra.run.smithi022.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T21:41:17.012 INFO:teuthology.orchestra.run.smithi022.stdout:=============================================================================== 2024-04-15T21:41:17.012 INFO:teuthology.orchestra.run.smithi022.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:17.012 INFO:teuthology.orchestra.run.smithi022.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:17.012 INFO:teuthology.orchestra.run.smithi022.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:17.012 INFO:teuthology.orchestra.run.smithi022.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:17.036 INFO:teuthology.orchestra.run.smithi044.stderr:bash: line 1: ntpq: command not found 2024-04-15T21:41:17.039 INFO:teuthology.orchestra.run.smithi044.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T21:41:17.040 INFO:teuthology.orchestra.run.smithi044.stdout:=============================================================================== 2024-04-15T21:41:17.040 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:17.040 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:17.040 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:17.040 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:17.041 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-15T21:41:17.052 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-15T21:41:17.052 DEBUG:teuthology.orchestra.run.smithi022:> set -ex 2024-04-15T21:41:17.052 DEBUG:teuthology.orchestra.run.smithi022:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:41:17.069 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-15T21:41:17.069 DEBUG:teuthology.orchestra.run.smithi022:> stat /dev/vg_nvme/lv_1 2024-04-15T21:41:17.125 INFO:teuthology.orchestra.run.smithi022.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T21:41:17.125 INFO:teuthology.orchestra.run.smithi022.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:41:17.125 INFO:teuthology.orchestra.run.smithi022.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-04-15T21:41:17.125 INFO:teuthology.orchestra.run.smithi022.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:41:17.125 INFO:teuthology.orchestra.run.smithi022.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:41:17.125 INFO:teuthology.orchestra.run.smithi022.stdout:Access: 2024-04-15 21:41:15.404780987 +0000 2024-04-15T21:41:17.126 INFO:teuthology.orchestra.run.smithi022.stdout:Modify: 2024-04-15 21:40:44.790138751 +0000 2024-04-15T21:41:17.126 INFO:teuthology.orchestra.run.smithi022.stdout:Change: 2024-04-15 21:40:44.790138751 +0000 2024-04-15T21:41:17.126 INFO:teuthology.orchestra.run.smithi022.stdout: Birth: 2024-04-15 21:40:44.790138751 +0000 2024-04-15T21:41:17.126 DEBUG:teuthology.orchestra.run.smithi022:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T21:41:17.192 INFO:teuthology.orchestra.run.smithi022.stderr:1+0 records in 2024-04-15T21:41:17.192 INFO:teuthology.orchestra.run.smithi022.stderr:1+0 records out 2024-04-15T21:41:17.193 INFO:teuthology.orchestra.run.smithi022.stderr:512 bytes copied, 9.3106e-05 s, 5.5 MB/s 2024-04-15T21:41:17.194 DEBUG:teuthology.orchestra.run.smithi022:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T21:41:17.250 DEBUG:teuthology.orchestra.run.smithi022:> stat /dev/vg_nvme/lv_2 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout:Device: 5h/5d Inode: 684 Links: 1 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout:Access: 2024-04-15 21:41:15.404780987 +0000 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout:Modify: 2024-04-15 21:40:45.132134755 +0000 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout:Change: 2024-04-15 21:40:45.132134755 +0000 2024-04-15T21:41:17.305 INFO:teuthology.orchestra.run.smithi022.stdout: Birth: 2024-04-15 21:40:45.132134755 +0000 2024-04-15T21:41:17.306 DEBUG:teuthology.orchestra.run.smithi022:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T21:41:17.371 INFO:teuthology.orchestra.run.smithi022.stderr:1+0 records in 2024-04-15T21:41:17.371 INFO:teuthology.orchestra.run.smithi022.stderr:1+0 records out 2024-04-15T21:41:17.371 INFO:teuthology.orchestra.run.smithi022.stderr:512 bytes copied, 9.5558e-05 s, 5.4 MB/s 2024-04-15T21:41:17.372 DEBUG:teuthology.orchestra.run.smithi022:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T21:41:17.431 DEBUG:teuthology.orchestra.run.smithi022:> stat /dev/vg_nvme/lv_3 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout:Device: 5h/5d Inode: 703 Links: 1 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout:Access: 2024-04-15 21:41:15.404780987 +0000 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout:Modify: 2024-04-15 21:40:45.475130747 +0000 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout:Change: 2024-04-15 21:40:45.475130747 +0000 2024-04-15T21:41:17.487 INFO:teuthology.orchestra.run.smithi022.stdout: Birth: 2024-04-15 21:40:45.475130747 +0000 2024-04-15T21:41:17.488 DEBUG:teuthology.orchestra.run.smithi022:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T21:41:17.553 INFO:teuthology.orchestra.run.smithi022.stderr:1+0 records in 2024-04-15T21:41:17.553 INFO:teuthology.orchestra.run.smithi022.stderr:1+0 records out 2024-04-15T21:41:17.553 INFO:teuthology.orchestra.run.smithi022.stderr:512 bytes copied, 9.6778e-05 s, 5.3 MB/s 2024-04-15T21:41:17.554 DEBUG:teuthology.orchestra.run.smithi022:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T21:41:17.611 DEBUG:teuthology.orchestra.run.smithi022:> stat /dev/vg_nvme/lv_4 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout:Device: 5h/5d Inode: 724 Links: 1 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout:Access: 2024-04-15 21:41:15.404780987 +0000 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout:Modify: 2024-04-15 21:40:45.994124682 +0000 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout:Change: 2024-04-15 21:40:45.994124682 +0000 2024-04-15T21:41:17.666 INFO:teuthology.orchestra.run.smithi022.stdout: Birth: 2024-04-15 21:40:45.994124682 +0000 2024-04-15T21:41:17.667 DEBUG:teuthology.orchestra.run.smithi022:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T21:41:17.732 INFO:teuthology.orchestra.run.smithi022.stderr:1+0 records in 2024-04-15T21:41:17.732 INFO:teuthology.orchestra.run.smithi022.stderr:1+0 records out 2024-04-15T21:41:17.732 INFO:teuthology.orchestra.run.smithi022.stderr:512 bytes copied, 9.347e-05 s, 5.5 MB/s 2024-04-15T21:41:17.733 DEBUG:teuthology.orchestra.run.smithi022:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T21:41:17.789 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:17.947 INFO:teuthology.orchestra.run.smithi022.stdout:loop 2024-04-15T21:41:17.948 INFO:tasks.nvme_loop:Connecting nvme_loop smithi022:/dev/vg_nvme/lv_1... 2024-04-15T21:41:17.949 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:17.988 INFO:teuthology.orchestra.run.smithi022.stdout:1 2024-04-15T21:41:18.027 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/vg_nvme/lv_11 2024-04-15T21:41:18.058 INFO:tasks.nvme_loop:Connecting nvme_loop smithi022:/dev/vg_nvme/lv_2... 2024-04-15T21:41:18.058 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:18.140 INFO:teuthology.orchestra.run.smithi022.stdout:1 2024-04-15T21:41:18.181 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/vg_nvme/lv_21 2024-04-15T21:41:18.218 INFO:tasks.nvme_loop:Connecting nvme_loop smithi022:/dev/vg_nvme/lv_3... 2024-04-15T21:41:18.218 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:18.301 INFO:teuthology.orchestra.run.smithi022.stdout:1 2024-04-15T21:41:18.338 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/vg_nvme/lv_31 2024-04-15T21:41:18.368 INFO:tasks.nvme_loop:Connecting nvme_loop smithi022:/dev/vg_nvme/lv_4... 2024-04-15T21:41:18.368 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:18.447 INFO:teuthology.orchestra.run.smithi022.stdout:1 2024-04-15T21:41:18.487 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/vg_nvme/lv_41 2024-04-15T21:41:18.517 DEBUG:teuthology.orchestra.run.smithi022:> set -ex 2024-04-15T21:41:18.517 DEBUG:teuthology.orchestra.run.smithi022:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:41:18.573 DEBUG:teuthology.orchestra.run.smithi022:> sudo nvme list 2024-04-15T21:41:18.640 INFO:teuthology.orchestra.run.smithi022.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-15T21:41:18.640 INFO:teuthology.orchestra.run.smithi022.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-15T21:41:18.640 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/nvme0n1 PHMB747402EC480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-04-15T21:41:18.640 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/nvme1n1 25f0176ce032316cdcff Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T21:41:18.640 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/nvme2n1 6caa9edc975f9035d36d Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T21:41:18.640 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/nvme3n1 6e45232a92c536728a43 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T21:41:18.640 INFO:teuthology.orchestra.run.smithi022.stdout:/dev/nvme4n1 946a698cc6ff55daacde Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T21:41:18.641 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-15T21:41:18.641 DEBUG:teuthology.orchestra.run.smithi022:> set -ex 2024-04-15T21:41:18.641 DEBUG:teuthology.orchestra.run.smithi022:> sudo dd of=/scratch_devs 2024-04-15T21:41:18.710 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-15T21:41:18.710 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:41:18.731 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-15T21:41:18.731 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_1 2024-04-15T21:41:18.789 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T21:41:18.789 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:41:18.790 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-04-15T21:41:18.790 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:41:18.790 INFO:teuthology.orchestra.run.smithi044.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:41:18.790 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-04-15 21:41:15.413899519 +0000 2024-04-15T21:41:18.790 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-04-15 21:40:53.268243543 +0000 2024-04-15T21:41:18.790 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-04-15 21:40:53.268243543 +0000 2024-04-15T21:41:18.790 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: 2024-04-15 21:40:53.268243543 +0000 2024-04-15T21:41:18.790 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T21:41:18.864 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-04-15T21:41:18.864 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-04-15T21:41:18.865 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000278301 s, 1.8 MB/s 2024-04-15T21:41:18.865 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T21:41:18.929 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_2 2024-04-15T21:41:18.987 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T21:41:18.987 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:41:18.988 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-04-15T21:41:18.988 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:41:18.988 INFO:teuthology.orchestra.run.smithi044.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:41:18.988 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-04-15 21:41:15.413899519 +0000 2024-04-15T21:41:18.988 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-04-15 21:40:53.615238152 +0000 2024-04-15T21:41:18.988 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-04-15 21:40:53.615238152 +0000 2024-04-15T21:41:18.988 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: 2024-04-15 21:40:53.615238152 +0000 2024-04-15T21:41:18.988 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T21:41:19.059 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-04-15T21:41:19.059 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-04-15T21:41:19.059 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000198154 s, 2.6 MB/s 2024-04-15T21:41:19.061 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T21:41:19.119 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_3 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-04-15 21:41:15.413899519 +0000 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-04-15 21:40:53.970232638 +0000 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-04-15 21:40:53.970232638 +0000 2024-04-15T21:41:19.178 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: 2024-04-15 21:40:53.970232638 +0000 2024-04-15T21:41:19.178 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T21:41:19.247 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-04-15T21:41:19.247 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-04-15T21:41:19.248 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000193776 s, 2.6 MB/s 2024-04-15T21:41:19.249 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T21:41:19.307 DEBUG:teuthology.orchestra.run.smithi044:> stat /dev/vg_nvme/lv_4 2024-04-15T21:41:19.363 INFO:teuthology.orchestra.run.smithi044.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T21:41:19.364 INFO:teuthology.orchestra.run.smithi044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:41:19.364 INFO:teuthology.orchestra.run.smithi044.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-04-15T21:41:19.364 INFO:teuthology.orchestra.run.smithi044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:41:19.364 INFO:teuthology.orchestra.run.smithi044.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:41:19.364 INFO:teuthology.orchestra.run.smithi044.stdout:Access: 2024-04-15 21:41:15.413899519 +0000 2024-04-15T21:41:19.364 INFO:teuthology.orchestra.run.smithi044.stdout:Modify: 2024-04-15 21:40:54.305227434 +0000 2024-04-15T21:41:19.364 INFO:teuthology.orchestra.run.smithi044.stdout:Change: 2024-04-15 21:40:54.305227434 +0000 2024-04-15T21:41:19.364 INFO:teuthology.orchestra.run.smithi044.stdout: Birth: 2024-04-15 21:40:54.305227434 +0000 2024-04-15T21:41:19.364 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T21:41:19.432 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records in 2024-04-15T21:41:19.432 INFO:teuthology.orchestra.run.smithi044.stderr:1+0 records out 2024-04-15T21:41:19.433 INFO:teuthology.orchestra.run.smithi044.stderr:512 bytes copied, 0.000201513 s, 2.5 MB/s 2024-04-15T21:41:19.434 DEBUG:teuthology.orchestra.run.smithi044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T21:41:19.491 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:19.638 INFO:teuthology.orchestra.run.smithi044.stdout:loop 2024-04-15T21:41:19.640 INFO:tasks.nvme_loop:Connecting nvme_loop smithi044:/dev/vg_nvme/lv_1... 2024-04-15T21:41:19.640 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:19.680 INFO:teuthology.orchestra.run.smithi044.stdout:1 2024-04-15T21:41:19.719 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/vg_nvme/lv_11 2024-04-15T21:41:19.750 INFO:tasks.nvme_loop:Connecting nvme_loop smithi044:/dev/vg_nvme/lv_2... 2024-04-15T21:41:19.751 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:19.832 INFO:teuthology.orchestra.run.smithi044.stdout:1 2024-04-15T21:41:19.872 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/vg_nvme/lv_21 2024-04-15T21:41:19.901 INFO:tasks.nvme_loop:Connecting nvme_loop smithi044:/dev/vg_nvme/lv_3... 2024-04-15T21:41:19.902 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:19.982 INFO:teuthology.orchestra.run.smithi044.stdout:1 2024-04-15T21:41:20.021 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/vg_nvme/lv_31 2024-04-15T21:41:20.058 INFO:tasks.nvme_loop:Connecting nvme_loop smithi044:/dev/vg_nvme/lv_4... 2024-04-15T21:41:20.059 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:20.151 INFO:teuthology.orchestra.run.smithi044.stdout:1 2024-04-15T21:41:20.193 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/vg_nvme/lv_41 2024-04-15T21:41:20.224 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-15T21:41:20.224 DEBUG:teuthology.orchestra.run.smithi044:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:41:20.241 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme list 2024-04-15T21:41:20.310 INFO:teuthology.orchestra.run.smithi044.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-15T21:41:20.310 INFO:teuthology.orchestra.run.smithi044.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-15T21:41:20.310 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme0n1 CVFT5331001K400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-15T21:41:20.310 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme1n1 84ac4bf2897ebba8fa47 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T21:41:20.311 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme2n1 3a54a2b80453acb01895 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T21:41:20.311 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme3n1 e18a5112b4f4e6ba20f7 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T21:41:20.311 INFO:teuthology.orchestra.run.smithi044.stdout:/dev/nvme4n1 aae3cafcee894fc5fffd Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-15T21:41:20.311 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-15T21:41:20.311 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-15T21:41:20.311 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/scratch_devs 2024-04-15T21:41:20.378 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T21:41:20.497 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-15T21:41:20.497 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:41:20.498 INFO:tasks.cephadm:Cluster fsid is e5c6c41e-fb70-11ee-bc8f-c7b262605968 2024-04-15T21:41:20.498 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T21:41:20.498 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-15T21:41:20.498 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi022': '172.21.15.22', 'mon.smithi044': '172.21.15.44'} 2024-04-15T21:41:20.498 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T21:41:20.499 DEBUG:teuthology.orchestra.run.smithi022:> sudo hostname $(hostname -s) 2024-04-15T21:41:20.533 DEBUG:teuthology.orchestra.run.smithi044:> sudo hostname $(hostname -s) 2024-04-15T21:41:20.562 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T21:41:20.562 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-15T21:41:20.788 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-15T21:41:21.017 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-15T21:41:21.019 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm 2024-04-15T21:41:21.019 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:21.723 INFO:teuthology.orchestra.run.smithi022.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 21:41 /home/ubuntu/cephtest/cephadm 2024-04-15T21:41:21.723 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:22.440 INFO:teuthology.orchestra.run.smithi044.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 21:41 /home/ubuntu/cephtest/cephadm 2024-04-15T21:41:22.440 DEBUG:teuthology.orchestra.run.smithi022:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:41:22.463 DEBUG:teuthology.orchestra.run.smithi044:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:41:22.496 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 on all hosts... 2024-04-15T21:41:22.496 DEBUG:teuthology.orchestra.run.smithi022:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T21:41:22.511 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T21:41:23.389 INFO:teuthology.orchestra.run.smithi022.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T21:41:23.483 INFO:teuthology.orchestra.run.smithi044.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T21:41:23.557 INFO:teuthology.orchestra.run.smithi022.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:41:23.557 INFO:teuthology.orchestra.run.smithi022.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T21:41:23.557 INFO:teuthology.orchestra.run.smithi022.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-15T21:41:23.558 INFO:teuthology.orchestra.run.smithi022.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:41:23.579 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:23.580 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 smithi022 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T21:41:23.581 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T21:41:23.583 DEBUG:teuthology.misc:Transferring archived files from smithi022:/var/lib/ceph/e5c6c41e-fb70-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472/remote/smithi022/crash 2024-04-15T21:41:23.583 DEBUG:teuthology.orchestra.run.smithi022:> sudo tar c -f - -C /var/lib/ceph/e5c6c41e-fb70-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:41:23.632 INFO:teuthology.orchestra.run.smithi022.stderr:tar: /var/lib/ceph/e5c6c41e-fb70-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:41:23.632 INFO:teuthology.orchestra.run.smithi022.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:41:23.634 DEBUG:teuthology.misc:Transferring archived files from smithi044:/var/lib/ceph/e5c6c41e-fb70-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472/remote/smithi044/crash 2024-04-15T21:41:23.635 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /var/lib/ceph/e5c6c41e-fb70-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:41:23.663 INFO:teuthology.orchestra.run.smithi044.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:41:23.664 INFO:teuthology.orchestra.run.smithi044.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T21:41:23.664 INFO:teuthology.orchestra.run.smithi044.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-15T21:41:23.664 INFO:teuthology.orchestra.run.smithi044.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:41:23.675 INFO:teuthology.orchestra.run.smithi044.stderr:tar: /var/lib/ceph/e5c6c41e-fb70-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:41:23.675 INFO:teuthology.orchestra.run.smithi044.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:41:23.677 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T21:41:23.677 DEBUG:teuthology.orchestra.run.smithi022:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/e5c6c41e-fb70-11ee-bc8f-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-15T21:41:23.715 INFO:teuthology.orchestra.run.smithi022.stderr:grep: /var/log/ceph/e5c6c41e-fb70-11ee-bc8f-c7b262605968/ceph.log: No such file or directory 2024-04-15T21:41:23.716 INFO:tasks.cephadm:Compressing logs... 2024-04-15T21:41:23.716 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:23.760 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:23.785 INFO:teuthology.orchestra.run.smithi022.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose --: No such file or directory 2024-04-15T21:41:23.785 INFO:teuthology.orchestra.run.smithi022.stderr: /var/log/ceph/cephadm.log 2024-04-15T21:41:23.785 INFO:teuthology.orchestra.run.smithi022.stderr:/var/log/ceph/cephadm.log: 73.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:41:23.787 INFO:teuthology.orchestra.run.smithi022.stderr: 2024-04-15T21:41:23.787 INFO:teuthology.orchestra.run.smithi022.stderr:real 0m0.015s 2024-04-15T21:41:23.787 INFO:teuthology.orchestra.run.smithi022.stderr:user 0m0.015s 2024-04-15T21:41:23.787 INFO:teuthology.orchestra.run.smithi022.stderr:sys 0m0.013s 2024-04-15T21:41:23.788 INFO:teuthology.orchestra.run.smithi044.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log: No such file or directory 2024-04-15T21:41:23.789 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-15T21:41:23.789 INFO:teuthology.orchestra.run.smithi044.stderr:/var/log/ceph/cephadm.log: 73.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:41:23.790 INFO:teuthology.orchestra.run.smithi044.stderr: 2024-04-15T21:41:23.790 INFO:teuthology.orchestra.run.smithi044.stderr:real 0m0.015s 2024-04-15T21:41:23.790 INFO:teuthology.orchestra.run.smithi044.stderr:user 0m0.018s 2024-04-15T21:41:23.790 INFO:teuthology.orchestra.run.smithi044.stderr:sys 0m0.011s 2024-04-15T21:41:23.790 INFO:tasks.cephadm:Archiving logs... 2024-04-15T21:41:23.791 DEBUG:teuthology.misc:Transferring archived files from smithi022:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472/remote/smithi022/log 2024-04-15T21:41:23.792 DEBUG:teuthology.orchestra.run.smithi022:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:41:23.856 DEBUG:teuthology.misc:Transferring archived files from smithi044:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472/remote/smithi044/log 2024-04-15T21:41:23.857 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:41:23.885 INFO:tasks.cephadm:Removing cluster... 2024-04-15T21:41:23.886 DEBUG:teuthology.orchestra.run.smithi022:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e5c6c41e-fb70-11ee-bc8f-c7b262605968 --force 2024-04-15T21:41:24.078 INFO:teuthology.orchestra.run.smithi022.stdout:Deleting cluster with fsid: e5c6c41e-fb70-11ee-bc8f-c7b262605968 2024-04-15T21:41:24.191 DEBUG:teuthology.orchestra.run.smithi044:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e5c6c41e-fb70-11ee-bc8f-c7b262605968 --force 2024-04-15T21:41:24.372 INFO:teuthology.orchestra.run.smithi044.stdout:Deleting cluster with fsid: e5c6c41e-fb70-11ee-bc8f-c7b262605968 2024-04-15T21:41:24.484 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T21:41:24.484 DEBUG:teuthology.orchestra.run.smithi022:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:41:24.501 DEBUG:teuthology.orchestra.run.smithi044:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:41:24.518 INFO:tasks.cephadm:Teardown complete 2024-04-15T21:41:24.518 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 smithi022 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T21:41:24.730 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=d83813d83f224004ae9419b315aefccb 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 smithi022 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T21:41:24.733 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T21:41:24.743 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-15T21:41:24.758 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi022:/dev/vg_nvme/lv_1... 2024-04-15T21:41:24.758 DEBUG:teuthology.orchestra.run.smithi022:> sudo nvme disconnect -n lv_1 2024-04-15T21:41:24.901 INFO:teuthology.orchestra.run.smithi022.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-15T21:41:24.902 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:24.902 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi022:/dev/vg_nvme/lv_2... 2024-04-15T21:41:24.903 DEBUG:teuthology.orchestra.run.smithi022:> sudo nvme disconnect -n lv_2 2024-04-15T21:41:25.037 INFO:teuthology.orchestra.run.smithi022.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-15T21:41:25.038 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:25.038 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi022:/dev/vg_nvme/lv_3... 2024-04-15T21:41:25.039 DEBUG:teuthology.orchestra.run.smithi022:> sudo nvme disconnect -n lv_3 2024-04-15T21:41:25.179 INFO:teuthology.orchestra.run.smithi022.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-15T21:41:25.180 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:25.180 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi022:/dev/vg_nvme/lv_4... 2024-04-15T21:41:25.180 DEBUG:teuthology.orchestra.run.smithi022:> sudo nvme disconnect -n lv_4 2024-04-15T21:41:25.315 INFO:teuthology.orchestra.run.smithi022.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-15T21:41:25.316 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:25.317 DEBUG:teuthology.orchestra.run.smithi022:> set -ex 2024-04-15T21:41:25.317 DEBUG:teuthology.orchestra.run.smithi022:> sudo dd of=/scratch_devs 2024-04-15T21:41:25.346 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi044:/dev/vg_nvme/lv_1... 2024-04-15T21:41:25.346 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme disconnect -n lv_1 2024-04-15T21:41:25.509 INFO:teuthology.orchestra.run.smithi044.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-15T21:41:25.510 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:25.511 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi044:/dev/vg_nvme/lv_2... 2024-04-15T21:41:25.511 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme disconnect -n lv_2 2024-04-15T21:41:25.646 INFO:teuthology.orchestra.run.smithi044.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-15T21:41:25.650 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:25.651 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi044:/dev/vg_nvme/lv_3... 2024-04-15T21:41:25.651 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme disconnect -n lv_3 2024-04-15T21:41:25.796 INFO:teuthology.orchestra.run.smithi044.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-15T21:41:25.798 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:25.798 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi044:/dev/vg_nvme/lv_4... 2024-04-15T21:41:25.799 DEBUG:teuthology.orchestra.run.smithi044:> sudo nvme disconnect -n lv_4 2024-04-15T21:41:25.937 INFO:teuthology.orchestra.run.smithi044.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-15T21:41:25.938 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:25.939 DEBUG:teuthology.orchestra.run.smithi044:> set -ex 2024-04-15T21:41:25.939 DEBUG:teuthology.orchestra.run.smithi044:> sudo dd of=/scratch_devs 2024-04-15T21:41:25.971 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T21:41:25.982 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T21:41:25.982 DEBUG:teuthology.orchestra.run.smithi022:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:41:25.985 DEBUG:teuthology.orchestra.run.smithi044:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:41:26.000 INFO:teuthology.orchestra.run.smithi022.stderr:bash: line 1: ntpq: command not found 2024-04-15T21:41:26.004 INFO:teuthology.orchestra.run.smithi022.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T21:41:26.004 INFO:teuthology.orchestra.run.smithi022.stdout:=============================================================================== 2024-04-15T21:41:26.004 INFO:teuthology.orchestra.run.smithi022.stdout:^* hv01.front.sepia.ceph.com 3 6 17 3 +826us[ +822us] +/- 49ms 2024-04-15T21:41:26.005 INFO:teuthology.orchestra.run.smithi022.stdout:^+ hv02.front.sepia.ceph.com 3 6 17 3 -289us[ -293us] +/- 60ms 2024-04-15T21:41:26.005 INFO:teuthology.orchestra.run.smithi022.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 3 -903us[ -907us] +/- 73ms 2024-04-15T21:41:26.005 INFO:teuthology.orchestra.run.smithi022.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:26.030 INFO:teuthology.orchestra.run.smithi044.stderr:bash: line 1: ntpq: command not found 2024-04-15T21:41:26.033 INFO:teuthology.orchestra.run.smithi044.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T21:41:26.033 INFO:teuthology.orchestra.run.smithi044.stdout:=============================================================================== 2024-04-15T21:41:26.033 INFO:teuthology.orchestra.run.smithi044.stdout:^* hv01.front.sepia.ceph.com 3 6 17 3 +827us[ +841us] +/- 49ms 2024-04-15T21:41:26.033 INFO:teuthology.orchestra.run.smithi044.stdout:^+ hv02.front.sepia.ceph.com 3 6 17 3 -291us[ -291us] +/- 60ms 2024-04-15T21:41:26.033 INFO:teuthology.orchestra.run.smithi044.stdout:^+ hv03.front.sepia.ceph.com 3 6 17 3 -916us[ -916us] +/- 73ms 2024-04-15T21:41:26.034 INFO:teuthology.orchestra.run.smithi044.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:41:26.034 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T21:41:26.044 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T21:41:26.045 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T21:41:26.057 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:26.127 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:26.194 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:26.227 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:26.227 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:26.259 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:26.259 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T21:41:26.268 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T21:41:26.282 INFO:teuthology.task.internal:Duration was 281.699587 seconds 2024-04-15T21:41:26.282 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T21:41:26.293 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T21:41:26.294 DEBUG:teuthology.orchestra.run.smithi022:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:41:26.299 DEBUG:teuthology.orchestra.run.smithi044:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:41:26.348 INFO:teuthology.orchestra.run.smithi044.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T21:41:26.348 INFO:teuthology.orchestra.run.smithi022.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T21:41:26.783 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T21:41:26.783 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi022.front.sepia.ceph.com 2024-04-15T21:41:26.783 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:26.806 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi044.front.sepia.ceph.com 2024-04-15T21:41:26.806 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:26.833 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T21:41:26.833 DEBUG:teuthology.orchestra.run.smithi022:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:41:26.849 DEBUG:teuthology.orchestra.run.smithi044:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:41:26.904 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T21:41:26.904 DEBUG:teuthology.orchestra.run.smithi022:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:41:26.922 DEBUG:teuthology.orchestra.run.smithi044:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:41:27.036 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T21:41:27.046 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T21:41:27.047 DEBUG:teuthology.orchestra.run.smithi022:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:41:27.075 DEBUG:teuthology.orchestra.run.smithi044:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:41:27.115 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T21:41:27.132 DEBUG:teuthology.orchestra.run.smithi022:> 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-15T21:41:27.138 DEBUG:teuthology.orchestra.run.smithi044:> 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-15T21:41:27.160 INFO:teuthology.orchestra.run.smithi022.stdout:kernel.core_pattern = core 2024-04-15T21:41:27.177 INFO:teuthology.orchestra.run.smithi044.stdout:kernel.core_pattern = core 2024-04-15T21:41:27.232 DEBUG:teuthology.orchestra.run.smithi022:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:41:27.246 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:27.247 DEBUG:teuthology.orchestra.run.smithi044:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:41:27.287 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:41:27.287 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T21:41:27.297 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T21:41:27.298 DEBUG:teuthology.misc:Transferring archived files from smithi022:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472/remote/smithi022 2024-04-15T21:41:27.298 DEBUG:teuthology.orchestra.run.smithi022:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:41:27.342 DEBUG:teuthology.misc:Transferring archived files from smithi044:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472/remote/smithi044 2024-04-15T21:41:27.342 DEBUG:teuthology.orchestra.run.smithi044:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:41:27.380 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T21:41:27.380 DEBUG:teuthology.orchestra.run.smithi022:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:41:27.382 DEBUG:teuthology.orchestra.run.smithi044:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:41:27.430 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T21:41:27.440 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T21:41:27.441 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T21:41:27.453 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T21:41:27.454 DEBUG:teuthology.orchestra.run.smithi022:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:41:27.456 DEBUG:teuthology.orchestra.run.smithi044:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:41:27.468 INFO:teuthology.orchestra.run.smithi022.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:41 /home/ubuntu/cephtest 2024-04-15T21:41:27.485 INFO:teuthology.orchestra.run.smithi044.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:41 /home/ubuntu/cephtest 2024-04-15T21:41:27.486 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T21:41:27.498 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T21:41:27.605 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T21:41:27.632 DEBUG:teuthology.nuke:shortname: smithi022 2024-04-15T21:41:27.632 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:41:27.659 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi022.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:27:55.841544', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAW5XCxZPzDHbvp6UJ0LV/X0xSePXZqEZ1+beouV91ydLvOi9V3mj+spaLRuq5IRImUwi7YvG7xeJoTJY9vUx2A='} 2024-04-15T21:41:27.662 DEBUG:teuthology.nuke:shortname: smithi044 2024-04-15T21:41:27.663 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:41:27.684 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi044.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657472', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:27:55.839860', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJ1X7VxNu+r5v899gW4DjI8gbwN/FEw5TVPwF8T02p+Z/LO7fModq3R6HFjbxU2DAwipVtFoG5rVeKmAV7vZldk='} 2024-04-15T21:41:27.716 INFO:teuthology.orchestra.console.smithi022:Power off 2024-04-15T21:41:27.716 DEBUG:teuthology.orchestra.console.smithi022:pexpect command: ipmitool -H smithi022.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:41:27.752 DEBUG:teuthology.orchestra.console.smithi022:power off output: Chassis Power Control: Down/Off 2024-04-15T21:41:27.753 DEBUG:teuthology.orchestra.console.smithi022:pexpect command: ipmitool -H smithi022.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:41:27.776 INFO:teuthology.orchestra.console.smithi044:Power off 2024-04-15T21:41:27.776 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:41:27.787 DEBUG:teuthology.orchestra.console.smithi022:check power output: Chassis Power is on 2024-04-15T21:41:27.804 DEBUG:teuthology.orchestra.console.smithi044:power off output: Chassis Power Control: Down/Off 2024-04-15T21:41:27.805 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:41:27.838 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is on 2024-04-15T21:41:31.789 DEBUG:teuthology.orchestra.console.smithi022:pexpect command: ipmitool -H smithi022.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:41:31.839 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:41:31.902 DEBUG:teuthology.orchestra.console.smithi022:check power output: Chassis Power is on 2024-04-15T21:41:31.950 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is on 2024-04-15T21:41:35.910 DEBUG:teuthology.orchestra.console.smithi022:pexpect command: ipmitool -H smithi022.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:41:35.952 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:41:36.040 DEBUG:teuthology.orchestra.console.smithi022:check power output: Chassis Power is off 2024-04-15T21:41:36.072 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is on 2024-04-15T21:41:36.142 INFO:teuthology.orchestra.console.smithi022:Power off completed 2024-04-15T21:41:40.077 DEBUG:teuthology.orchestra.console.smithi044:pexpect command: ipmitool -H smithi044.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:41:40.192 DEBUG:teuthology.orchestra.console.smithi044:check power output: Chassis Power is off 2024-04-15T21:41:40.292 INFO:teuthology.orchestra.console.smithi044:Power off completed 2024-04-15T21:41:40.397 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-bucket 3-final} duration: 281.69958662986755 failure_reason: 'Command failed on smithi022 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=d83813d83f224004ae9419b315aefccb status: fail success: false 2024-04-15T21:41:40.397 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:41:40.488 INFO:teuthology.run:FAIL