2024-05-03T10:29:02.200 INFO:root:teuthology version: 0.0.1.dev271+g1ae7ad8 2024-05-03T10:29:02.200 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --archive /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297 --description orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --name gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi --owner scheduled_gabrioux@teuthology -- /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297/orig.config.yaml 2024-05-03T10:29:02.233 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-03T10:29:02.318 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297 branch: wip-guits-testing-2024-05-02-0628 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: gabrioux@ibm.com first_in_suite: false job_id: '7687297' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-guits-testing-2024-05-02-0628 ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) log-only-match: - CEPHADM_ sha1: f8e6d2d721bc96a93915917c59bc3d287d57263d ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: f8e6d2d721bc96a93915917c59bc3d287d57263d workunit: branch: wip-guits-testing-2024-05-02-0628 sha1: f8e6d2d721bc96a93915917c59bc3d287d57263d owner: scheduled_gabrioux@teuthology priority: 70 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 2184 sha1: f8e6d2d721bc96a93915917c59bc3d287d57263d sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-testing-2024-05-02-0628 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: f8e6d2d721bc96a93915917c59bc3d287d57263d targets: smithi050.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHPIaHub9h7FyXsFQzcgbuF8K93O4M/nKg7J+skhkd5UA0YL+4R4Pxj3lH5+83h6jup8eGg6aOX/qbstbMmo4xQ= smithi066.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIe2S6dMzdx9PiUXBbUdDyKHTqhgzmkTU2x7xFN9/95782gldprWgD8WbCZFPmsbpM28kZGC7JE2/O6vXsFOALY= 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: 1ae7ad82388e92a475afff437d49054826c019a1 timestamp: 2024-05-03_06:31:58 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-05-03T10:29:02.319 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa; will attempt to use it 2024-05-03T10:29:02.319 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa/tasks 2024-05-03T10:29:02.319 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-05-03T10:29:02.321 INFO:teuthology.task.internal:Checking packages... 2024-05-03T10:29:02.345 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'f8e6d2d721bc96a93915917c59bc3d287d57263d' 2024-05-03T10:29:02.345 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-05-03T10:29:02.345 INFO:teuthology.packaging:ref: None 2024-05-03T10:29:02.345 INFO:teuthology.packaging:tag: None 2024-05-03T10:29:02.345 INFO:teuthology.packaging:branch: wip-guits-testing-2024-05-02-0628 2024-05-03T10:29:02.345 INFO:teuthology.packaging:sha1: f8e6d2d721bc96a93915917c59bc3d287d57263d 2024-05-03T10:29:02.345 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-guits-testing-2024-05-02-0628 2024-05-03T10:29:02.578 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-3353-gf8e6d2d7-1jammy 2024-05-03T10:29:02.580 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-05-03T10:29:02.588 INFO:teuthology.task.internal:no buildpackages task found 2024-05-03T10:29:02.588 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-05-03T10:29:02.597 INFO:teuthology.task.internal:Saving configuration 2024-05-03T10:29:02.610 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-05-03T10:29:02.618 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-03T10:29:02.640 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-05-03 10:22:24.046311', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOxkQpJTzbcS3AqlrDnOE337A8Ht44gqSnASXwV9KDa9'} 2024-05-03T10:29:02.658 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi066.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-05-03 10:22:24.044466', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOAogKOKo7IW28AYKLgAp/yA3y8QtwZasmrAo9Q9eM0/'} 2024-05-03T10:29:02.658 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-05-03T10:29:02.721 INFO:teuthology.task.internal:roles: ubuntu@smithi050.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-05-03T10:29:02.721 INFO:teuthology.task.internal:roles: ubuntu@smithi066.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-05-03T10:29:02.721 INFO:teuthology.run_tasks:Running task console_log... 2024-05-03T10:29:02.785 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f3618c75310>, signals=[15]) 2024-05-03T10:29:02.785 INFO:teuthology.run_tasks:Running task internal.connect... 2024-05-03T10:29:02.793 INFO:teuthology.task.internal:Opening connections... 2024-05-03T10:29:02.794 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi050.front.sepia.ceph.com 2024-05-03T10:29:02.795 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:29:02.877 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi066.front.sepia.ceph.com 2024-05-03T10:29:02.878 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi066.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:29:02.959 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-05-03T10:29:02.967 DEBUG:teuthology.orchestra.run.smithi050:> uname -m 2024-05-03T10:29:02.972 INFO:teuthology.orchestra.run.smithi050.stdout:x86_64 2024-05-03T10:29:02.972 DEBUG:teuthology.orchestra.run.smithi050:> cat /etc/os-release 2024-05-03T10:29:03.020 INFO:teuthology.orchestra.run.smithi050.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-05-03T10:29:03.020 INFO:teuthology.orchestra.run.smithi050.stdout:NAME="Ubuntu" 2024-05-03T10:29:03.020 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_ID="22.04" 2024-05-03T10:29:03.020 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-05-03T10:29:03.020 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_CODENAME=jammy 2024-05-03T10:29:03.020 INFO:teuthology.orchestra.run.smithi050.stdout:ID=ubuntu 2024-05-03T10:29:03.020 INFO:teuthology.orchestra.run.smithi050.stdout:ID_LIKE=debian 2024-05-03T10:29:03.021 INFO:teuthology.orchestra.run.smithi050.stdout:HOME_URL="https://www.ubuntu.com/" 2024-05-03T10:29:03.021 INFO:teuthology.orchestra.run.smithi050.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-05-03T10:29:03.021 INFO:teuthology.orchestra.run.smithi050.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-05-03T10:29:03.021 INFO:teuthology.orchestra.run.smithi050.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-05-03T10:29:03.021 INFO:teuthology.orchestra.run.smithi050.stdout:UBUNTU_CODENAME=jammy 2024-05-03T10:29:03.021 INFO:teuthology.lock.ops:Updating smithi050.front.sepia.ceph.com on lock server 2024-05-03T10:29:03.042 DEBUG:teuthology.orchestra.run.smithi066:> uname -m 2024-05-03T10:29:03.047 INFO:teuthology.orchestra.run.smithi066.stdout:x86_64 2024-05-03T10:29:03.047 DEBUG:teuthology.orchestra.run.smithi066:> cat /etc/os-release 2024-05-03T10:29:03.093 INFO:teuthology.orchestra.run.smithi066.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-05-03T10:29:03.093 INFO:teuthology.orchestra.run.smithi066.stdout:NAME="Ubuntu" 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:VERSION_ID="22.04" 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:VERSION_CODENAME=jammy 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:ID=ubuntu 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:ID_LIKE=debian 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:HOME_URL="https://www.ubuntu.com/" 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-05-03T10:29:03.094 INFO:teuthology.orchestra.run.smithi066.stdout:UBUNTU_CODENAME=jammy 2024-05-03T10:29:03.094 INFO:teuthology.lock.ops:Updating smithi066.front.sepia.ceph.com on lock server 2024-05-03T10:29:03.109 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-05-03T10:29:03.116 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-05-03T10:29:03.124 INFO:teuthology.task.internal:Checking for old test directory... 2024-05-03T10:29:03.124 DEBUG:teuthology.orchestra.run.smithi050:> test '!' -e /home/ubuntu/cephtest 2024-05-03T10:29:03.127 DEBUG:teuthology.orchestra.run.smithi066:> test '!' -e /home/ubuntu/cephtest 2024-05-03T10:29:03.142 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-05-03T10:29:03.149 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-05-03T10:29:03.149 DEBUG:teuthology.orchestra.run.smithi050:> test -z $(ls -A /var/lib/ceph) 2024-05-03T10:29:03.174 DEBUG:teuthology.orchestra.run.smithi066:> test -z $(ls -A /var/lib/ceph) 2024-05-03T10:29:03.198 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-05-03T10:29:03.251 INFO:teuthology.run_tasks:Running task kernel... 2024-05-03T10:29:03.271 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-05-03T10:29:03.271 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-05-03T10:29:03.272 DEBUG:teuthology.orchestra.run.smithi050:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-03T10:29:03.272 DEBUG:teuthology.orchestra.run.smithi066:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-03T10:29:03.277 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:29:03.278 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-05-03T10:29:03.279 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:29:03.279 DEBUG:teuthology.orchestra.run.smithi066:> uname -r 2024-05-03T10:29:03.326 INFO:teuthology.orchestra.run.smithi050.stdout:5.15.0-56-generic 2024-05-03T10:29:03.326 INFO:teuthology.task.kernel:Running kernel on smithi050: 5.15.0-56-generic 2024-05-03T10:29:03.326 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get clean 2024-05-03T10:29:03.328 INFO:teuthology.orchestra.run.smithi066.stdout:5.15.0-56-generic 2024-05-03T10:29:03.329 INFO:teuthology.task.kernel:Running kernel on smithi066: 5.15.0-56-generic 2024-05-03T10:29:03.329 DEBUG:teuthology.orchestra.run.smithi066:> sudo apt-get clean 2024-05-03T10:29:03.455 DEBUG:teuthology.orchestra.run.smithi066:> sudo apt-get update 2024-05-03T10:29:03.465 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get update 2024-05-03T10:29:03.630 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-03T10:29:03.630 INFO:teuthology.orchestra.run.smithi050.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-05-03T10:29:03.631 INFO:teuthology.orchestra.run.smithi050.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-05-03T10:29:03.636 INFO:teuthology.orchestra.run.smithi066.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-03T10:29:03.636 INFO:teuthology.orchestra.run.smithi066.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-05-03T10:29:03.636 INFO:teuthology.orchestra.run.smithi066.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-05-03T10:29:03.712 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-05-03T10:29:03.713 INFO:teuthology.orchestra.run.smithi066.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-05-03T10:29:03.868 INFO:teuthology.orchestra.run.smithi050.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [453 kB] 2024-05-03T10:29:03.943 INFO:teuthology.orchestra.run.smithi050.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [620 kB] 2024-05-03T10:29:03.958 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,394 kB] 2024-05-03T10:29:03.960 INFO:teuthology.orchestra.run.smithi066.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [453 kB] 2024-05-03T10:29:04.002 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [243 kB] 2024-05-03T10:29:04.005 INFO:teuthology.orchestra.run.smithi050.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-05-03T10:29:04.005 INFO:teuthology.orchestra.run.smithi050.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,773 kB] 2024-05-03T10:29:04.015 INFO:teuthology.orchestra.run.smithi050.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,612 kB] 2024-05-03T10:29:04.032 INFO:teuthology.orchestra.run.smithi050.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-05-03T10:29:04.032 INFO:teuthology.orchestra.run.smithi050.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [300 kB] 2024-05-03T10:29:04.036 INFO:teuthology.orchestra.run.smithi050.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-05-03T10:29:04.036 INFO:teuthology.orchestra.run.smithi050.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [601 kB] 2024-05-03T10:29:04.043 INFO:teuthology.orchestra.run.smithi050.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-05-03T10:29:04.051 INFO:teuthology.orchestra.run.smithi050.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-05-03T10:29:04.053 INFO:teuthology.orchestra.run.smithi050.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-05-03T10:29:04.054 INFO:teuthology.orchestra.run.smithi066.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,394 kB] 2024-05-03T10:29:04.055 INFO:teuthology.orchestra.run.smithi066.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [620 kB] 2024-05-03T10:29:04.093 INFO:teuthology.orchestra.run.smithi050.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [304 kB] 2024-05-03T10:29:04.093 INFO:teuthology.orchestra.run.smithi050.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-05-03T10:29:04.093 INFO:teuthology.orchestra.run.smithi050.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-05-03T10:29:04.093 INFO:teuthology.orchestra.run.smithi050.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-05-03T10:29:04.093 INFO:teuthology.orchestra.run.smithi050.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-05-03T10:29:04.099 INFO:teuthology.orchestra.run.smithi050.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-05-03T10:29:04.100 INFO:teuthology.orchestra.run.smithi050.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,830 kB] 2024-05-03T10:29:04.109 INFO:teuthology.orchestra.run.smithi066.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [243 kB] 2024-05-03T10:29:04.111 INFO:teuthology.orchestra.run.smithi066.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-05-03T10:29:04.112 INFO:teuthology.orchestra.run.smithi066.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,773 kB] 2024-05-03T10:29:04.133 INFO:teuthology.orchestra.run.smithi050.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-05-03T10:29:04.133 INFO:teuthology.orchestra.run.smithi050.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [311 kB] 2024-05-03T10:29:04.139 INFO:teuthology.orchestra.run.smithi050.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-05-03T10:29:04.139 INFO:teuthology.orchestra.run.smithi050.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [701 kB] 2024-05-03T10:29:04.145 INFO:teuthology.orchestra.run.smithi066.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,612 kB] 2024-05-03T10:29:04.147 INFO:teuthology.orchestra.run.smithi050.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,072 kB] 2024-05-03T10:29:04.151 INFO:teuthology.orchestra.run.smithi066.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-05-03T10:29:04.151 INFO:teuthology.orchestra.run.smithi066.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [300 kB] 2024-05-03T10:29:04.156 INFO:teuthology.orchestra.run.smithi066.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-05-03T10:29:04.157 INFO:teuthology.orchestra.run.smithi066.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-05-03T10:29:04.159 INFO:teuthology.orchestra.run.smithi050.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-05-03T10:29:04.161 INFO:teuthology.orchestra.run.smithi050.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-05-03T10:29:04.162 INFO:teuthology.orchestra.run.smithi050.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-05-03T10:29:04.162 INFO:teuthology.orchestra.run.smithi050.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-05-03T10:29:04.167 INFO:teuthology.orchestra.run.smithi066.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [601 kB] 2024-05-03T10:29:04.174 INFO:teuthology.orchestra.run.smithi066.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-05-03T10:29:04.181 INFO:teuthology.orchestra.run.smithi050.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-05-03T10:29:04.181 INFO:teuthology.orchestra.run.smithi050.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-05-03T10:29:04.182 INFO:teuthology.orchestra.run.smithi050.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.3 kB] 2024-05-03T10:29:04.182 INFO:teuthology.orchestra.run.smithi050.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-05-03T10:29:04.183 INFO:teuthology.orchestra.run.smithi050.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-05-03T10:29:04.195 INFO:teuthology.orchestra.run.smithi066.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-05-03T10:29:04.195 INFO:teuthology.orchestra.run.smithi066.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-05-03T10:29:04.196 INFO:teuthology.orchestra.run.smithi066.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-05-03T10:29:04.197 INFO:teuthology.orchestra.run.smithi066.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-05-03T10:29:04.197 INFO:teuthology.orchestra.run.smithi066.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-05-03T10:29:04.202 INFO:teuthology.orchestra.run.smithi050.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-05-03T10:29:04.202 INFO:teuthology.orchestra.run.smithi050.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [27.2 kB] 2024-05-03T10:29:04.202 INFO:teuthology.orchestra.run.smithi066.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [304 kB] 2024-05-03T10:29:04.203 INFO:teuthology.orchestra.run.smithi050.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [16.0 kB] 2024-05-03T10:29:04.203 INFO:teuthology.orchestra.run.smithi050.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-05-03T10:29:04.203 INFO:teuthology.orchestra.run.smithi050.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-05-03T10:29:04.208 INFO:teuthology.orchestra.run.smithi066.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-05-03T10:29:04.209 INFO:teuthology.orchestra.run.smithi066.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,830 kB] 2024-05-03T10:29:04.239 INFO:teuthology.orchestra.run.smithi066.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-05-03T10:29:04.240 INFO:teuthology.orchestra.run.smithi066.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [311 kB] 2024-05-03T10:29:04.245 INFO:teuthology.orchestra.run.smithi066.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-05-03T10:29:04.246 INFO:teuthology.orchestra.run.smithi066.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,072 kB] 2024-05-03T10:29:04.259 INFO:teuthology.orchestra.run.smithi066.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [701 kB] 2024-05-03T10:29:04.267 INFO:teuthology.orchestra.run.smithi066.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [245 kB] 2024-05-03T10:29:04.270 INFO:teuthology.orchestra.run.smithi066.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-05-03T10:29:04.270 INFO:teuthology.orchestra.run.smithi066.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-05-03T10:29:04.271 INFO:teuthology.orchestra.run.smithi066.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-05-03T10:29:04.276 INFO:teuthology.orchestra.run.smithi066.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-05-03T10:29:04.277 INFO:teuthology.orchestra.run.smithi066.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-05-03T10:29:04.277 INFO:teuthology.orchestra.run.smithi066.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-05-03T10:29:04.278 INFO:teuthology.orchestra.run.smithi066.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.3 kB] 2024-05-03T10:29:04.292 INFO:teuthology.orchestra.run.smithi066.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-05-03T10:29:04.293 INFO:teuthology.orchestra.run.smithi066.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-05-03T10:29:04.293 INFO:teuthology.orchestra.run.smithi066.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [16.0 kB] 2024-05-03T10:29:04.293 INFO:teuthology.orchestra.run.smithi066.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [27.2 kB] 2024-05-03T10:29:04.294 INFO:teuthology.orchestra.run.smithi066.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-05-03T10:29:04.296 INFO:teuthology.orchestra.run.smithi066.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-05-03T10:29:09.967 INFO:teuthology.orchestra.run.smithi066.stdout:Fetched 13.3 MB in 2s (6,459 kB/s) 2024-05-03T10:29:10.201 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 13.3 MB in 2s (6,863 kB/s) 2024-05-03T10:29:11.342 INFO:teuthology.orchestra.run.smithi066.stdout:Reading package lists... 2024-05-03T10:29:11.360 DEBUG:teuthology.orchestra.run.smithi066:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-03T10:29:11.422 INFO:teuthology.orchestra.run.smithi066.stdout:Reading package lists... 2024-05-03T10:29:11.626 INFO:teuthology.orchestra.run.smithi066.stdout:Building dependency tree... 2024-05-03T10:29:11.626 INFO:teuthology.orchestra.run.smithi066.stdout:Reading state information... 2024-05-03T10:29:11.667 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-05-03T10:29:11.685 DEBUG:teuthology.orchestra.run.smithi050:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-03T10:29:11.748 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-05-03T10:29:11.811 INFO:teuthology.orchestra.run.smithi066.stdout:The following packages were automatically installed and are no longer required: 2024-05-03T10:29:11.811 INFO:teuthology.orchestra.run.smithi066.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-03T10:29:11.811 INFO:teuthology.orchestra.run.smithi066.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-03T10:29:11.812 INFO:teuthology.orchestra.run.smithi066.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-03T10:29:11.812 INFO:teuthology.orchestra.run.smithi066.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-05-03T10:29:11.812 INFO:teuthology.orchestra.run.smithi066.stdout: python2.7-minimal 2024-05-03T10:29:11.812 INFO:teuthology.orchestra.run.smithi066.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-03T10:29:11.813 INFO:teuthology.orchestra.run.smithi066.stdout:The following additional packages will be installed: 2024-05-03T10:29:11.813 INFO:teuthology.orchestra.run.smithi066.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-05-03T10:29:11.813 INFO:teuthology.orchestra.run.smithi066.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-05-03T10:29:11.814 INFO:teuthology.orchestra.run.smithi066.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-05-03T10:29:11.815 INFO:teuthology.orchestra.run.smithi066.stdout:Suggested packages: 2024-05-03T10:29:11.815 INFO:teuthology.orchestra.run.smithi066.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-05-03T10:29:11.815 INFO:teuthology.orchestra.run.smithi066.stdout:Recommended packages: 2024-05-03T10:29:11.815 INFO:teuthology.orchestra.run.smithi066.stdout: thermald 2024-05-03T10:29:11.865 INFO:teuthology.orchestra.run.smithi066.stdout:The following NEW packages will be installed: 2024-05-03T10:29:11.865 INFO:teuthology.orchestra.run.smithi066.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-05-03T10:29:11.865 INFO:teuthology.orchestra.run.smithi066.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-05-03T10:29:11.866 INFO:teuthology.orchestra.run.smithi066.stdout: linux-modules-extra-5.15.0-105-generic 2024-05-03T10:29:11.867 INFO:teuthology.orchestra.run.smithi066.stdout:The following packages will be upgraded: 2024-05-03T10:29:11.867 INFO:teuthology.orchestra.run.smithi066.stdout: linux-generic linux-headers-generic linux-image-generic 2024-05-03T10:29:11.927 INFO:teuthology.orchestra.run.smithi066.stdout:3 upgraded, 5 newly installed, 0 to remove and 316 not upgraded. 2024-05-03T10:29:11.927 INFO:teuthology.orchestra.run.smithi066.stdout:Need to get 113 MB of archives. 2024-05-03T10:29:11.927 INFO:teuthology.orchestra.run.smithi066.stdout:After this operation, 583 MB of additional disk space will be used. 2024-05-03T10:29:11.927 INFO:teuthology.orchestra.run.smithi066.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-105-generic amd64 5.15.0-105.115 [22.7 MB] 2024-05-03T10:29:11.952 INFO:teuthology.orchestra.run.smithi050.stdout:Building dependency tree... 2024-05-03T10:29:11.953 INFO:teuthology.orchestra.run.smithi050.stdout:Reading state information... 2024-05-03T10:29:12.137 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages were automatically installed and are no longer required: 2024-05-03T10:29:12.137 INFO:teuthology.orchestra.run.smithi050.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-03T10:29:12.137 INFO:teuthology.orchestra.run.smithi050.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-03T10:29:12.138 INFO:teuthology.orchestra.run.smithi050.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-03T10:29:12.138 INFO:teuthology.orchestra.run.smithi050.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-05-03T10:29:12.138 INFO:teuthology.orchestra.run.smithi050.stdout: python2.7-minimal 2024-05-03T10:29:12.138 INFO:teuthology.orchestra.run.smithi050.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-03T10:29:12.140 INFO:teuthology.orchestra.run.smithi050.stdout:The following additional packages will be installed: 2024-05-03T10:29:12.140 INFO:teuthology.orchestra.run.smithi050.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-05-03T10:29:12.140 INFO:teuthology.orchestra.run.smithi050.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-05-03T10:29:12.140 INFO:teuthology.orchestra.run.smithi050.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-05-03T10:29:12.142 INFO:teuthology.orchestra.run.smithi050.stdout:Suggested packages: 2024-05-03T10:29:12.142 INFO:teuthology.orchestra.run.smithi050.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-05-03T10:29:12.142 INFO:teuthology.orchestra.run.smithi050.stdout:Recommended packages: 2024-05-03T10:29:12.142 INFO:teuthology.orchestra.run.smithi050.stdout: thermald 2024-05-03T10:29:12.195 INFO:teuthology.orchestra.run.smithi050.stdout:The following NEW packages will be installed: 2024-05-03T10:29:12.196 INFO:teuthology.orchestra.run.smithi050.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-05-03T10:29:12.196 INFO:teuthology.orchestra.run.smithi050.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-05-03T10:29:12.196 INFO:teuthology.orchestra.run.smithi050.stdout: linux-modules-extra-5.15.0-105-generic 2024-05-03T10:29:12.197 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages will be upgraded: 2024-05-03T10:29:12.198 INFO:teuthology.orchestra.run.smithi050.stdout: linux-generic linux-headers-generic linux-image-generic 2024-05-03T10:29:12.281 INFO:teuthology.orchestra.run.smithi050.stdout:3 upgraded, 5 newly installed, 0 to remove and 316 not upgraded. 2024-05-03T10:29:12.281 INFO:teuthology.orchestra.run.smithi050.stdout:Need to get 113 MB of archives. 2024-05-03T10:29:12.281 INFO:teuthology.orchestra.run.smithi050.stdout:After this operation, 583 MB of additional disk space will be used. 2024-05-03T10:29:12.281 INFO:teuthology.orchestra.run.smithi050.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-105-generic amd64 5.15.0-105.115 [22.7 MB] 2024-05-03T10:29:12.446 INFO:teuthology.orchestra.run.smithi066.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-105-generic amd64 5.15.0-105.115 [11.5 MB] 2024-05-03T10:29:12.638 INFO:teuthology.orchestra.run.smithi066.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-105-generic amd64 5.15.0-105.115 [63.9 MB] 2024-05-03T10:29:13.407 INFO:teuthology.orchestra.run.smithi050.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-105-generic amd64 5.15.0-105.115 [11.5 MB] 2024-05-03T10:29:13.783 INFO:teuthology.orchestra.run.smithi050.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-105-generic amd64 5.15.0-105.115 [63.9 MB] 2024-05-03T10:29:14.238 INFO:teuthology.orchestra.run.smithi066.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.105.102 [1,694 B] 2024-05-03T10:29:14.239 INFO:teuthology.orchestra.run.smithi066.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.105.102 [2,530 B] 2024-05-03T10:29:14.239 INFO:teuthology.orchestra.run.smithi066.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105 all 5.15.0-105.115 [12.3 MB] 2024-05-03T10:29:15.040 INFO:teuthology.orchestra.run.smithi066.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105-generic amd64 5.15.0-105.115 [2,857 kB] 2024-05-03T10:29:15.182 INFO:teuthology.orchestra.run.smithi066.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.105.102 [2,382 B] 2024-05-03T10:29:15.256 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.105.102 [1,694 B] 2024-05-03T10:29:15.383 INFO:teuthology.orchestra.run.smithi050.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.105.102 [2,530 B] 2024-05-03T10:29:15.384 INFO:teuthology.orchestra.run.smithi050.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105 all 5.15.0-105.115 [12.3 MB] 2024-05-03T10:29:15.590 INFO:teuthology.orchestra.run.smithi066.stdout:Fetched 113 MB in 3s (34.3 MB/s) 2024-05-03T10:29:15.604 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105-generic amd64 5.15.0-105.115 [2,857 kB] 2024-05-03T10:29:15.654 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.105.102 [2,382 B] 2024-05-03T10:29:15.784 INFO:teuthology.orchestra.run.smithi066.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-05-03T10:29:16.089 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 113 MB in 3s (32.9 MB/s) 2024-05-03T10:29:16.250 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-05-03T10:29:17.737 INFO:teuthology.orchestra.run.smithi066.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-05-03T10:29:17.741 INFO:teuthology.orchestra.run.smithi066.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-05-03T10:29:17.815 INFO:teuthology.orchestra.run.smithi066.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:18.291 INFO:teuthology.orchestra.run.smithi050.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-05-03T10:29:18.295 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-05-03T10:29:18.382 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:20.569 INFO:teuthology.orchestra.run.smithi066.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-05-03T10:29:20.586 INFO:teuthology.orchestra.run.smithi066.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-05-03T10:29:20.677 INFO:teuthology.orchestra.run.smithi066.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:21.034 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-05-03T10:29:21.055 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-05-03T10:29:21.135 INFO:teuthology.orchestra.run.smithi066.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-05-03T10:29:21.156 INFO:teuthology.orchestra.run.smithi066.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-05-03T10:29:21.156 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:21.193 INFO:teuthology.orchestra.run.smithi066.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:21.570 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-05-03T10:29:21.591 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-05-03T10:29:21.620 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:27.683 INFO:teuthology.orchestra.run.smithi066.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-05-03T10:29:27.793 INFO:teuthology.orchestra.run.smithi066.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-05-03T10:29:28.063 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-05-03T10:29:28.126 INFO:teuthology.orchestra.run.smithi066.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-05-03T10:29:28.187 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-05-03T10:29:28.254 INFO:teuthology.orchestra.run.smithi066.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-05-03T10:29:28.512 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-05-03T10:29:28.557 INFO:teuthology.orchestra.run.smithi066.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-05-03T10:29:28.580 INFO:teuthology.orchestra.run.smithi066.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-05-03T10:29:28.615 INFO:teuthology.orchestra.run.smithi066.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-05-03T10:29:28.632 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-05-03T10:29:28.944 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-05-03T10:29:28.967 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-05-03T10:29:29.002 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-05-03T10:29:33.997 INFO:teuthology.orchestra.run.smithi066.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-05-03T10:29:34.034 INFO:teuthology.orchestra.run.smithi066.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-05-03T10:29:34.072 INFO:teuthology.orchestra.run.smithi066.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:34.427 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-05-03T10:29:34.464 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-05-03T10:29:34.526 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:37.294 INFO:teuthology.orchestra.run.smithi066.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-05-03T10:29:37.416 INFO:teuthology.orchestra.run.smithi066.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-05-03T10:29:37.750 INFO:teuthology.orchestra.run.smithi066.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-05-03T10:29:37.833 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-05-03T10:29:37.871 INFO:teuthology.orchestra.run.smithi066.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:37.954 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-05-03T10:29:37.997 INFO:teuthology.orchestra.run.smithi066.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-05-03T10:29:38.126 INFO:teuthology.orchestra.run.smithi066.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:38.296 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-05-03T10:29:38.417 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:38.560 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-05-03T10:29:38.688 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:39.585 INFO:teuthology.orchestra.run.smithi066.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-05-03T10:29:39.585 INFO:teuthology.orchestra.run.smithi066.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-05-03T10:29:39.585 INFO:teuthology.orchestra.run.smithi066.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-05-03T10:29:39.585 INFO:teuthology.orchestra.run.smithi066.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-05-03T10:29:39.869 INFO:teuthology.orchestra.run.smithi066.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:40.030 INFO:teuthology.orchestra.run.smithi050.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-05-03T10:29:40.030 INFO:teuthology.orchestra.run.smithi050.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-05-03T10:29:40.030 INFO:teuthology.orchestra.run.smithi050.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-05-03T10:29:40.030 INFO:teuthology.orchestra.run.smithi050.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-05-03T10:29:40.190 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:41.330 INFO:teuthology.orchestra.run.smithi066.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:41.660 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:42.772 INFO:teuthology.orchestra.run.smithi066.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-05-03T10:29:42.898 INFO:teuthology.orchestra.run.smithi066.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-05-03T10:29:43.016 INFO:teuthology.orchestra.run.smithi066.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:43.068 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-05-03T10:29:43.075 INFO:teuthology.orchestra.run.smithi066.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-05-03T10:29:43.075 INFO:teuthology.orchestra.run.smithi066.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-05-03T10:29:43.219 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-05-03T10:29:43.345 INFO:teuthology.orchestra.run.smithi050.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-05-03T10:29:43.413 INFO:teuthology.orchestra.run.smithi050.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-05-03T10:29:43.413 INFO:teuthology.orchestra.run.smithi050.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-05-03T10:29:57.381 INFO:teuthology.orchestra.run.smithi066.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-05-03T10:29:57.381 INFO:teuthology.orchestra.run.smithi066.stdout:Sourcing file `/etc/default/grub' 2024-05-03T10:29:57.394 INFO:teuthology.orchestra.run.smithi066.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-03T10:29:57.427 INFO:teuthology.orchestra.run.smithi066.stdout:Generating grub configuration file ... 2024-05-03T10:29:57.695 INFO:teuthology.orchestra.run.smithi066.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-05-03T10:29:57.715 INFO:teuthology.orchestra.run.smithi066.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-05-03T10:29:58.012 INFO:teuthology.orchestra.run.smithi050.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-05-03T10:29:58.012 INFO:teuthology.orchestra.run.smithi050.stdout:Sourcing file `/etc/default/grub' 2024-05-03T10:29:58.014 INFO:teuthology.orchestra.run.smithi066.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-03T10:29:58.020 INFO:teuthology.orchestra.run.smithi066.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-03T10:29:58.024 INFO:teuthology.orchestra.run.smithi050.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-03T10:29:58.088 INFO:teuthology.orchestra.run.smithi050.stdout:Generating grub configuration file ... 2024-05-03T10:29:58.092 INFO:teuthology.orchestra.run.smithi066.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-03T10:29:58.098 INFO:teuthology.orchestra.run.smithi066.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-03T10:29:58.251 INFO:teuthology.orchestra.run.smithi066.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-03T10:29:58.251 INFO:teuthology.orchestra.run.smithi066.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-05-03T10:29:58.251 INFO:teuthology.orchestra.run.smithi066.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-03T10:29:58.290 INFO:teuthology.orchestra.run.smithi066.stdout:done 2024-05-03T10:29:58.417 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-05-03T10:29:58.438 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-05-03T10:29:58.746 DEBUG:teuthology.orchestra.run.smithi066:> dpkg -s linux-image-generic 2024-05-03T10:29:58.768 INFO:teuthology.orchestra.run.smithi066.stdout:Package: linux-image-generic 2024-05-03T10:29:58.768 INFO:teuthology.orchestra.run.smithi066.stdout:Status: install ok installed 2024-05-03T10:29:58.768 INFO:teuthology.orchestra.run.smithi066.stdout:Priority: optional 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Section: kernel 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Installed-Size: 21 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Maintainer: Ubuntu Kernel Team 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Architecture: amd64 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Source: linux-meta 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Version: 5.15.0.105.102 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Recommends: thermald 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout:Description: Generic Linux kernel image 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout: This package will always depend on the latest generic kernel image 2024-05-03T10:29:58.769 INFO:teuthology.orchestra.run.smithi066.stdout: available. 2024-05-03T10:29:58.769 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-05-03T10:29:58.770 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-03T10:29:58.770 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-03T10:29:58.770 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-05-03T10:29:58.770 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi066.front.sepia.ceph.com, path=None, version=distro) 2024-05-03T10:29:58.770 DEBUG:teuthology.orchestra.run.smithi066:> sudo apt-get clean 2024-05-03T10:29:58.786 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-03T10:29:58.792 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-03T10:29:58.873 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-03T10:29:58.878 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-03T10:29:58.923 DEBUG:teuthology.orchestra.run.smithi066:> sudo apt-get update 2024-05-03T10:29:59.034 INFO:teuthology.orchestra.run.smithi050.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-03T10:29:59.035 INFO:teuthology.orchestra.run.smithi050.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-05-03T10:29:59.035 INFO:teuthology.orchestra.run.smithi050.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-03T10:29:59.069 INFO:teuthology.orchestra.run.smithi066.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-03T10:29:59.070 INFO:teuthology.orchestra.run.smithi066.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-05-03T10:29:59.076 INFO:teuthology.orchestra.run.smithi050.stdout:done 2024-05-03T10:29:59.081 INFO:teuthology.orchestra.run.smithi066.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-05-03T10:29:59.102 INFO:teuthology.orchestra.run.smithi066.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-05-03T10:29:59.538 DEBUG:teuthology.orchestra.run.smithi050:> dpkg -s linux-image-generic 2024-05-03T10:29:59.557 INFO:teuthology.orchestra.run.smithi050.stdout:Package: linux-image-generic 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Status: install ok installed 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Priority: optional 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Section: kernel 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Installed-Size: 21 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Maintainer: Ubuntu Kernel Team 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: amd64 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Source: linux-meta 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Version: 5.15.0.105.102 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Recommends: thermald 2024-05-03T10:29:59.558 INFO:teuthology.orchestra.run.smithi050.stdout:Description: Generic Linux kernel image 2024-05-03T10:29:59.559 INFO:teuthology.orchestra.run.smithi050.stdout: This package will always depend on the latest generic kernel image 2024-05-03T10:29:59.559 INFO:teuthology.orchestra.run.smithi050.stdout: available. 2024-05-03T10:29:59.559 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-05-03T10:29:59.559 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-03T10:29:59.560 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-03T10:29:59.560 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-05-03T10:29:59.560 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi050.front.sepia.ceph.com, path=None, version=distro) 2024-05-03T10:29:59.560 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get clean 2024-05-03T10:29:59.746 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get update 2024-05-03T10:29:59.996 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-05-03T10:29:59.996 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-05-03T10:30:00.068 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-05-03T10:30:00.149 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-05-03T10:30:00.532 INFO:teuthology.orchestra.run.smithi066.stdout:Reading package lists... 2024-05-03T10:30:00.550 DEBUG:teuthology.orchestra.run.smithi066:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-03T10:30:00.613 INFO:teuthology.orchestra.run.smithi066.stdout:Reading package lists... 2024-05-03T10:30:00.816 INFO:teuthology.orchestra.run.smithi066.stdout:Building dependency tree... 2024-05-03T10:30:00.817 INFO:teuthology.orchestra.run.smithi066.stdout:Reading state information... 2024-05-03T10:30:00.999 INFO:teuthology.orchestra.run.smithi066.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-05-03T10:30:00.999 INFO:teuthology.orchestra.run.smithi066.stdout:The following packages were automatically installed and are no longer required: 2024-05-03T10:30:00.999 INFO:teuthology.orchestra.run.smithi066.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-03T10:30:00.999 INFO:teuthology.orchestra.run.smithi066.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-03T10:30:00.999 INFO:teuthology.orchestra.run.smithi066.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-03T10:30:01.000 INFO:teuthology.orchestra.run.smithi066.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-05-03T10:30:01.000 INFO:teuthology.orchestra.run.smithi066.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-05-03T10:30:01.000 INFO:teuthology.orchestra.run.smithi066.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-03T10:30:01.039 INFO:teuthology.orchestra.run.smithi066.stdout:0 upgraded, 0 newly installed, 0 to remove and 316 not upgraded. 2024-05-03T10:30:01.040 DEBUG:teuthology.orchestra.run.smithi066:> dpkg -s linux-image-generic 2024-05-03T10:30:01.056 INFO:teuthology.orchestra.run.smithi066.stdout:Package: linux-image-generic 2024-05-03T10:30:01.056 INFO:teuthology.orchestra.run.smithi066.stdout:Status: install ok installed 2024-05-03T10:30:01.056 INFO:teuthology.orchestra.run.smithi066.stdout:Priority: optional 2024-05-03T10:30:01.056 INFO:teuthology.orchestra.run.smithi066.stdout:Section: kernel 2024-05-03T10:30:01.056 INFO:teuthology.orchestra.run.smithi066.stdout:Installed-Size: 21 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout:Maintainer: Ubuntu Kernel Team 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout:Architecture: amd64 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout:Source: linux-meta 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout:Version: 5.15.0.105.102 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout:Recommends: thermald 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout:Description: Generic Linux kernel image 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout: This package will always depend on the latest generic kernel image 2024-05-03T10:30:01.057 INFO:teuthology.orchestra.run.smithi066.stdout: available. 2024-05-03T10:30:01.057 DEBUG:teuthology.orchestra.run.smithi066:> mktemp 2024-05-03T10:30:01.102 INFO:teuthology.orchestra.run.smithi066.stdout:/tmp/tmp.ve6qm8A03R 2024-05-03T10:30:01.102 DEBUG:teuthology.orchestra.run.smithi066:> sudo cp /boot/grub/grub.cfg /tmp/tmp.ve6qm8A03R 2024-05-03T10:30:01.157 DEBUG:teuthology.orchestra.run.smithi066:> sudo chmod 0666 /tmp/tmp.ve6qm8A03R 2024-05-03T10:30:01.274 DEBUG:teuthology.orchestra.remote:smithi066:/tmp/tmp.ve6qm8A03R is 10KB 2024-05-03T10:30:01.287 DEBUG:teuthology.orchestra.run.smithi066:> rm -fr /tmp/tmp.ve6qm8A03R 2024-05-03T10:30:01.294 DEBUG:teuthology.orchestra.run.smithi066:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-05-03T10:30:01.350 DEBUG:teuthology.orchestra.run.smithi066:> set -ex 2024-05-03T10:30:01.351 DEBUG:teuthology.orchestra.run.smithi066:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-05-03T10:30:01.351 DEBUG:teuthology.orchestra.run.smithi066:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-05-03T10:30:01.387 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-05-03T10:30:01.406 DEBUG:teuthology.orchestra.run.smithi050:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-05-03T10:30:01.417 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-05-03T10:30:01.418 DEBUG:teuthology.orchestra.run.smithi066:> sudo update-grub 2024-05-03T10:30:01.470 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-05-03T10:30:01.682 INFO:teuthology.orchestra.run.smithi050.stdout:Building dependency tree... 2024-05-03T10:30:01.682 INFO:teuthology.orchestra.run.smithi050.stdout:Reading state information... 2024-05-03T10:30:01.856 INFO:teuthology.orchestra.run.smithi050.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-05-03T10:30:01.856 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages were automatically installed and are no longer required: 2024-05-03T10:30:01.856 INFO:teuthology.orchestra.run.smithi050.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-05-03T10:30:01.856 INFO:teuthology.orchestra.run.smithi050.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-05-03T10:30:01.856 INFO:teuthology.orchestra.run.smithi050.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-05-03T10:30:01.856 INFO:teuthology.orchestra.run.smithi050.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-05-03T10:30:01.857 INFO:teuthology.orchestra.run.smithi050.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-05-03T10:30:01.857 INFO:teuthology.orchestra.run.smithi050.stdout:Use 'sudo apt autoremove' to remove them. 2024-05-03T10:30:01.897 INFO:teuthology.orchestra.run.smithi050.stdout:0 upgraded, 0 newly installed, 0 to remove and 316 not upgraded. 2024-05-03T10:30:01.898 DEBUG:teuthology.orchestra.run.smithi050:> dpkg -s linux-image-generic 2024-05-03T10:30:01.910 INFO:teuthology.orchestra.run.smithi050.stdout:Package: linux-image-generic 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Status: install ok installed 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Priority: optional 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Section: kernel 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Installed-Size: 21 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Maintainer: Ubuntu Kernel Team 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: amd64 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Source: linux-meta 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Version: 5.15.0.105.102 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-05-03T10:30:01.911 INFO:teuthology.orchestra.run.smithi050.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-05-03T10:30:01.912 INFO:teuthology.orchestra.run.smithi050.stdout:Recommends: thermald 2024-05-03T10:30:01.912 INFO:teuthology.orchestra.run.smithi050.stdout:Description: Generic Linux kernel image 2024-05-03T10:30:01.912 INFO:teuthology.orchestra.run.smithi050.stdout: This package will always depend on the latest generic kernel image 2024-05-03T10:30:01.912 INFO:teuthology.orchestra.run.smithi050.stdout: available. 2024-05-03T10:30:01.912 DEBUG:teuthology.orchestra.run.smithi050:> mktemp 2024-05-03T10:30:01.963 INFO:teuthology.orchestra.run.smithi050.stdout:/tmp/tmp.EiGgJbD1k4 2024-05-03T10:30:01.963 DEBUG:teuthology.orchestra.run.smithi050:> sudo cp /boot/grub/grub.cfg /tmp/tmp.EiGgJbD1k4 2024-05-03T10:30:02.017 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 0666 /tmp/tmp.EiGgJbD1k4 2024-05-03T10:30:02.133 DEBUG:teuthology.orchestra.remote:smithi050:/tmp/tmp.EiGgJbD1k4 is 10KB 2024-05-03T10:30:02.145 DEBUG:teuthology.orchestra.run.smithi050:> rm -fr /tmp/tmp.EiGgJbD1k4 2024-05-03T10:30:02.150 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-05-03T10:30:02.203 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-05-03T10:30:02.203 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-05-03T10:30:02.204 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-05-03T10:30:02.271 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-05-03T10:30:02.271 DEBUG:teuthology.orchestra.run.smithi050:> sudo update-grub 2024-05-03T10:30:02.546 INFO:teuthology.orchestra.run.smithi066.stderr:Sourcing file `/etc/default/grub' 2024-05-03T10:30:02.547 INFO:teuthology.orchestra.run.smithi066.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-03T10:30:02.549 INFO:teuthology.orchestra.run.smithi066.stderr:Generating grub configuration file ... 2024-05-03T10:30:02.702 INFO:teuthology.orchestra.run.smithi066.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-05-03T10:30:02.708 INFO:teuthology.orchestra.run.smithi066.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-05-03T10:30:02.908 INFO:teuthology.orchestra.run.smithi066.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-03T10:30:02.913 INFO:teuthology.orchestra.run.smithi066.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-03T10:30:02.952 INFO:teuthology.orchestra.run.smithi066.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-03T10:30:02.957 INFO:teuthology.orchestra.run.smithi066.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-03T10:30:03.104 INFO:teuthology.orchestra.run.smithi066.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-03T10:30:03.104 INFO:teuthology.orchestra.run.smithi066.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-05-03T10:30:03.104 INFO:teuthology.orchestra.run.smithi066.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-03T10:30:03.121 INFO:teuthology.orchestra.run.smithi066.stderr:done 2024-05-03T10:30:03.130 DEBUG:teuthology.orchestra.run.smithi066:> sudo shutdown -r now 2024-05-03T10:30:03.578 INFO:teuthology.orchestra.run.smithi050.stderr:Sourcing file `/etc/default/grub' 2024-05-03T10:30:03.579 INFO:teuthology.orchestra.run.smithi050.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-05-03T10:30:03.581 INFO:teuthology.orchestra.run.smithi050.stderr:Generating grub configuration file ... 2024-05-03T10:30:03.818 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-05-03T10:30:03.824 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-05-03T10:30:04.117 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-05-03T10:30:04.125 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-05-03T10:30:04.171 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-05-03T10:30:04.177 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-05-03T10:30:04.290 INFO:teuthology.orchestra.run.smithi050.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-05-03T10:30:04.290 INFO:teuthology.orchestra.run.smithi050.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-05-03T10:30:04.290 INFO:teuthology.orchestra.run.smithi050.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-05-03T10:30:04.302 INFO:teuthology.orchestra.run.smithi050.stderr:done 2024-05-03T10:30:04.319 DEBUG:teuthology.orchestra.run.smithi050:> sudo shutdown -r now 2024-05-03T10:30:33.158 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-05-03T10:30:33.159 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi066.front.sepia.ceph.com' 2024-05-03T10:30:33.159 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi066.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:30:34.322 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-05-03T10:30:34.322 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-05-03T10:30:34.323 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:30:51.679 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.66 2024-05-03T10:30:52.702 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.50 2024-05-03T10:31:00.684 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi066.front.sepia.ceph.com' 2024-05-03T10:31:00.685 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi066.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:31:01.703 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-05-03T10:31:01.704 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:31:03.742 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.66 2024-05-03T10:31:15.754 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi066.front.sepia.ceph.com' 2024-05-03T10:31:15.755 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi066.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:31:18.818 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.66 2024-05-03T10:31:33.830 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi066.front.sepia.ceph.com' 2024-05-03T10:31:33.831 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi066.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:32:01.731 DEBUG:teuthology.orchestra.remote:timed out 2024-05-03T10:32:13.738 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-05-03T10:32:13.739 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:32:13.957 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-05-03T10:32:14.572 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-05-03T10:32:14.572 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-105-generic"... 2024-05-03T10:32:14.572 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-05-03T10:32:14.617 INFO:teuthology.orchestra.run.smithi050.stdout:5.15.0-105-generic 2024-05-03T10:32:14.617 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-05-03T10:32:14.617 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-03T10:32:14.617 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-05-03T10:32:15.619 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-05-03T10:32:15.619 DEBUG:teuthology.orchestra.run.smithi050:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-03T10:32:15.691 INFO:teuthology.orchestra.run.smithi050.stdout:ttyS1 2024-05-03T10:32:15.723 DEBUG:teuthology.parallel:result is None 2024-05-03T10:32:33.833 DEBUG:teuthology.orchestra.remote:timed out 2024-05-03T10:32:51.834 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi066.front.sepia.ceph.com' 2024-05-03T10:32:51.835 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi066.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:32:52.099 DEBUG:teuthology.orchestra.run.smithi066:> true 2024-05-03T10:32:52.702 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi066.front.sepia.ceph.com' 2024-05-03T10:32:52.703 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-105-generic"... 2024-05-03T10:32:52.703 DEBUG:teuthology.orchestra.run.smithi066:> uname -r 2024-05-03T10:32:52.750 INFO:teuthology.orchestra.run.smithi066.stdout:5.15.0-105-generic 2024-05-03T10:32:52.750 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-05-03T10:32:52.750 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-03T10:32:52.750 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-05-03T10:32:53.751 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-05-03T10:32:53.751 DEBUG:teuthology.orchestra.run.smithi066:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-03T10:32:53.844 INFO:teuthology.orchestra.run.smithi066.stdout:ttyS1 2024-05-03T10:32:53.872 DEBUG:teuthology.parallel:result is None 2024-05-03T10:32:53.872 INFO:teuthology.run_tasks:Running task internal.base... 2024-05-03T10:32:53.880 INFO:teuthology.task.internal:Creating test directory... 2024-05-03T10:32:53.880 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-03T10:32:53.882 DEBUG:teuthology.orchestra.run.smithi066:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-03T10:32:53.888 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-05-03T10:32:53.894 INFO:teuthology.run_tasks:Running task internal.archive... 2024-05-03T10:32:53.902 INFO:teuthology.task.internal:Creating archive directory... 2024-05-03T10:32:53.902 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-03T10:32:53.929 DEBUG:teuthology.orchestra.run.smithi066:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-03T10:32:53.947 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-05-03T10:32:53.954 INFO:teuthology.task.internal:Enabling coredump saving... 2024-05-03T10:32:53.954 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-05-03T10:32:53.986 DEBUG:teuthology.orchestra.run.smithi066:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-05-03T10:32:54.001 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-03T10:32:54.009 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-03T10:32:54.018 INFO:teuthology.orchestra.run.smithi066.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-03T10:32:54.027 INFO:teuthology.orchestra.run.smithi066.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-03T10:32:54.029 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-05-03T10:32:54.035 INFO:teuthology.task.internal:Configuring sudo... 2024-05-03T10:32:54.036 DEBUG:teuthology.orchestra.run.smithi050:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-03T10:32:54.053 DEBUG:teuthology.orchestra.run.smithi066:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-03T10:32:54.086 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-05-03T10:32:54.095 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-05-03T10:32:54.095 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-03T10:32:54.109 DEBUG:teuthology.orchestra.run.smithi066:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-03T10:32:54.139 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-03T10:32:54.161 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-03T10:32:54.209 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-05-03T10:32:54.209 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-03T10:32:54.279 DEBUG:teuthology.orchestra.run.smithi066:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-03T10:32:54.285 DEBUG:teuthology.orchestra.run.smithi066:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-03T10:32:54.335 DEBUG:teuthology.orchestra.run.smithi066:> set -ex 2024-05-03T10:32:54.335 DEBUG:teuthology.orchestra.run.smithi066:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-03T10:32:54.401 DEBUG:teuthology.orchestra.run.smithi050:> sudo service rsyslog restart 2024-05-03T10:32:54.403 DEBUG:teuthology.orchestra.run.smithi066:> sudo service rsyslog restart 2024-05-03T10:32:54.478 INFO:teuthology.run_tasks:Running task internal.timer... 2024-05-03T10:32:54.485 INFO:teuthology.task.internal:Starting timer... 2024-05-03T10:32:54.485 INFO:teuthology.run_tasks:Running task pcp... 2024-05-03T10:32:54.495 INFO:teuthology.run_tasks:Running task selinux... 2024-05-03T10:32:54.504 DEBUG:teuthology.task.selinux:Excluding smithi050: OS 'ubuntu' does not support SELinux 2024-05-03T10:32:54.504 DEBUG:teuthology.task.selinux:Excluding smithi066: OS 'ubuntu' does not support SELinux 2024-05-03T10:32:54.504 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-05-03T10:32:54.504 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-05-03T10:32:54.504 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-05-03T10:32:54.504 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-05-03T10:32:54.513 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-05-03T10:32:54.519 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-05-03T10:32:54.673 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-05-03T10:32:54.736 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-05-03T10:32:54.737 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi050.front.sepia.ceph.com,smithi066.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-05-03T10:40:06.257 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi050.front.sepia.ceph.com'), Remote(name='ubuntu@smithi066.front.sepia.ceph.com')] 2024-05-03T10:40:06.258 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-05-03T10:40:06.259 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:40:06.345 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-05-03T10:40:06.426 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-05-03T10:40:06.426 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi066.front.sepia.ceph.com' 2024-05-03T10:40:06.427 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi066.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-03T10:40:06.511 DEBUG:teuthology.orchestra.run.smithi066:> true 2024-05-03T10:40:06.591 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi066.front.sepia.ceph.com' 2024-05-03T10:40:06.591 INFO:teuthology.run_tasks:Running task clock... 2024-05-03T10:40:06.605 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-05-03T10:40:06.605 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-03T10:40:06.605 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-03T10:40:06.608 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-03T10:40:06.608 DEBUG:teuthology.orchestra.run.smithi066:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-03T10:40:06.634 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-05-03T10:40:06.634 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Command line: ntpd -gq 2024-05-03T10:40:06.634 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: ---------------------------------------------------- 2024-05-03T10:40:06.635 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: ntp-4 is maintained by Network Time Foundation, 2024-05-03T10:40:06.635 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-05-03T10:40:06.635 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: corporation. Support and training for ntp-4 are 2024-05-03T10:40:06.635 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: available at https://www.nwtime.org/support 2024-05-03T10:40:06.635 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: ---------------------------------------------------- 2024-05-03T10:40:06.636 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: proto: precision = 0.060 usec (-24) 2024-05-03T10:40:06.636 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: basedate set to 2022-02-04 2024-05-03T10:40:06.636 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: gps base set to 2022-02-06 (week 2196) 2024-05-03T10:40:06.636 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-03T10:40:06.636 INFO:teuthology.orchestra.run.smithi050.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-03T10:40:06.636 INFO:teuthology.orchestra.run.smithi050.stderr:restrict ::: KOD does nothing without LIMITED. 2024-05-03T10:40:06.637 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: restrict ::: KOD does nothing without LIMITED. 2024-05-03T10:40:06.638 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Listen and drop on 0 v6wildcard [::]:123 2024-05-03T10:40:06.638 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-05-03T10:40:06.638 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Listen normally on 2 lo 127.0.0.1:123 2024-05-03T10:40:06.638 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Listen normally on 3 ens1f0 172.21.15.50:123 2024-05-03T10:40:06.638 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Listen normally on 4 lo [::1]:123 2024-05-03T10:40:06.638 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1584%4]:123 2024-05-03T10:40:06.638 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:06 ntpd[17147]: Listening on routing socket on fd #22 for interface updates 2024-05-03T10:40:06.665 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-05-03T10:40:06.665 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Command line: ntpd -gq 2024-05-03T10:40:06.665 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: ---------------------------------------------------- 2024-05-03T10:40:06.666 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: ntp-4 is maintained by Network Time Foundation, 2024-05-03T10:40:06.666 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-05-03T10:40:06.666 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: corporation. Support and training for ntp-4 are 2024-05-03T10:40:06.666 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: available at https://www.nwtime.org/support 2024-05-03T10:40:06.666 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: ---------------------------------------------------- 2024-05-03T10:40:06.666 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: proto: precision = 0.046 usec (-24) 2024-05-03T10:40:06.667 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: basedate set to 2022-02-04 2024-05-03T10:40:06.667 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: gps base set to 2022-02-06 (week 2196) 2024-05-03T10:40:06.667 INFO:teuthology.orchestra.run.smithi066.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-03T10:40:06.667 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-05-03T10:40:06.668 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: restrict ::: KOD does nothing without LIMITED. 2024-05-03T10:40:06.668 INFO:teuthology.orchestra.run.smithi066.stderr:restrict ::: KOD does nothing without LIMITED. 2024-05-03T10:40:06.669 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Listen and drop on 0 v6wildcard [::]:123 2024-05-03T10:40:06.669 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-05-03T10:40:06.669 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Listen normally on 2 lo 127.0.0.1:123 2024-05-03T10:40:06.669 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Listen normally on 3 enp3s0f1 172.21.15.66:123 2024-05-03T10:40:06.669 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Listen normally on 4 lo [::1]:123 2024-05-03T10:40:06.669 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:feb6:f8bd%5]:123 2024-05-03T10:40:06.670 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:06 ntpd[17233]: Listening on routing socket on fd #22 for interface updates 2024-05-03T10:40:07.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:07 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:07.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:07 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:07.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:07 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:07.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:07 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:07.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:07 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:07.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:07 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:08.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:08 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:08.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:08 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:08.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:08 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:08.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:08 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:08.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:08 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:08.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:08 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:09.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.637 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.637 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:09.637 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:09 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:09.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:09.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:09 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:10.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:10 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:10.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:10 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:10.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:10 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:10.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:10 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:10.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:10 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:10.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:10 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:10.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:10 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:10.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:10 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:11.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:11.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:11 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:11.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:11.669 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:11 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:12.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:12 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:12.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:12 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:12.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:12 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:12.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:12 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:12.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:12 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:12.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:12 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:13.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.635 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:13.636 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:13.636 INFO:teuthology.orchestra.run.smithi050.stdout: 3 May 10:40:13 ntpd[17147]: ntpd: time slew -0.001722 s 2024-05-03T10:40:13.636 INFO:teuthology.orchestra.run.smithi050.stdout:ntpd: time slew -0.001722s 2024-05-03T10:40:13.637 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-05-03T10:40:13.637 INFO:teuthology.orchestra.run.smithi050.stderr: 3 May 10:40:13 ntpd[17147]: can't open /var/log/ntpstats/loopstats.20240503: Permission denied 2024-05-03T10:40:13.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:13.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:13 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:13.682 INFO:teuthology.orchestra.run.smithi050.stdout: remote refid st t when poll reach delay offset jitter 2024-05-03T10:40:13.683 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================== 2024-05-03T10:40:13.683 INFO:teuthology.orchestra.run.smithi050.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:13.683 INFO:teuthology.orchestra.run.smithi050.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:13.683 INFO:teuthology.orchestra.run.smithi050.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:13.683 INFO:teuthology.orchestra.run.smithi050.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:15.666 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: can't open /var/log/ntpstats/rawstats.20240503: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: can't open /var/log/ntpstats/peerstats.20240503: Permission denied 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stdout: 3 May 10:40:15 ntpd[17233]: ntpd: time slew +0.000851 s 2024-05-03T10:40:15.667 INFO:teuthology.orchestra.run.smithi066.stdout:ntpd: time slew +0.000851s 2024-05-03T10:40:15.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-05-03T10:40:15.668 INFO:teuthology.orchestra.run.smithi066.stderr: 3 May 10:40:15 ntpd[17233]: can't open /var/log/ntpstats/loopstats.20240503: Permission denied 2024-05-03T10:40:15.719 INFO:teuthology.orchestra.run.smithi066.stdout: remote refid st t when poll reach delay offset jitter 2024-05-03T10:40:15.720 INFO:teuthology.orchestra.run.smithi066.stdout:============================================================================== 2024-05-03T10:40:15.720 INFO:teuthology.orchestra.run.smithi066.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:15.720 INFO:teuthology.orchestra.run.smithi066.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:15.720 INFO:teuthology.orchestra.run.smithi066.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:15.720 INFO:teuthology.orchestra.run.smithi066.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:15.721 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-05-03T10:40:15.731 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-05-03T10:40:15.731 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-05-03T10:40:15.731 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-05-03T10:40:15.737 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-05-03T10:40:15.737 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_1 2024-05-03T10:40:15.787 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-05-03T10:40:15.787 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-03T10:40:15.787 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 888 Links: 1 2024-05-03T10:40:15.787 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-03T10:40:15.787 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-05-03 10:36:43.887002013 +0000 2024-05-03T10:40:15.787 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-05-03 10:36:43.635004263 +0000 2024-05-03T10:40:15.787 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-05-03 10:36:43.635004263 +0000 2024-05-03T10:40:15.787 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-05-03T10:40:15.788 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-05-03T10:40:15.840 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-05-03T10:40:15.841 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-05-03T10:40:15.841 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000241304 s, 2.1 MB/s 2024-05-03T10:40:15.842 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-05-03T10:40:15.893 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_2 2024-05-03T10:40:15.942 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-05-03T10:40:15.942 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-03T10:40:15.942 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 905 Links: 1 2024-05-03T10:40:15.942 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-03T10:40:15.942 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-05-03 10:36:44.354997832 +0000 2024-05-03T10:40:15.942 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-05-03 10:36:44.111000012 +0000 2024-05-03T10:40:15.942 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-05-03 10:36:44.111000012 +0000 2024-05-03T10:40:15.942 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-05-03T10:40:15.943 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-05-03T10:40:15.996 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-05-03T10:40:15.997 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-05-03T10:40:15.997 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000269821 s, 1.9 MB/s 2024-05-03T10:40:15.998 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-05-03T10:40:16.048 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_3 2024-05-03T10:40:16.094 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-05-03T10:40:16.094 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-03T10:40:16.094 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 925 Links: 1 2024-05-03T10:40:16.094 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-03T10:40:16.094 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-05-03 10:36:44.886993081 +0000 2024-05-03T10:40:16.094 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-05-03 10:36:44.598995653 +0000 2024-05-03T10:40:16.094 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-05-03 10:36:44.598995653 +0000 2024-05-03T10:40:16.094 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-05-03T10:40:16.095 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-05-03T10:40:16.148 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-05-03T10:40:16.148 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-05-03T10:40:16.148 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.00030336 s, 1.7 MB/s 2024-05-03T10:40:16.149 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-05-03T10:40:16.199 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_4 2024-05-03T10:40:16.245 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-05-03T10:40:16.246 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-03T10:40:16.246 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 936 Links: 1 2024-05-03T10:40:16.246 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-03T10:40:16.246 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-05-03 10:36:45.338989043 +0000 2024-05-03T10:40:16.246 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-05-03 10:36:45.094991223 +0000 2024-05-03T10:40:16.246 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-05-03 10:36:45.094991223 +0000 2024-05-03T10:40:16.246 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-05-03T10:40:16.246 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-05-03T10:40:16.300 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-05-03T10:40:16.300 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-05-03T10:40:16.300 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000311861 s, 1.6 MB/s 2024-05-03T10:40:16.302 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-05-03T10:40:16.351 DEBUG:teuthology.orchestra.run.smithi050:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-05-03T10:40:16.486 INFO:teuthology.orchestra.run.smithi050.stdout:loop 2024-05-03T10:40:16.488 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_1... 2024-05-03T10:40:16.488 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-05-03T10:40:16.507 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-05-03T10:40:16.529 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_11 2024-05-03T10:40:16.547 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_2... 2024-05-03T10:40:16.547 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-05-03T10:40:16.610 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-05-03T10:40:16.633 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_21 2024-05-03T10:40:16.653 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_3... 2024-05-03T10:40:16.653 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-05-03T10:40:16.710 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-05-03T10:40:16.733 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_31 2024-05-03T10:40:16.749 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_4... 2024-05-03T10:40:16.749 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-05-03T10:40:16.813 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-05-03T10:40:16.834 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_41 2024-05-03T10:40:16.853 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-05-03T10:40:16.853 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-05-03T10:40:16.907 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme list 2024-05-03T10:40:16.960 INFO:teuthology.orchestra.run.smithi050.stdout:Node SN Model Namespace Usage Format FW Rev 2024-05-03T10:40:16.961 INFO:teuthology.orchestra.run.smithi050.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-05-03T10:40:16.961 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/nvme0n1 PHMB7513001F480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-05-03T10:40:16.961 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/nvme1n1 c7d3daa14f9d41c1f6a9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-05-03T10:40:16.961 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/nvme2n1 26e086004a58695b0d3e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-05-03T10:40:16.961 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/nvme3n1 7995a101773bbb18965c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-05-03T10:40:16.961 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/nvme4n1 0feca166e88212c952c8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-05-03T10:40:16.962 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-05-03T10:40:16.962 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-05-03T10:40:16.962 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/scratch_devs 2024-05-03T10:40:17.018 DEBUG:teuthology.orchestra.run.smithi066:> set -ex 2024-05-03T10:40:17.018 DEBUG:teuthology.orchestra.run.smithi066:> dd if=/scratch_devs of=/dev/stdout 2024-05-03T10:40:17.024 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-05-03T10:40:17.024 DEBUG:teuthology.orchestra.run.smithi066:> stat /dev/vg_nvme/lv_1 2024-05-03T10:40:17.074 INFO:teuthology.orchestra.run.smithi066.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-05-03T10:40:17.074 INFO:teuthology.orchestra.run.smithi066.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-03T10:40:17.074 INFO:teuthology.orchestra.run.smithi066.stdout:Device: 5h/5d Inode: 887 Links: 1 2024-05-03T10:40:17.074 INFO:teuthology.orchestra.run.smithi066.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-03T10:40:17.074 INFO:teuthology.orchestra.run.smithi066.stdout:Access: 2024-05-03 10:36:45.594641434 +0000 2024-05-03T10:40:17.074 INFO:teuthology.orchestra.run.smithi066.stdout:Modify: 2024-05-03 10:36:45.326643827 +0000 2024-05-03T10:40:17.074 INFO:teuthology.orchestra.run.smithi066.stdout:Change: 2024-05-03 10:36:45.326643827 +0000 2024-05-03T10:40:17.074 INFO:teuthology.orchestra.run.smithi066.stdout: Birth: - 2024-05-03T10:40:17.075 DEBUG:teuthology.orchestra.run.smithi066:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-05-03T10:40:17.128 INFO:teuthology.orchestra.run.smithi066.stderr:1+0 records in 2024-05-03T10:40:17.129 INFO:teuthology.orchestra.run.smithi066.stderr:1+0 records out 2024-05-03T10:40:17.129 INFO:teuthology.orchestra.run.smithi066.stderr:512 bytes copied, 0.000452716 s, 1.1 MB/s 2024-05-03T10:40:17.130 DEBUG:teuthology.orchestra.run.smithi066:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-05-03T10:40:17.179 DEBUG:teuthology.orchestra.run.smithi066:> stat /dev/vg_nvme/lv_2 2024-05-03T10:40:17.225 INFO:teuthology.orchestra.run.smithi066.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-05-03T10:40:17.250 INFO:teuthology.orchestra.run.smithi066.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-03T10:40:17.250 INFO:teuthology.orchestra.run.smithi066.stdout:Device: 5h/5d Inode: 904 Links: 1 2024-05-03T10:40:17.250 INFO:teuthology.orchestra.run.smithi066.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-03T10:40:17.250 INFO:teuthology.orchestra.run.smithi066.stdout:Access: 2024-05-03 10:36:45.838639255 +0000 2024-05-03T10:40:17.250 INFO:teuthology.orchestra.run.smithi066.stdout:Modify: 2024-05-03 10:36:45.834639289 +0000 2024-05-03T10:40:17.250 INFO:teuthology.orchestra.run.smithi066.stdout:Change: 2024-05-03 10:36:45.834639289 +0000 2024-05-03T10:40:17.250 INFO:teuthology.orchestra.run.smithi066.stdout: Birth: - 2024-05-03T10:40:17.251 DEBUG:teuthology.orchestra.run.smithi066:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-05-03T10:40:17.279 INFO:teuthology.orchestra.run.smithi066.stderr:1+0 records in 2024-05-03T10:40:17.280 INFO:teuthology.orchestra.run.smithi066.stderr:1+0 records out 2024-05-03T10:40:17.280 INFO:teuthology.orchestra.run.smithi066.stderr:512 bytes copied, 0.000404932 s, 1.3 MB/s 2024-05-03T10:40:17.281 DEBUG:teuthology.orchestra.run.smithi066:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-05-03T10:40:17.330 DEBUG:teuthology.orchestra.run.smithi066:> stat /dev/vg_nvme/lv_3 2024-05-03T10:40:17.377 INFO:teuthology.orchestra.run.smithi066.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-05-03T10:40:17.377 INFO:teuthology.orchestra.run.smithi066.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-03T10:40:17.377 INFO:teuthology.orchestra.run.smithi066.stdout:Device: 5h/5d Inode: 917 Links: 1 2024-05-03T10:40:17.377 INFO:teuthology.orchestra.run.smithi066.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-03T10:40:17.377 INFO:teuthology.orchestra.run.smithi066.stdout:Access: 2024-05-03 10:36:46.594632501 +0000 2024-05-03T10:40:17.377 INFO:teuthology.orchestra.run.smithi066.stdout:Modify: 2024-05-03 10:36:46.330634859 +0000 2024-05-03T10:40:17.378 INFO:teuthology.orchestra.run.smithi066.stdout:Change: 2024-05-03 10:36:46.330634859 +0000 2024-05-03T10:40:17.378 INFO:teuthology.orchestra.run.smithi066.stdout: Birth: - 2024-05-03T10:40:17.378 DEBUG:teuthology.orchestra.run.smithi066:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-05-03T10:40:17.432 INFO:teuthology.orchestra.run.smithi066.stderr:1+0 records in 2024-05-03T10:40:17.432 INFO:teuthology.orchestra.run.smithi066.stderr:1+0 records out 2024-05-03T10:40:17.432 INFO:teuthology.orchestra.run.smithi066.stderr:512 bytes copied, 0.000438807 s, 1.2 MB/s 2024-05-03T10:40:17.433 DEBUG:teuthology.orchestra.run.smithi066:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-05-03T10:40:17.482 DEBUG:teuthology.orchestra.run.smithi066:> stat /dev/vg_nvme/lv_4 2024-05-03T10:40:17.529 INFO:teuthology.orchestra.run.smithi066.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-05-03T10:40:17.529 INFO:teuthology.orchestra.run.smithi066.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-03T10:40:17.529 INFO:teuthology.orchestra.run.smithi066.stdout:Device: 5h/5d Inode: 939 Links: 1 2024-05-03T10:40:17.529 INFO:teuthology.orchestra.run.smithi066.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-03T10:40:17.529 INFO:teuthology.orchestra.run.smithi066.stdout:Access: 2024-05-03 10:36:47.098628000 +0000 2024-05-03T10:40:17.529 INFO:teuthology.orchestra.run.smithi066.stdout:Modify: 2024-05-03 10:36:46.838630322 +0000 2024-05-03T10:40:17.529 INFO:teuthology.orchestra.run.smithi066.stdout:Change: 2024-05-03 10:36:46.838630322 +0000 2024-05-03T10:40:17.529 INFO:teuthology.orchestra.run.smithi066.stdout: Birth: - 2024-05-03T10:40:17.530 DEBUG:teuthology.orchestra.run.smithi066:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-05-03T10:40:17.583 INFO:teuthology.orchestra.run.smithi066.stderr:1+0 records in 2024-05-03T10:40:17.583 INFO:teuthology.orchestra.run.smithi066.stderr:1+0 records out 2024-05-03T10:40:17.584 INFO:teuthology.orchestra.run.smithi066.stderr:512 bytes copied, 0.000355259 s, 1.4 MB/s 2024-05-03T10:40:17.585 DEBUG:teuthology.orchestra.run.smithi066:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-05-03T10:40:17.634 DEBUG:teuthology.orchestra.run.smithi066:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-05-03T10:40:17.772 INFO:teuthology.orchestra.run.smithi066.stdout:loop 2024-05-03T10:40:17.774 INFO:tasks.nvme_loop:Connecting nvme_loop smithi066:/dev/vg_nvme/lv_1... 2024-05-03T10:40:17.774 DEBUG:teuthology.orchestra.run.smithi066:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-05-03T10:40:17.792 INFO:teuthology.orchestra.run.smithi066.stdout:1 2024-05-03T10:40:17.814 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/vg_nvme/lv_11 2024-05-03T10:40:17.832 INFO:tasks.nvme_loop:Connecting nvme_loop smithi066:/dev/vg_nvme/lv_2... 2024-05-03T10:40:17.832 DEBUG:teuthology.orchestra.run.smithi066:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-05-03T10:40:17.892 INFO:teuthology.orchestra.run.smithi066.stdout:1 2024-05-03T10:40:17.912 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/vg_nvme/lv_21 2024-05-03T10:40:17.928 INFO:tasks.nvme_loop:Connecting nvme_loop smithi066:/dev/vg_nvme/lv_3... 2024-05-03T10:40:17.928 DEBUG:teuthology.orchestra.run.smithi066:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-05-03T10:40:17.988 INFO:teuthology.orchestra.run.smithi066.stdout:1 2024-05-03T10:40:18.007 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/vg_nvme/lv_31 2024-05-03T10:40:18.023 INFO:tasks.nvme_loop:Connecting nvme_loop smithi066:/dev/vg_nvme/lv_4... 2024-05-03T10:40:18.023 DEBUG:teuthology.orchestra.run.smithi066:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-05-03T10:40:18.080 INFO:teuthology.orchestra.run.smithi066.stdout:1 2024-05-03T10:40:18.100 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/vg_nvme/lv_41 2024-05-03T10:40:18.116 DEBUG:teuthology.orchestra.run.smithi066:> set -ex 2024-05-03T10:40:18.116 DEBUG:teuthology.orchestra.run.smithi066:> dd if=/scratch_devs of=/dev/stdout 2024-05-03T10:40:18.165 DEBUG:teuthology.orchestra.run.smithi066:> sudo nvme list 2024-05-03T10:40:18.217 INFO:teuthology.orchestra.run.smithi066.stdout:Node SN Model Namespace Usage Format FW Rev 2024-05-03T10:40:18.217 INFO:teuthology.orchestra.run.smithi066.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-05-03T10:40:18.217 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/nvme0n1 CVFT53430091400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-05-03T10:40:18.218 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/nvme1n1 c1856bc950ddd3d61d00 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-05-03T10:40:18.218 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/nvme2n1 0339a8e3ec2f265cb12f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-05-03T10:40:18.218 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/nvme3n1 9f30d7ffa0e12df6cc1e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-05-03T10:40:18.218 INFO:teuthology.orchestra.run.smithi066.stdout:/dev/nvme4n1 99d2ad7fb9eaf8fe4228 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-05-03T10:40:18.219 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-05-03T10:40:18.219 DEBUG:teuthology.orchestra.run.smithi066:> set -ex 2024-05-03T10:40:18.219 DEBUG:teuthology.orchestra.run.smithi066:> sudo dd of=/scratch_devs 2024-05-03T10:40:18.270 INFO:teuthology.run_tasks:Running task cephadm... 2024-05-03T10:40:18.372 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'log-only-match': ['CEPHADM_'], 'sha1': 'f8e6d2d721bc96a93915917c59bc3d287d57263d'} 2024-05-03T10:40:18.372 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d 2024-05-03T10:40:18.373 INFO:tasks.cephadm:Cluster fsid is 88be3d34-0939-11ef-bc97-c7b262605968 2024-05-03T10:40:18.373 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-05-03T10:40:18.373 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-05-03T10:40:18.373 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi050': '172.21.15.50', 'mon.smithi066': '172.21.15.66'} 2024-05-03T10:40:18.373 INFO:tasks.cephadm:Normalizing hostnames... 2024-05-03T10:40:18.373 DEBUG:teuthology.orchestra.run.smithi050:> sudo hostname $(hostname -s) 2024-05-03T10:40:18.389 DEBUG:teuthology.orchestra.run.smithi066:> sudo hostname $(hostname -s) 2024-05-03T10:40:18.404 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-05-03T10:40:18.404 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=f8e6d2d721bc96a93915917c59bc3d287d57263d 2024-05-03T10:40:18.629 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'f8e6d2d721bc96a93915917c59bc3d287d57263d', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/79050/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-3353-gf8e6d2d7', 'node_name': '172.21.15.4+smithi004', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-3353-gf8e6d2d7-1jammy'}, 'url': 'https://4.chacra.ceph.com/r/ceph/wip-guits-testing-2024-05-02-0628/f8e6d2d721bc96a93915917c59bc3d287d57263d/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-05-02 13:28:38.969707', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-guits-testing-2024-05-02-0628', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/wip-guits-testing-2024-05-02-0628/f8e6d2d721bc96a93915917c59bc3d287d57263d/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-05-03T10:40:18.780 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref wip-guits-testing-2024-05-02-0628, sha1 f8e6d2d721bc96a93915917c59bc3d287d57263d from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=f8e6d2d721bc96a93915917c59bc3d287d57263d 2024-05-03T10:40:18.781 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/wip-guits-testing-2024-05-02-0628/f8e6d2d721bc96a93915917c59bc3d287d57263d/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-05-03T10:40:18.782 DEBUG:teuthology.orchestra.run.smithi050:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/wip-guits-testing-2024-05-02-0628/f8e6d2d721bc96a93915917c59bc3d287d57263d/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-03T10:40:20.158 INFO:teuthology.orchestra.run.smithi050.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789020 May 3 10:40 /home/ubuntu/cephtest/cephadm 2024-05-03T10:40:20.159 DEBUG:teuthology.orchestra.run.smithi066:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/wip-guits-testing-2024-05-02-0628/f8e6d2d721bc96a93915917c59bc3d287d57263d/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-03T10:40:21.652 INFO:teuthology.orchestra.run.smithi066.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789020 May 3 10:40 /home/ubuntu/cephtest/cephadm 2024-05-03T10:40:21.652 DEBUG:teuthology.orchestra.run.smithi050:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-03T10:40:21.660 DEBUG:teuthology.orchestra.run.smithi066:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-03T10:40:21.676 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d on all hosts... 2024-05-03T10:40:21.676 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d pull 2024-05-03T10:40:21.703 DEBUG:teuthology.orchestra.run.smithi066:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d pull 2024-05-03T10:40:21.870 INFO:teuthology.orchestra.run.smithi050.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d... 2024-05-03T10:40:21.880 INFO:teuthology.orchestra.run.smithi066.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d... 2024-05-03T10:40:22.102 INFO:teuthology.orchestra.run.smithi066.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d 2024-05-03T10:40:22.102 INFO:teuthology.orchestra.run.smithi066.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d not found: manifest unknown: manifest unknown 2024-05-03T10:40:22.102 INFO:teuthology.orchestra.run.smithi066.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d 2024-05-03T10:40:22.105 INFO:teuthology.orchestra.run.smithi050.stderr:Non-zero exit code 1 from /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d 2024-05-03T10:40:22.105 INFO:teuthology.orchestra.run.smithi050.stderr:/usr/bin/docker: stderr Error response from daemon: manifest for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d not found: manifest unknown: manifest unknown 2024-05-03T10:40:22.105 INFO:teuthology.orchestra.run.smithi050.stderr:ERROR: Failed command: /usr/bin/docker pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d 2024-05-03T10:40:22.134 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:22.135 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi050 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d pull' 2024-05-03T10:40:22.136 INFO:tasks.cephadm:Archiving crash dumps... 2024-05-03T10:40:22.137 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/lib/ceph/88be3d34-0939-11ef-bc97-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297/remote/smithi050/crash 2024-05-03T10:40:22.138 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/lib/ceph/88be3d34-0939-11ef-bc97-c7b262605968/crash -- . 2024-05-03T10:40:22.149 INFO:teuthology.orchestra.run.smithi050.stderr:tar: /var/lib/ceph/88be3d34-0939-11ef-bc97-c7b262605968/crash: Cannot open: No such file or directory 2024-05-03T10:40:22.149 INFO:teuthology.orchestra.run.smithi050.stderr:tar: Error is not recoverable: exiting now 2024-05-03T10:40:22.151 DEBUG:teuthology.misc:Transferring archived files from smithi066:/var/lib/ceph/88be3d34-0939-11ef-bc97-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297/remote/smithi066/crash 2024-05-03T10:40:22.152 DEBUG:teuthology.orchestra.run.smithi066:> sudo tar c -f - -C /var/lib/ceph/88be3d34-0939-11ef-bc97-c7b262605968/crash -- . 2024-05-03T10:40:22.165 INFO:teuthology.orchestra.run.smithi066.stderr:tar: /var/lib/ceph/88be3d34-0939-11ef-bc97-c7b262605968/crash: Cannot open: No such file or directory 2024-05-03T10:40:22.165 INFO:teuthology.orchestra.run.smithi066.stderr:tar: Error is not recoverable: exiting now 2024-05-03T10:40:22.166 INFO:tasks.cephadm:Checking cluster log for badness... 2024-05-03T10:40:22.166 DEBUG:teuthology.orchestra.run.smithi050:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/88be3d34-0939-11ef-bc97-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-05-03T10:40:22.205 INFO:teuthology.orchestra.run.smithi050.stderr:grep: /var/log/ceph/88be3d34-0939-11ef-bc97-c7b262605968/ceph.log: No such file or directory 2024-05-03T10:40:22.207 INFO:tasks.cephadm:Compressing logs... 2024-05-03T10:40:22.207 DEBUG:teuthology.orchestra.run.smithi050:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-05-03T10:40:22.251 DEBUG:teuthology.orchestra.run.smithi066:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-05-03T10:40:22.261 INFO:teuthology.orchestra.run.smithi050.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-05-03T10:40:22.264 INFO:teuthology.orchestra.run.smithi066.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-05-03T10:40:22.268 INFO:teuthology.orchestra.run.smithi066.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-05-03T10:40:22.269 INFO:teuthology.orchestra.run.smithi066.stderr:/var/log/ceph/cephadm.log: 69.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-05-03T10:40:22.270 INFO:teuthology.orchestra.run.smithi066.stderr: 2024-05-03T10:40:22.271 INFO:teuthology.orchestra.run.smithi066.stderr:real 0m0.015s 2024-05-03T10:40:22.271 INFO:teuthology.orchestra.run.smithi066.stderr:user 0m0.011s 2024-05-03T10:40:22.271 INFO:teuthology.orchestra.run.smithi066.stderr:sys 0m0.010s 2024-05-03T10:40:22.274 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-05-03T10:40:22.275 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/cephadm.log: 69.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-05-03T10:40:22.277 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-05-03T10:40:22.277 INFO:teuthology.orchestra.run.smithi050.stderr:real 0m0.023s 2024-05-03T10:40:22.277 INFO:teuthology.orchestra.run.smithi050.stderr:user 0m0.010s 2024-05-03T10:40:22.277 INFO:teuthology.orchestra.run.smithi050.stderr:sys 0m0.009s 2024-05-03T10:40:22.277 INFO:tasks.cephadm:Archiving logs... 2024-05-03T10:40:22.277 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297/remote/smithi050/log 2024-05-03T10:40:22.278 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-03T10:40:22.330 DEBUG:teuthology.misc:Transferring archived files from smithi066:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297/remote/smithi066/log 2024-05-03T10:40:22.331 DEBUG:teuthology.orchestra.run.smithi066:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-03T10:40:22.343 INFO:tasks.cephadm:Removing cluster... 2024-05-03T10:40:22.343 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 88be3d34-0939-11ef-bc97-c7b262605968 --force 2024-05-03T10:40:22.539 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 88be3d34-0939-11ef-bc97-c7b262605968 2024-05-03T10:40:23.663 DEBUG:teuthology.orchestra.run.smithi066:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 88be3d34-0939-11ef-bc97-c7b262605968 --force 2024-05-03T10:40:23.831 INFO:teuthology.orchestra.run.smithi066.stdout:Deleting cluster with fsid: 88be3d34-0939-11ef-bc97-c7b262605968 2024-05-03T10:40:24.950 INFO:tasks.cephadm:Removing cephadm ... 2024-05-03T10:40:24.950 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-03T10:40:24.957 DEBUG:teuthology.orchestra.run.smithi066:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-03T10:40:24.962 INFO:tasks.cephadm:Teardown complete 2024-05-03T10:40:24.962 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa/tasks/cephadm.py", line 2210, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa/tasks/cephadm.py", line 1839, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi050 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d pull' 2024-05-03T10:40:25.174 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=c7ced41863d24fa49d8b95f204cf0ed5 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa/tasks/cephadm.py", line 2210, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa/tasks/cephadm.py", line 1839, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_f8e6d2d721bc96a93915917c59bc3d287d57263d/qa/tasks/cephadm.py", line 579, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_1ae7ad82388e92a475afff437d49054826c019a1/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi050 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d pull' 2024-05-03T10:40:25.177 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-05-03T10:40:25.188 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-05-03T10:40:25.196 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_1... 2024-05-03T10:40:25.196 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_1 2024-05-03T10:40:25.438 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-05-03T10:40:25.440 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:25.440 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_2... 2024-05-03T10:40:25.440 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_2 2024-05-03T10:40:25.702 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-05-03T10:40:25.703 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:25.704 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_3... 2024-05-03T10:40:25.704 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_3 2024-05-03T10:40:25.994 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-05-03T10:40:25.996 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:25.996 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_4... 2024-05-03T10:40:25.996 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_4 2024-05-03T10:40:26.258 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-05-03T10:40:26.259 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:26.260 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-05-03T10:40:26.260 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/scratch_devs 2024-05-03T10:40:26.274 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi066:/dev/vg_nvme/lv_1... 2024-05-03T10:40:26.274 DEBUG:teuthology.orchestra.run.smithi066:> sudo nvme disconnect -n lv_1 2024-05-03T10:40:26.514 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:26.514 INFO:teuthology.orchestra.run.smithi066.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-05-03T10:40:26.515 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi066:/dev/vg_nvme/lv_2... 2024-05-03T10:40:26.515 DEBUG:teuthology.orchestra.run.smithi066:> sudo nvme disconnect -n lv_2 2024-05-03T10:40:26.765 INFO:teuthology.orchestra.run.smithi066.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-05-03T10:40:26.766 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:26.766 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi066:/dev/vg_nvme/lv_3... 2024-05-03T10:40:26.766 DEBUG:teuthology.orchestra.run.smithi066:> sudo nvme disconnect -n lv_3 2024-05-03T10:40:27.037 INFO:teuthology.orchestra.run.smithi066.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-05-03T10:40:27.037 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:27.038 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi066:/dev/vg_nvme/lv_4... 2024-05-03T10:40:27.038 DEBUG:teuthology.orchestra.run.smithi066:> sudo nvme disconnect -n lv_4 2024-05-03T10:40:27.268 INFO:teuthology.orchestra.run.smithi066.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-05-03T10:40:27.269 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:27.270 DEBUG:teuthology.orchestra.run.smithi066:> set -ex 2024-05-03T10:40:27.270 DEBUG:teuthology.orchestra.run.smithi066:> sudo dd of=/scratch_devs 2024-05-03T10:40:27.283 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-05-03T10:40:27.292 INFO:teuthology.task.clock:Checking final clock skew... 2024-05-03T10:40:27.293 DEBUG:teuthology.orchestra.run.smithi050:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-03T10:40:27.295 DEBUG:teuthology.orchestra.run.smithi066:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-03T10:40:27.306 INFO:teuthology.orchestra.run.smithi050.stdout: remote refid st t when poll reach delay offset jitter 2024-05-03T10:40:27.307 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================== 2024-05-03T10:40:27.307 INFO:teuthology.orchestra.run.smithi050.stdout: hv01.front.sepi 67.205.162.81 3 u 13 64 1 0.100 -1.567 0.000 2024-05-03T10:40:27.307 INFO:teuthology.orchestra.run.smithi050.stdout: hv02.front.sepi 63.231.80.2 3 u 12 64 1 0.141 -0.941 0.000 2024-05-03T10:40:27.307 INFO:teuthology.orchestra.run.smithi050.stdout: hv03.front.sepi 74.6.168.72 3 u 11 64 1 0.081 +0.952 0.000 2024-05-03T10:40:27.307 INFO:teuthology.orchestra.run.smithi050.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:27.336 INFO:teuthology.orchestra.run.smithi066.stdout: remote refid st t when poll reach delay offset jitter 2024-05-03T10:40:27.336 INFO:teuthology.orchestra.run.smithi066.stdout:============================================================================== 2024-05-03T10:40:27.336 INFO:teuthology.orchestra.run.smithi066.stdout: hv01.front.sepi 67.205.162.81 3 u 8 64 1 0.127 -1.571 0.000 2024-05-03T10:40:27.336 INFO:teuthology.orchestra.run.smithi066.stdout: hv02.front.sepi 63.231.80.2 3 u 10 64 1 0.108 -1.331 0.000 2024-05-03T10:40:27.336 INFO:teuthology.orchestra.run.smithi066.stdout: hv03.front.sepi 74.6.168.72 3 u 10 64 1 0.123 +0.098 0.000 2024-05-03T10:40:27.337 INFO:teuthology.orchestra.run.smithi066.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-05-03T10:40:27.338 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-05-03T10:40:27.346 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-05-03T10:40:27.347 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-05-03T10:40:27.355 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-05-03T10:40:27.363 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-05-03T10:40:27.371 INFO:teuthology.task.internal:Duration was 452.885269 seconds 2024-05-03T10:40:27.371 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-05-03T10:40:27.380 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-05-03T10:40:27.380 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-03T10:40:27.383 DEBUG:teuthology.orchestra.run.smithi066:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-03T10:40:27.420 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-05-03T10:40:27.420 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi050.front.sepia.ceph.com 2024-05-03T10:40:27.420 DEBUG:teuthology.orchestra.run.smithi050:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-05-03T10:40:27.471 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi066.front.sepia.ceph.com 2024-05-03T10:40:27.471 DEBUG:teuthology.orchestra.run.smithi066:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-05-03T10:40:27.481 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-05-03T10:40:27.481 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-03T10:40:27.519 DEBUG:teuthology.orchestra.run.smithi066:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-03T10:40:27.549 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-05-03T10:40:27.549 DEBUG:teuthology.orchestra.run.smithi050:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-03T10:40:27.587 DEBUG:teuthology.orchestra.run.smithi066:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-03T10:40:27.647 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-05-03T10:40:27.656 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-05-03T10:40:27.656 DEBUG:teuthology.orchestra.run.smithi050:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-03T10:40:27.671 DEBUG:teuthology.orchestra.run.smithi066:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-03T10:40:27.683 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-05-03T10:40:27.692 DEBUG:teuthology.orchestra.run.smithi050:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-05-03T10:40:27.715 DEBUG:teuthology.orchestra.run.smithi066:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-05-03T10:40:27.725 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = core 2024-05-03T10:40:27.735 INFO:teuthology.orchestra.run.smithi066.stdout:kernel.core_pattern = core 2024-05-03T10:40:27.758 DEBUG:teuthology.orchestra.run.smithi050:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-03T10:40:27.801 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:27.802 DEBUG:teuthology.orchestra.run.smithi066:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-03T10:40:27.806 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-03T10:40:27.807 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-05-03T10:40:27.816 INFO:teuthology.task.internal:Transferring archived files... 2024-05-03T10:40:27.817 DEBUG:teuthology.misc:Transferring archived files from smithi050:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297/remote/smithi050 2024-05-03T10:40:27.817 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-03T10:40:27.866 DEBUG:teuthology.misc:Transferring archived files from smithi066:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297/remote/smithi066 2024-05-03T10:40:27.867 DEBUG:teuthology.orchestra.run.smithi066:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-03T10:40:27.888 INFO:teuthology.task.internal:Removing archive directory... 2024-05-03T10:40:27.888 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-03T10:40:27.907 DEBUG:teuthology.orchestra.run.smithi066:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-03T10:40:27.933 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-05-03T10:40:27.945 INFO:teuthology.task.internal:Not uploading archives. 2024-05-03T10:40:27.946 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-05-03T10:40:27.962 INFO:teuthology.task.internal:Tidying up after the test... 2024-05-03T10:40:27.963 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-03T10:40:27.965 DEBUG:teuthology.orchestra.run.smithi066:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-03T10:40:27.969 INFO:teuthology.orchestra.run.smithi050.stdout: 658625 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 3 10:40 /home/ubuntu/cephtest 2024-05-03T10:40:27.981 INFO:teuthology.orchestra.run.smithi066.stdout: 658639 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 3 10:40 /home/ubuntu/cephtest 2024-05-03T10:40:27.982 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-05-03T10:40:27.991 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-05-03T10:40:28.010 INFO:teuthology.nuke:Checking targets against current locks 2024-05-03T10:40:28.035 DEBUG:teuthology.nuke:shortname: smithi050 2024-05-03T10:40:28.035 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-03T10:40:28.055 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-05-03 10:22:24.046311', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHPIaHub9h7FyXsFQzcgbuF8K93O4M/nKg7J+skhkd5UA0YL+4R4Pxj3lH5+83h6jup8eGg6aOX/qbstbMmo4xQ='} 2024-05-03T10:40:28.060 DEBUG:teuthology.nuke:shortname: smithi066 2024-05-03T10:40:28.061 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-03T10:40:28.081 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi066.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-05-03_06:31:58-orch:cephadm-wip-guits-testing-2024-05-02-0628-distro-default-smithi/7687297', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-05-03 10:22:24.044466', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIe2S6dMzdx9PiUXBbUdDyKHTqhgzmkTU2x7xFN9/95782gldprWgD8WbCZFPmsbpM28kZGC7JE2/O6vXsFOALY='} 2024-05-03T10:40:28.098 INFO:teuthology.orchestra.console.smithi050:Power off 2024-05-03T10:40:28.098 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-05-03T10:40:28.121 DEBUG:teuthology.orchestra.console.smithi050:power off output: Chassis Power Control: Down/Off 2024-05-03T10:40:28.121 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-03T10:40:28.135 INFO:teuthology.orchestra.console.smithi066:Power off 2024-05-03T10:40:28.135 DEBUG:teuthology.orchestra.console.smithi066:pexpect command: ipmitool -H smithi066.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-05-03T10:40:28.143 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is on 2024-05-03T10:40:28.160 DEBUG:teuthology.orchestra.console.smithi066:power off output: Chassis Power Control: Down/Off 2024-05-03T10:40:28.160 DEBUG:teuthology.orchestra.console.smithi066:pexpect command: ipmitool -H smithi066.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-03T10:40:28.183 DEBUG:teuthology.orchestra.console.smithi066:check power output: Chassis Power is on 2024-05-03T10:40:32.144 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-03T10:40:32.185 DEBUG:teuthology.orchestra.console.smithi066:pexpect command: ipmitool -H smithi066.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-03T10:40:32.254 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is on 2024-05-03T10:40:32.294 DEBUG:teuthology.orchestra.console.smithi066:check power output: Chassis Power is on 2024-05-03T10:40:36.258 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-03T10:40:36.295 DEBUG:teuthology.orchestra.console.smithi066:pexpect command: ipmitool -H smithi066.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-03T10:40:36.369 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is on 2024-05-03T10:40:36.403 DEBUG:teuthology.orchestra.console.smithi066:check power output: Chassis Power is on 2024-05-03T10:40:40.371 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-03T10:40:40.405 DEBUG:teuthology.orchestra.console.smithi066:pexpect command: ipmitool -H smithi066.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-05-03T10:40:40.481 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is off 2024-05-03T10:40:40.515 DEBUG:teuthology.orchestra.console.smithi066:check power output: Chassis Power is off 2024-05-03T10:40:40.583 INFO:teuthology.orchestra.console.smithi050:Power off completed 2024-05-03T10:40:40.616 INFO:teuthology.orchestra.console.smithi066:Power off completed 2024-05-03T10:40:40.721 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 452.8852686882019 failure_reason: 'Command failed on smithi050 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f8e6d2d721bc96a93915917c59bc3d287d57263d pull''' owner: scheduled_gabrioux@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=c7ced41863d24fa49d8b95f204cf0ed5 status: fail success: false 2024-05-03T10:40:40.721 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-03T10:40:40.798 INFO:teuthology.run:FAIL