2023-10-21T12:36:20.411 INFO:root:teuthology version: 0.0.1.dev201+g202b180 2023-10-21T12:36:20.412 DEBUG:teuthology.run:Teuthology command: teuthology --description orch/cephadm/smoke-roleless/{0-distro/centos_8.stream_container_tools 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --archive /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155 --owner scheduled_yuriw@teuthology --name yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi --verbose -- /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155/orig.config.yaml 2023-10-21T12:36:20.447 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-10-21T12:36:20.604 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155 branch: main description: orch/cephadm/smoke-roleless/{0-distro/centos_8.stream_container_tools 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: yweinste@redhat.com first_in_suite: false job_id: '7434155' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 8.stream overrides: admin_socket: branch: main ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: f0804064d67a2a63dbabf1801ff452580a050cfc ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: f0804064d67a2a63dbabf1801ff452580a050cfc selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: f0804064d67a2a63dbabf1801ff452580a050cfc owner: scheduled_yuriw@teuthology priority: 76 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 1362 sha1: f0804064d67a2a63dbabf1801ff452580a050cfc sleep_before_teardown: 0 subset: 111/120000 suite: orch suite_branch: main suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: f0804064d67a2a63dbabf1801ff452580a050cfc targets: smithi057.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDIhLQCmNSXQXTIcO3Wt354mqrOWdQHdfg0C1ZLgqi/8Cwb2mTBHQtUcodhnmY5cGMXEM/R8SnuUdLiAv+Or2gA= smithi138.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJGifjees1aA5cpQTlySHWWumm53rQ3aeWLsUm2l81uQcMzesdnmFJLJ//MbKZAfaWh0DSK3abEeLshQzaWu1ms= tasks: - pexec: all: - sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup - sudo dnf -y module reset container-tools - sudo dnf -y module install container-tools --allowerasing --nobest - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 202b180cb047e798fb131047314a862593f45403 timestamp: 2023-10-20_18:45:04 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2830 2023-10-21T12:36:20.605 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa; will attempt to use it 2023-10-21T12:36:20.606 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks 2023-10-21T12:36:20.606 INFO:teuthology.run_tasks:Running task internal.check_packages... 2023-10-21T12:36:20.608 INFO:teuthology.task.internal:Checking packages... 2023-10-21T12:36:20.631 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'f0804064d67a2a63dbabf1801ff452580a050cfc' 2023-10-21T12:36:20.631 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2023-10-21T12:36:20.632 INFO:teuthology.packaging:ref: None 2023-10-21T12:36:20.632 INFO:teuthology.packaging:tag: None 2023-10-21T12:36:20.632 INFO:teuthology.packaging:branch: main 2023-10-21T12:36:20.632 INFO:teuthology.packaging:sha1: f0804064d67a2a63dbabf1801ff452580a050cfc 2023-10-21T12:36:20.633 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=main 2023-10-21T12:36:20.972 INFO:teuthology.task.internal:Found packages for ceph version 18.0.0-6820.gf0804064 2023-10-21T12:36:20.972 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2023-10-21T12:36:20.978 INFO:teuthology.task.internal:no buildpackages task found 2023-10-21T12:36:20.979 INFO:teuthology.run_tasks:Running task internal.save_config... 2023-10-21T12:36:20.995 INFO:teuthology.task.internal:Saving configuration 2023-10-21T12:36:21.009 INFO:teuthology.run_tasks:Running task internal.check_lock... 2023-10-21T12:36:21.015 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-10-21T12:36:21.043 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi057.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '8', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-10-21 12:31:12.451595', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDIhLQCmNSXQXTIcO3Wt354mqrOWdQHdfg0C1ZLgqi/8Cwb2mTBHQtUcodhnmY5cGMXEM/R8SnuUdLiAv+Or2gA='} 2023-10-21T12:36:21.068 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi138.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '8', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-10-21 12:31:12.450191', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJGifjees1aA5cpQTlySHWWumm53rQ3aeWLsUm2l81uQcMzesdnmFJLJ//MbKZAfaWh0DSK3abEeLshQzaWu1ms='} 2023-10-21T12:36:21.068 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2023-10-21T12:36:21.080 INFO:teuthology.task.internal:roles: ubuntu@smithi057.front.sepia.ceph.com - ['host.a', 'client.0'] 2023-10-21T12:36:21.080 INFO:teuthology.task.internal:roles: ubuntu@smithi138.front.sepia.ceph.com - ['host.b', 'client.1'] 2023-10-21T12:36:21.081 INFO:teuthology.run_tasks:Running task console_log... 2023-10-21T12:36:21.149 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f8a3ecd8af0>, signals=[15]) 2023-10-21T12:36:21.150 INFO:teuthology.run_tasks:Running task internal.connect... 2023-10-21T12:36:21.156 INFO:teuthology.task.internal:Opening connections... 2023-10-21T12:36:21.156 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi057.front.sepia.ceph.com 2023-10-21T12:36:21.158 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:36:21.231 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi138.front.sepia.ceph.com 2023-10-21T12:36:21.232 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:36:21.299 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2023-10-21T12:36:21.306 DEBUG:teuthology.orchestra.run.smithi057:> uname -m 2023-10-21T12:36:21.329 INFO:teuthology.orchestra.run.smithi057.stdout:x86_64 2023-10-21T12:36:21.330 DEBUG:teuthology.orchestra.run.smithi057:> cat /etc/os-release 2023-10-21T12:36:21.394 INFO:teuthology.orchestra.run.smithi057.stdout:NAME="CentOS Stream" 2023-10-21T12:36:21.395 INFO:teuthology.orchestra.run.smithi057.stdout:VERSION="8" 2023-10-21T12:36:21.395 INFO:teuthology.orchestra.run.smithi057.stdout:ID="centos" 2023-10-21T12:36:21.395 INFO:teuthology.orchestra.run.smithi057.stdout:ID_LIKE="rhel fedora" 2023-10-21T12:36:21.395 INFO:teuthology.orchestra.run.smithi057.stdout:VERSION_ID="8" 2023-10-21T12:36:21.395 INFO:teuthology.orchestra.run.smithi057.stdout:PLATFORM_ID="platform:el8" 2023-10-21T12:36:21.396 INFO:teuthology.orchestra.run.smithi057.stdout:PRETTY_NAME="CentOS Stream 8" 2023-10-21T12:36:21.396 INFO:teuthology.orchestra.run.smithi057.stdout:ANSI_COLOR="0;31" 2023-10-21T12:36:21.396 INFO:teuthology.orchestra.run.smithi057.stdout:CPE_NAME="cpe:/o:centos:centos:8" 2023-10-21T12:36:21.396 INFO:teuthology.orchestra.run.smithi057.stdout:HOME_URL="https://centos.org/" 2023-10-21T12:36:21.396 INFO:teuthology.orchestra.run.smithi057.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-10-21T12:36:21.397 INFO:teuthology.orchestra.run.smithi057.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 8" 2023-10-21T12:36:21.397 INFO:teuthology.orchestra.run.smithi057.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2023-10-21T12:36:21.397 INFO:teuthology.lock.ops:Updating smithi057.front.sepia.ceph.com on lock server 2023-10-21T12:36:21.430 DEBUG:teuthology.orchestra.run.smithi138:> uname -m 2023-10-21T12:36:21.453 INFO:teuthology.orchestra.run.smithi138.stdout:x86_64 2023-10-21T12:36:21.454 DEBUG:teuthology.orchestra.run.smithi138:> cat /etc/os-release 2023-10-21T12:36:21.515 INFO:teuthology.orchestra.run.smithi138.stdout:NAME="CentOS Stream" 2023-10-21T12:36:21.515 INFO:teuthology.orchestra.run.smithi138.stdout:VERSION="8" 2023-10-21T12:36:21.515 INFO:teuthology.orchestra.run.smithi138.stdout:ID="centos" 2023-10-21T12:36:21.515 INFO:teuthology.orchestra.run.smithi138.stdout:ID_LIKE="rhel fedora" 2023-10-21T12:36:21.516 INFO:teuthology.orchestra.run.smithi138.stdout:VERSION_ID="8" 2023-10-21T12:36:21.516 INFO:teuthology.orchestra.run.smithi138.stdout:PLATFORM_ID="platform:el8" 2023-10-21T12:36:21.516 INFO:teuthology.orchestra.run.smithi138.stdout:PRETTY_NAME="CentOS Stream 8" 2023-10-21T12:36:21.516 INFO:teuthology.orchestra.run.smithi138.stdout:ANSI_COLOR="0;31" 2023-10-21T12:36:21.517 INFO:teuthology.orchestra.run.smithi138.stdout:CPE_NAME="cpe:/o:centos:centos:8" 2023-10-21T12:36:21.517 INFO:teuthology.orchestra.run.smithi138.stdout:HOME_URL="https://centos.org/" 2023-10-21T12:36:21.517 INFO:teuthology.orchestra.run.smithi138.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-10-21T12:36:21.518 INFO:teuthology.orchestra.run.smithi138.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 8" 2023-10-21T12:36:21.518 INFO:teuthology.orchestra.run.smithi138.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2023-10-21T12:36:21.518 INFO:teuthology.lock.ops:Updating smithi138.front.sepia.ceph.com on lock server 2023-10-21T12:36:21.546 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2023-10-21T12:36:21.557 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2023-10-21T12:36:21.563 INFO:teuthology.task.internal:Checking for old test directory... 2023-10-21T12:36:21.563 DEBUG:teuthology.orchestra.run.smithi057:> test '!' -e /home/ubuntu/cephtest 2023-10-21T12:36:21.567 DEBUG:teuthology.orchestra.run.smithi138:> test '!' -e /home/ubuntu/cephtest 2023-10-21T12:36:21.587 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2023-10-21T12:36:21.593 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2023-10-21T12:36:21.593 DEBUG:teuthology.orchestra.run.smithi057:> test -z $(ls -A /var/lib/ceph) 2023-10-21T12:36:21.631 DEBUG:teuthology.orchestra.run.smithi138:> test -z $(ls -A /var/lib/ceph) 2023-10-21T12:36:21.671 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2023-10-21T12:36:21.722 INFO:teuthology.run_tasks:Running task kernel... 2023-10-21T12:36:21.736 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2023-10-21T12:36:21.737 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2023-10-21T12:36:21.737 DEBUG:teuthology.orchestra.run.smithi057:> test -f /run/.containerenv -o -f /.dockerenv 2023-10-21T12:36:21.738 DEBUG:teuthology.orchestra.run.smithi138:> test -f /run/.containerenv -o -f /.dockerenv 2023-10-21T12:36:21.756 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:36:21.757 DEBUG:teuthology.orchestra.run.smithi138:> uname -r 2023-10-21T12:36:21.759 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:36:21.759 DEBUG:teuthology.orchestra.run.smithi057:> uname -r 2023-10-21T12:36:21.817 INFO:teuthology.orchestra.run.smithi138.stdout:4.18.0-489.el8.x86_64 2023-10-21T12:36:21.818 INFO:teuthology.task.kernel:Running kernel on smithi138: 4.18.0-489.el8.x86_64 2023-10-21T12:36:21.818 DEBUG:teuthology.orchestra.run.smithi138:> sudo yum install -y kernel 2023-10-21T12:36:21.824 INFO:teuthology.orchestra.run.smithi057.stdout:4.18.0-489.el8.x86_64 2023-10-21T12:36:21.825 INFO:teuthology.task.kernel:Running kernel on smithi057: 4.18.0-489.el8.x86_64 2023-10-21T12:36:21.825 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum install -y kernel 2023-10-21T12:36:25.713 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 8 - AppStream 28 MB/s | 33 MB 00:01 2023-10-21T12:36:26.878 INFO:teuthology.orchestra.run.smithi138.stdout:CentOS Stream 8 - AppStream 14 MB/s | 33 MB 00:02 2023-10-21T12:36:34.871 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 8 - BaseOS 20 MB/s | 50 MB 00:02 2023-10-21T12:36:35.595 INFO:teuthology.orchestra.run.smithi138.stdout:CentOS Stream 8 - BaseOS 19 MB/s | 50 MB 00:02 2023-10-21T12:36:42.962 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 8 - Extras 36 kB/s | 18 kB 00:00 2023-10-21T12:36:43.061 INFO:teuthology.orchestra.run.smithi138.stdout:CentOS Stream 8 - Extras 51 kB/s | 18 kB 00:00 2023-10-21T12:36:43.705 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 8 - Extras common packages 13 kB/s | 6.9 kB 00:00 2023-10-21T12:36:43.762 INFO:teuthology.orchestra.run.smithi138.stdout:CentOS Stream 8 - Extras common packages 13 kB/s | 6.9 kB 00:00 2023-10-21T12:36:44.031 INFO:teuthology.orchestra.run.smithi057.stdout:Copr repo for python3-asyncssh owned by ceph 23 kB/s | 3.5 kB 00:00 2023-10-21T12:36:44.047 INFO:teuthology.orchestra.run.smithi138.stdout:Copr repo for python3-asyncssh owned by ceph 26 kB/s | 3.5 kB 00:00 2023-10-21T12:36:46.026 INFO:teuthology.orchestra.run.smithi057.stdout:Extra Packages for Enterprise Linux 8.7 MB/s | 16 MB 00:01 2023-10-21T12:36:49.839 INFO:teuthology.orchestra.run.smithi138.stdout:Extra Packages for Enterprise Linux 2.8 MB/s | 16 MB 00:05 2023-10-21T12:36:50.115 INFO:teuthology.orchestra.run.smithi057.stdout:lab-extras 608 kB/s | 24 kB 00:00 2023-10-21T12:36:53.672 INFO:teuthology.orchestra.run.smithi138.stdout:lab-extras 327 kB/s | 24 kB 00:00 2023-10-21T12:36:53.995 INFO:teuthology.orchestra.run.smithi057.stdout:Package kernel-4.18.0-348.el8.x86_64 is already installed. 2023-10-21T12:36:53.996 INFO:teuthology.orchestra.run.smithi057.stdout:Package kernel-4.18.0-489.el8.x86_64 is already installed. 2023-10-21T12:36:54.268 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2023-10-21T12:36:54.268 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:36:54.268 INFO:teuthology.orchestra.run.smithi057.stdout: Package Architecture Version Repository Size 2023-10-21T12:36:54.269 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:36:54.269 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2023-10-21T12:36:54.269 INFO:teuthology.orchestra.run.smithi057.stdout: kernel x86_64 4.18.0-517.el8 baseos 10 M 2023-10-21T12:36:54.269 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2023-10-21T12:36:54.269 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-core x86_64 4.18.0-517.el8 baseos 43 M 2023-10-21T12:36:54.270 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-modules x86_64 4.18.0-517.el8 baseos 36 M 2023-10-21T12:36:54.270 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:36:54.270 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2023-10-21T12:36:54.270 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:36:54.271 INFO:teuthology.orchestra.run.smithi057.stdout:Install 3 Packages 2023-10-21T12:36:54.271 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:36:54.271 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 89 M 2023-10-21T12:36:54.272 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 96 M 2023-10-21T12:36:54.272 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2023-10-21T12:36:55.808 INFO:teuthology.orchestra.run.smithi057.stdout:(1/3): kernel-4.18.0-517.el8.x86_64.rpm 7.4 MB/s | 10 MB 00:01 2023-10-21T12:36:56.800 INFO:teuthology.orchestra.run.smithi057.stdout:(2/3): kernel-modules-4.18.0-517.el8.x86_64.rpm 15 MB/s | 36 MB 00:02 2023-10-21T12:36:57.221 INFO:teuthology.orchestra.run.smithi138.stdout:Package kernel-4.18.0-348.el8.x86_64 is already installed. 2023-10-21T12:36:57.222 INFO:teuthology.orchestra.run.smithi138.stdout:Package kernel-4.18.0-489.el8.x86_64 is already installed. 2023-10-21T12:36:57.417 INFO:teuthology.orchestra.run.smithi057.stdout:(3/3): kernel-core-4.18.0-517.el8.x86_64.rpm 15 MB/s | 43 MB 00:02 2023-10-21T12:36:57.417 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2023-10-21T12:36:57.418 INFO:teuthology.orchestra.run.smithi057.stdout:Total 28 MB/s | 89 MB 00:03 2023-10-21T12:36:57.477 INFO:teuthology.orchestra.run.smithi138.stdout:Dependencies resolved. 2023-10-21T12:36:57.477 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:36:57.478 INFO:teuthology.orchestra.run.smithi138.stdout: Package Architecture Version Repository Size 2023-10-21T12:36:57.478 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:36:57.478 INFO:teuthology.orchestra.run.smithi138.stdout:Installing: 2023-10-21T12:36:57.478 INFO:teuthology.orchestra.run.smithi138.stdout: kernel x86_64 4.18.0-517.el8 baseos 10 M 2023-10-21T12:36:57.479 INFO:teuthology.orchestra.run.smithi138.stdout:Installing dependencies: 2023-10-21T12:36:57.479 INFO:teuthology.orchestra.run.smithi138.stdout: kernel-core x86_64 4.18.0-517.el8 baseos 43 M 2023-10-21T12:36:57.479 INFO:teuthology.orchestra.run.smithi138.stdout: kernel-modules x86_64 4.18.0-517.el8 baseos 36 M 2023-10-21T12:36:57.479 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:36:57.479 INFO:teuthology.orchestra.run.smithi138.stdout:Transaction Summary 2023-10-21T12:36:57.479 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:36:57.480 INFO:teuthology.orchestra.run.smithi138.stdout:Install 3 Packages 2023-10-21T12:36:57.480 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:36:57.481 INFO:teuthology.orchestra.run.smithi138.stdout:Total download size: 89 M 2023-10-21T12:36:57.481 INFO:teuthology.orchestra.run.smithi138.stdout:Installed size: 96 M 2023-10-21T12:36:57.481 INFO:teuthology.orchestra.run.smithi138.stdout:Downloading Packages: 2023-10-21T12:36:58.122 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2023-10-21T12:36:58.585 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2023-10-21T12:36:58.585 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2023-10-21T12:36:58.915 INFO:teuthology.orchestra.run.smithi138.stdout:(1/3): kernel-4.18.0-517.el8.x86_64.rpm 8.1 MB/s | 10 MB 00:01 2023-10-21T12:36:59.882 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2023-10-21T12:36:59.902 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2023-10-21T12:36:59.974 INFO:teuthology.orchestra.run.smithi138.stdout:(2/3): kernel-modules-4.18.0-517.el8.x86_64.rpm 16 MB/s | 36 MB 00:02 2023-10-21T12:37:00.374 INFO:teuthology.orchestra.run.smithi138.stdout:(3/3): kernel-core-4.18.0-517.el8.x86_64.rpm 16 MB/s | 43 MB 00:02 2023-10-21T12:37:00.374 INFO:teuthology.orchestra.run.smithi138.stdout:-------------------------------------------------------------------------------- 2023-10-21T12:37:00.375 INFO:teuthology.orchestra.run.smithi138.stdout:Total 31 MB/s | 89 MB 00:02 2023-10-21T12:37:01.044 INFO:teuthology.orchestra.run.smithi138.stdout:Running transaction check 2023-10-21T12:37:01.485 INFO:teuthology.orchestra.run.smithi138.stdout:Transaction check succeeded. 2023-10-21T12:37:01.485 INFO:teuthology.orchestra.run.smithi138.stdout:Running transaction test 2023-10-21T12:37:02.722 INFO:teuthology.orchestra.run.smithi138.stdout:Transaction test succeeded. 2023-10-21T12:37:02.771 INFO:teuthology.orchestra.run.smithi138.stdout:Running transaction 2023-10-21T12:37:02.873 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2023-10-21T12:37:03.439 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : kernel-core-4.18.0-517.el8.x86_64 1/3 2023-10-21T12:37:05.529 INFO:teuthology.orchestra.run.smithi138.stdout: Preparing : 1/1 2023-10-21T12:37:06.093 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : kernel-core-4.18.0-517.el8.x86_64 1/3 2023-10-21T12:37:07.200 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-core-4.18.0-517.el8.x86_64 1/3 2023-10-21T12:37:07.622 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : kernel-modules-4.18.0-517.el8.x86_64 2/3 2023-10-21T12:37:09.706 INFO:teuthology.orchestra.run.smithi138.stdout: Running scriptlet: kernel-core-4.18.0-517.el8.x86_64 1/3 2023-10-21T12:37:10.109 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : kernel-modules-4.18.0-517.el8.x86_64 2/3 2023-10-21T12:37:11.247 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-modules-4.18.0-517.el8.x86_64 2/3 2023-10-21T12:37:11.549 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : kernel-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:13.488 INFO:teuthology.orchestra.run.smithi138.stdout: Running scriptlet: kernel-modules-4.18.0-517.el8.x86_64 2/3 2023-10-21T12:37:14.069 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : kernel-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:34.599 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-core-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:34.622 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-modules-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:34.993 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:34.993 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : kernel-4.18.0-517.el8.x86_64 1/3 2023-10-21T12:37:34.993 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : kernel-core-4.18.0-517.el8.x86_64 2/3 2023-10-21T12:37:35.730 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : kernel-modules-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:35.731 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:37:35.731 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2023-10-21T12:37:35.731 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-4.18.0-517.el8.x86_64 kernel-core-4.18.0-517.el8.x86_64 2023-10-21T12:37:35.731 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-modules-4.18.0-517.el8.x86_64 2023-10-21T12:37:35.731 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:37:35.732 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2023-10-21T12:37:35.878 DEBUG:teuthology.orchestra.run.smithi057:> rpm -q kernel | sort -rV | head -n 1 2023-10-21T12:37:35.972 INFO:teuthology.orchestra.run.smithi138.stdout: Running scriptlet: kernel-core-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:35.997 INFO:teuthology.orchestra.run.smithi138.stdout: Running scriptlet: kernel-modules-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:36.106 INFO:teuthology.orchestra.run.smithi057.stdout:kernel-4.18.0-517.el8.x86_64 2023-10-21T12:37:36.106 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-517.el8.x86_64 2023-10-21T12:37:36.107 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.18.0-489.el8.x86_64 Expected: 4.18.0-517.el8.x86_64 2023-10-21T12:37:36.107 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2023-10-21T12:37:36.107 DEBUG:teuthology.task.kernel:src is distro, skipping download 2023-10-21T12:37:36.108 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2023-10-21T12:37:36.108 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi057.front.sepia.ceph.com, path=None, version=distro) 2023-10-21T12:37:36.108 DEBUG:teuthology.orchestra.run.smithi057:> rpm -q kernel | sort -rV | head -n 1 2023-10-21T12:37:36.326 INFO:teuthology.orchestra.run.smithi057.stdout:kernel-4.18.0-517.el8.x86_64 2023-10-21T12:37:36.327 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-517.el8.x86_64 2023-10-21T12:37:36.327 DEBUG:teuthology.orchestra.run.smithi057:> sudo rpm -qi grub2-tools 2023-10-21T12:37:36.331 INFO:teuthology.orchestra.run.smithi138.stdout: Running scriptlet: kernel-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:36.331 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : kernel-4.18.0-517.el8.x86_64 1/3 2023-10-21T12:37:36.332 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : kernel-core-4.18.0-517.el8.x86_64 2/3 2023-10-21T12:37:36.362 INFO:teuthology.orchestra.run.smithi057.stdout:Name : grub2-tools 2023-10-21T12:37:36.362 INFO:teuthology.orchestra.run.smithi057.stdout:Epoch : 1 2023-10-21T12:37:36.362 INFO:teuthology.orchestra.run.smithi057.stdout:Version : 2.02 2023-10-21T12:37:36.363 INFO:teuthology.orchestra.run.smithi057.stdout:Release : 129.el8 2023-10-21T12:37:36.363 INFO:teuthology.orchestra.run.smithi057.stdout:Architecture: x86_64 2023-10-21T12:37:36.363 INFO:teuthology.orchestra.run.smithi057.stdout:Install Date: Thu 04 May 2023 10:17:48 PM UTC 2023-10-21T12:37:36.363 INFO:teuthology.orchestra.run.smithi057.stdout:Group : System Environment/Base 2023-10-21T12:37:36.363 INFO:teuthology.orchestra.run.smithi057.stdout:Size : 9265586 2023-10-21T12:37:36.364 INFO:teuthology.orchestra.run.smithi057.stdout:License : GPLv3+ 2023-10-21T12:37:36.364 INFO:teuthology.orchestra.run.smithi057.stdout:Signature : RSA/SHA256, Tue 19 Jul 2022 02:52:06 PM UTC, Key ID 05b555b38483c65d 2023-10-21T12:37:36.364 INFO:teuthology.orchestra.run.smithi057.stdout:Source RPM : grub2-2.02-129.el8.src.rpm 2023-10-21T12:37:36.364 INFO:teuthology.orchestra.run.smithi057.stdout:Build Date : Tue 19 Jul 2022 02:30:39 PM UTC 2023-10-21T12:37:36.364 INFO:teuthology.orchestra.run.smithi057.stdout:Build Host : kbuilder.bsys.centos.org 2023-10-21T12:37:36.365 INFO:teuthology.orchestra.run.smithi057.stdout:Relocations : (not relocatable) 2023-10-21T12:37:36.365 INFO:teuthology.orchestra.run.smithi057.stdout:Packager : CentOS BuildSystem 2023-10-21T12:37:36.365 INFO:teuthology.orchestra.run.smithi057.stdout:Vendor : CentOS 2023-10-21T12:37:36.365 INFO:teuthology.orchestra.run.smithi057.stdout:URL : http://www.gnu.org/software/grub/ 2023-10-21T12:37:36.365 INFO:teuthology.orchestra.run.smithi057.stdout:Summary : Support tools for GRUB. 2023-10-21T12:37:36.365 INFO:teuthology.orchestra.run.smithi057.stdout:Description : 2023-10-21T12:37:36.366 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:37:36.366 INFO:teuthology.orchestra.run.smithi057.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2023-10-21T12:37:36.366 INFO:teuthology.orchestra.run.smithi057.stdout:customizable bootloader with modular architecture. It supports a rich 2023-10-21T12:37:36.366 INFO:teuthology.orchestra.run.smithi057.stdout:variety of kernel formats, file systems, computer architectures and 2023-10-21T12:37:36.367 INFO:teuthology.orchestra.run.smithi057.stdout:hardware devices. 2023-10-21T12:37:36.367 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:37:36.367 INFO:teuthology.orchestra.run.smithi057.stdout:This subpackage provides tools for support of all platforms. 2023-10-21T12:37:36.368 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2023-10-21T12:37:36.368 INFO:teuthology.task.kernel:Updating grub on smithi057 to boot 4.18.0-517.el8.x86_64 2023-10-21T12:37:36.369 DEBUG:teuthology.orchestra.run.smithi057:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2023-10-21T12:37:37.059 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : kernel-modules-4.18.0-517.el8.x86_64 3/3 2023-10-21T12:37:37.060 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:37:37.060 INFO:teuthology.orchestra.run.smithi138.stdout:Installed: 2023-10-21T12:37:37.060 INFO:teuthology.orchestra.run.smithi138.stdout: kernel-4.18.0-517.el8.x86_64 kernel-core-4.18.0-517.el8.x86_64 2023-10-21T12:37:37.060 INFO:teuthology.orchestra.run.smithi138.stdout: kernel-modules-4.18.0-517.el8.x86_64 2023-10-21T12:37:37.061 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:37:37.061 INFO:teuthology.orchestra.run.smithi138.stdout:Complete! 2023-10-21T12:37:37.215 DEBUG:teuthology.orchestra.run.smithi138:> rpm -q kernel | sort -rV | head -n 1 2023-10-21T12:37:37.473 INFO:teuthology.orchestra.run.smithi138.stdout:kernel-4.18.0-517.el8.x86_64 2023-10-21T12:37:37.474 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-517.el8.x86_64 2023-10-21T12:37:37.474 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.18.0-489.el8.x86_64 Expected: 4.18.0-517.el8.x86_64 2023-10-21T12:37:37.474 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2023-10-21T12:37:37.474 DEBUG:teuthology.task.kernel:src is distro, skipping download 2023-10-21T12:37:37.474 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2023-10-21T12:37:37.475 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi138.front.sepia.ceph.com, path=None, version=distro) 2023-10-21T12:37:37.475 DEBUG:teuthology.orchestra.run.smithi138:> rpm -q kernel | sort -rV | head -n 1 2023-10-21T12:37:37.684 INFO:teuthology.orchestra.run.smithi138.stdout:kernel-4.18.0-517.el8.x86_64 2023-10-21T12:37:37.684 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-517.el8.x86_64 2023-10-21T12:37:37.684 DEBUG:teuthology.orchestra.run.smithi138:> sudo rpm -qi grub2-tools 2023-10-21T12:37:37.718 INFO:teuthology.orchestra.run.smithi138.stdout:Name : grub2-tools 2023-10-21T12:37:37.718 INFO:teuthology.orchestra.run.smithi138.stdout:Epoch : 1 2023-10-21T12:37:37.718 INFO:teuthology.orchestra.run.smithi138.stdout:Version : 2.02 2023-10-21T12:37:37.718 INFO:teuthology.orchestra.run.smithi138.stdout:Release : 129.el8 2023-10-21T12:37:37.719 INFO:teuthology.orchestra.run.smithi138.stdout:Architecture: x86_64 2023-10-21T12:37:37.719 INFO:teuthology.orchestra.run.smithi138.stdout:Install Date: Thu 04 May 2023 10:17:48 PM UTC 2023-10-21T12:37:37.719 INFO:teuthology.orchestra.run.smithi138.stdout:Group : System Environment/Base 2023-10-21T12:37:37.719 INFO:teuthology.orchestra.run.smithi138.stdout:Size : 9265586 2023-10-21T12:37:37.719 INFO:teuthology.orchestra.run.smithi138.stdout:License : GPLv3+ 2023-10-21T12:37:37.719 INFO:teuthology.orchestra.run.smithi138.stdout:Signature : RSA/SHA256, Tue 19 Jul 2022 02:52:06 PM UTC, Key ID 05b555b38483c65d 2023-10-21T12:37:37.720 INFO:teuthology.orchestra.run.smithi138.stdout:Source RPM : grub2-2.02-129.el8.src.rpm 2023-10-21T12:37:37.720 INFO:teuthology.orchestra.run.smithi138.stdout:Build Date : Tue 19 Jul 2022 02:30:39 PM UTC 2023-10-21T12:37:37.720 INFO:teuthology.orchestra.run.smithi138.stdout:Build Host : kbuilder.bsys.centos.org 2023-10-21T12:37:37.720 INFO:teuthology.orchestra.run.smithi138.stdout:Relocations : (not relocatable) 2023-10-21T12:37:37.720 INFO:teuthology.orchestra.run.smithi138.stdout:Packager : CentOS BuildSystem 2023-10-21T12:37:37.720 INFO:teuthology.orchestra.run.smithi138.stdout:Vendor : CentOS 2023-10-21T12:37:37.721 INFO:teuthology.orchestra.run.smithi138.stdout:URL : http://www.gnu.org/software/grub/ 2023-10-21T12:37:37.721 INFO:teuthology.orchestra.run.smithi138.stdout:Summary : Support tools for GRUB. 2023-10-21T12:37:37.721 INFO:teuthology.orchestra.run.smithi138.stdout:Description : 2023-10-21T12:37:37.721 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:37:37.721 INFO:teuthology.orchestra.run.smithi138.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2023-10-21T12:37:37.721 INFO:teuthology.orchestra.run.smithi138.stdout:customizable bootloader with modular architecture. It supports a rich 2023-10-21T12:37:37.722 INFO:teuthology.orchestra.run.smithi138.stdout:variety of kernel formats, file systems, computer architectures and 2023-10-21T12:37:37.722 INFO:teuthology.orchestra.run.smithi138.stdout:hardware devices. 2023-10-21T12:37:37.722 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:37:37.722 INFO:teuthology.orchestra.run.smithi138.stdout:This subpackage provides tools for support of all platforms. 2023-10-21T12:37:37.723 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2023-10-21T12:37:37.723 INFO:teuthology.task.kernel:Updating grub on smithi138 to boot 4.18.0-517.el8.x86_64 2023-10-21T12:37:37.724 DEBUG:teuthology.orchestra.run.smithi138:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2023-10-21T12:37:38.020 INFO:teuthology.orchestra.run.smithi057.stderr:Generating grub configuration file ... 2023-10-21T12:37:39.211 INFO:teuthology.orchestra.run.smithi138.stderr:Generating grub configuration file ... 2023-10-21T12:37:40.149 INFO:teuthology.orchestra.run.smithi057.stderr:done 2023-10-21T12:37:40.151 DEBUG:teuthology.orchestra.run.smithi057:> mktemp 2023-10-21T12:37:40.190 INFO:teuthology.orchestra.run.smithi057.stdout:/tmp/tmp.Ah0fRGqrT9 2023-10-21T12:37:40.190 DEBUG:teuthology.orchestra.run.smithi057:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.Ah0fRGqrT9 2023-10-21T12:37:40.263 DEBUG:teuthology.orchestra.run.smithi057:> sudo chmod 0666 /tmp/tmp.Ah0fRGqrT9 2023-10-21T12:37:40.402 DEBUG:teuthology.orchestra.remote:smithi057:/tmp/tmp.Ah0fRGqrT9 is 6KB 2023-10-21T12:37:40.451 DEBUG:teuthology.orchestra.run.smithi057:> rm -fr /tmp/tmp.Ah0fRGqrT9 2023-10-21T12:37:40.469 DEBUG:teuthology.orchestra.run.smithi057:> sudo /bin/ls /boot/loader/entries || true 2023-10-21T12:37:40.551 INFO:teuthology.orchestra.run.smithi057.stdout:a1b29d6c289747bdb22930598d39874a-0-rescue.conf 2023-10-21T12:37:40.551 INFO:teuthology.orchestra.run.smithi057.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-348.el8.x86_64.conf 2023-10-21T12:37:40.552 INFO:teuthology.orchestra.run.smithi057.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-489.el8.x86_64.conf 2023-10-21T12:37:40.552 INFO:teuthology.orchestra.run.smithi057.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-517.el8.x86_64.conf 2023-10-21T12:37:40.553 DEBUG:teuthology.orchestra.run.smithi057:> sudo grub2-set-default a1b29d6c289747bdb22930598d39874a-4.18.0-517.el8.x86_64 2023-10-21T12:37:40.699 DEBUG:teuthology.orchestra.run.smithi057:> sudo shutdown -r now 2023-10-21T12:37:41.110 INFO:teuthology.orchestra.run.smithi138.stderr:done 2023-10-21T12:37:41.112 DEBUG:teuthology.orchestra.run.smithi138:> mktemp 2023-10-21T12:37:41.140 INFO:teuthology.orchestra.run.smithi138.stdout:/tmp/tmp.Vr1aI0yXW6 2023-10-21T12:37:41.140 DEBUG:teuthology.orchestra.run.smithi138:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.Vr1aI0yXW6 2023-10-21T12:37:41.214 DEBUG:teuthology.orchestra.run.smithi138:> sudo chmod 0666 /tmp/tmp.Vr1aI0yXW6 2023-10-21T12:37:41.357 DEBUG:teuthology.orchestra.remote:smithi138:/tmp/tmp.Vr1aI0yXW6 is 6KB 2023-10-21T12:37:41.405 DEBUG:teuthology.orchestra.run.smithi138:> rm -fr /tmp/tmp.Vr1aI0yXW6 2023-10-21T12:37:41.423 DEBUG:teuthology.orchestra.run.smithi138:> sudo /bin/ls /boot/loader/entries || true 2023-10-21T12:37:41.498 INFO:teuthology.orchestra.run.smithi138.stdout:a1b29d6c289747bdb22930598d39874a-0-rescue.conf 2023-10-21T12:37:41.498 INFO:teuthology.orchestra.run.smithi138.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-348.el8.x86_64.conf 2023-10-21T12:37:41.498 INFO:teuthology.orchestra.run.smithi138.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-489.el8.x86_64.conf 2023-10-21T12:37:41.499 INFO:teuthology.orchestra.run.smithi138.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-517.el8.x86_64.conf 2023-10-21T12:37:41.500 DEBUG:teuthology.orchestra.run.smithi138:> sudo grub2-set-default a1b29d6c289747bdb22930598d39874a-4.18.0-517.el8.x86_64 2023-10-21T12:37:41.663 DEBUG:teuthology.orchestra.run.smithi138:> sudo shutdown -r now 2023-10-21T12:38:10.730 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2023-10-21T12:38:10.731 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2023-10-21T12:38:10.732 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:38:11.667 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2023-10-21T12:38:11.668 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2023-10-21T12:38:11.668 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:38:29.242 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.57 2023-10-21T12:38:38.250 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2023-10-21T12:38:38.251 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:38:41.306 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.57 2023-10-21T12:38:53.316 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2023-10-21T12:38:53.317 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:39:11.686 DEBUG:teuthology.orchestra.remote:timed out 2023-10-21T12:39:20.695 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2023-10-21T12:39:20.695 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:39:21.272 DEBUG:teuthology.orchestra.run.smithi138:> true 2023-10-21T12:39:21.495 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi138.front.sepia.ceph.com' 2023-10-21T12:39:21.496 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.18.0-517.el8.x86_64"... 2023-10-21T12:39:21.496 DEBUG:teuthology.orchestra.run.smithi138:> uname -r 2023-10-21T12:39:21.554 INFO:teuthology.orchestra.run.smithi138.stdout:4.18.0-517.el8.x86_64 2023-10-21T12:39:21.555 DEBUG:teuthology.task.kernel:current kernel version is 4.18.0-517.el8.x86_64 vs 4.18.0-517.el8.x86_64 2023-10-21T12:39:21.555 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2023-10-21T12:39:21.556 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2023-10-21T12:39:22.557 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2023-10-21T12:39:22.557 DEBUG:teuthology.orchestra.run.smithi138:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-10-21T12:39:22.635 INFO:teuthology.orchestra.run.smithi138.stdout:ttyS1 2023-10-21T12:39:22.647 DEBUG:teuthology.parallel:result is None 2023-10-21T12:39:53.320 DEBUG:teuthology.orchestra.remote:timed out 2023-10-21T12:40:08.321 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2023-10-21T12:40:08.322 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:40:08.638 DEBUG:teuthology.orchestra.run.smithi057:> true 2023-10-21T12:40:08.950 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi057.front.sepia.ceph.com' 2023-10-21T12:40:08.950 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.18.0-517.el8.x86_64"... 2023-10-21T12:40:08.950 DEBUG:teuthology.orchestra.run.smithi057:> uname -r 2023-10-21T12:40:08.972 INFO:teuthology.orchestra.run.smithi057.stdout:4.18.0-517.el8.x86_64 2023-10-21T12:40:08.973 DEBUG:teuthology.task.kernel:current kernel version is 4.18.0-517.el8.x86_64 vs 4.18.0-517.el8.x86_64 2023-10-21T12:40:08.973 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2023-10-21T12:40:08.973 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2023-10-21T12:40:09.974 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2023-10-21T12:40:09.975 DEBUG:teuthology.orchestra.run.smithi057:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-10-21T12:40:10.068 INFO:teuthology.orchestra.run.smithi057.stdout:ttyS1 2023-10-21T12:40:10.087 DEBUG:teuthology.parallel:result is None 2023-10-21T12:40:10.088 INFO:teuthology.run_tasks:Running task internal.base... 2023-10-21T12:40:10.099 INFO:teuthology.task.internal:Creating test directory... 2023-10-21T12:40:10.099 DEBUG:teuthology.orchestra.run.smithi057:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-10-21T12:40:10.106 DEBUG:teuthology.orchestra.run.smithi138:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-10-21T12:40:10.132 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2023-10-21T12:40:10.146 INFO:teuthology.run_tasks:Running task internal.archive... 2023-10-21T12:40:10.160 INFO:teuthology.task.internal:Creating archive directory... 2023-10-21T12:40:10.160 DEBUG:teuthology.orchestra.run.smithi057:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-10-21T12:40:10.166 DEBUG:teuthology.orchestra.run.smithi138:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-10-21T12:40:10.351 INFO:teuthology.run_tasks:Running task internal.coredump... 2023-10-21T12:40:10.361 INFO:teuthology.task.internal:Enabling coredump saving... 2023-10-21T12:40:10.362 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:40:10.365 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:40:10.401 INFO:teuthology.orchestra.run.smithi057.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-10-21T12:40:10.413 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-10-21T12:40:10.414 INFO:teuthology.orchestra.run.smithi057.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-10-21T12:40:10.425 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-10-21T12:40:10.426 INFO:teuthology.run_tasks:Running task internal.sudo... 2023-10-21T12:40:10.435 INFO:teuthology.task.internal:Configuring sudo... 2023-10-21T12:40:10.435 DEBUG:teuthology.orchestra.run.smithi057:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-10-21T12:40:10.458 DEBUG:teuthology.orchestra.run.smithi138:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-10-21T12:40:10.491 INFO:teuthology.run_tasks:Running task internal.syslog... 2023-10-21T12:40:10.503 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2023-10-21T12:40:10.504 DEBUG:teuthology.orchestra.run.smithi057:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-10-21T12:40:10.534 DEBUG:teuthology.orchestra.run.smithi138:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-10-21T12:40:10.554 DEBUG:teuthology.orchestra.run.smithi057:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-10-21T12:40:10.646 DEBUG:teuthology.orchestra.run.smithi057:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-10-21T12:40:10.700 DEBUG:teuthology.orchestra.run.smithi057:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-10-21T12:40:10.792 DEBUG:teuthology.orchestra.run.smithi057:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-10-21T12:40:10.840 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2023-10-21T12:40:10.841 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-10-21T12:40:10.915 DEBUG:teuthology.orchestra.run.smithi138:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-10-21T12:40:10.964 DEBUG:teuthology.orchestra.run.smithi138:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-10-21T12:40:11.022 DEBUG:teuthology.orchestra.run.smithi138:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-10-21T12:40:11.107 DEBUG:teuthology.orchestra.run.smithi138:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-10-21T12:40:11.152 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2023-10-21T12:40:11.152 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-10-21T12:40:11.221 DEBUG:teuthology.orchestra.run.smithi057:> sudo service rsyslog restart 2023-10-21T12:40:11.224 DEBUG:teuthology.orchestra.run.smithi138:> sudo service rsyslog restart 2023-10-21T12:40:11.297 INFO:teuthology.orchestra.run.smithi057.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-10-21T12:40:11.330 INFO:teuthology.orchestra.run.smithi138.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-10-21T12:40:11.703 INFO:teuthology.run_tasks:Running task internal.timer... 2023-10-21T12:40:11.711 INFO:teuthology.task.internal:Starting timer... 2023-10-21T12:40:11.711 INFO:teuthology.run_tasks:Running task pcp... 2023-10-21T12:40:11.733 INFO:teuthology.run_tasks:Running task selinux... 2023-10-21T12:40:11.742 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2023-10-21T12:40:11.743 DEBUG:teuthology.orchestra.run.smithi057:> sudo service auditd rotate 2023-10-21T12:40:11.908 INFO:teuthology.orchestra.run.smithi057.stdout:Rotating logs: 2023-10-21T12:40:11.911 DEBUG:teuthology.orchestra.run.smithi138:> sudo service auditd rotate 2023-10-21T12:40:11.977 INFO:teuthology.orchestra.run.smithi138.stdout:Rotating logs: 2023-10-21T12:40:11.978 DEBUG:teuthology.task.selinux:Getting current SELinux state 2023-10-21T12:40:11.979 DEBUG:teuthology.orchestra.run.smithi057:> /usr/sbin/getenforce 2023-10-21T12:40:12.008 INFO:teuthology.orchestra.run.smithi057.stdout:Permissive 2023-10-21T12:40:12.008 DEBUG:teuthology.orchestra.run.smithi138:> /usr/sbin/getenforce 2023-10-21T12:40:12.037 INFO:teuthology.orchestra.run.smithi138.stdout:Permissive 2023-10-21T12:40:12.037 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi057.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi138.front.sepia.ceph.com': 'permissive'} 2023-10-21T12:40:12.038 DEBUG:teuthology.orchestra.run.smithi057:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-10-21T12:40:12.082 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:40:12.083 DEBUG:teuthology.orchestra.run.smithi138:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-10-21T12:40:12.111 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:40:12.112 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2023-10-21T12:40:12.112 DEBUG:teuthology.orchestra.run.smithi057:> sudo /usr/sbin/setenforce permissive 2023-10-21T12:40:12.159 DEBUG:teuthology.orchestra.run.smithi138:> sudo /usr/sbin/setenforce permissive 2023-10-21T12:40:12.186 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2023-10-21T12:40:12.196 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2023-10-21T12:40:12.201 INFO:teuthology.repo_utils:Fetching main from origin 2023-10-21T12:40:12.314 INFO:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2023-10-21T12:40:12.330 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'}]}] 2023-10-21T12:40:12.331 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi057.front.sepia.ceph.com,smithi138.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2023-10-21T12:48:22.798 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi057.front.sepia.ceph.com'), Remote(name='ubuntu@smithi138.front.sepia.ceph.com')] 2023-10-21T12:48:22.799 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2023-10-21T12:48:22.801 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:48:22.875 DEBUG:teuthology.orchestra.run.smithi057:> true 2023-10-21T12:48:22.955 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi057.front.sepia.ceph.com' 2023-10-21T12:48:22.955 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi138.front.sepia.ceph.com' 2023-10-21T12:48:22.956 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi138.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T12:48:23.024 DEBUG:teuthology.orchestra.run.smithi138:> true 2023-10-21T12:48:23.099 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi138.front.sepia.ceph.com' 2023-10-21T12:48:23.099 INFO:teuthology.run_tasks:Running task clock... 2023-10-21T12:48:23.110 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2023-10-21T12:48:23.110 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-10-21T12:48:23.111 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:48:23.113 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-10-21T12:48:23.114 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:48:23.152 INFO:teuthology.orchestra.run.smithi057.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-10-21T12:48:23.170 INFO:teuthology.orchestra.run.smithi057.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-10-21T12:48:23.174 INFO:teuthology.orchestra.run.smithi138.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-10-21T12:48:23.189 INFO:teuthology.orchestra.run.smithi138.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-10-21T12:48:23.234 INFO:teuthology.orchestra.run.smithi057.stderr:sudo: ntpd: command not found 2023-10-21T12:48:23.247 INFO:teuthology.orchestra.run.smithi057.stdout:506 Cannot talk to daemon 2023-10-21T12:48:23.263 INFO:teuthology.orchestra.run.smithi138.stderr:sudo: ntpd: command not found 2023-10-21T12:48:23.264 INFO:teuthology.orchestra.run.smithi057.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-10-21T12:48:23.274 INFO:teuthology.orchestra.run.smithi138.stdout:506 Cannot talk to daemon 2023-10-21T12:48:23.279 INFO:teuthology.orchestra.run.smithi057.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-10-21T12:48:23.288 INFO:teuthology.orchestra.run.smithi138.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-10-21T12:48:23.301 INFO:teuthology.orchestra.run.smithi138.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-10-21T12:48:23.352 INFO:teuthology.orchestra.run.smithi057.stderr:bash: ntpq: command not found 2023-10-21T12:48:23.356 INFO:teuthology.orchestra.run.smithi057.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-10-21T12:48:23.356 INFO:teuthology.orchestra.run.smithi057.stdout:=============================================================================== 2023-10-21T12:48:23.356 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:48:23.357 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:48:23.357 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:48:23.357 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:48:23.375 INFO:teuthology.orchestra.run.smithi138.stderr:bash: ntpq: command not found 2023-10-21T12:48:23.380 INFO:teuthology.orchestra.run.smithi138.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-10-21T12:48:23.380 INFO:teuthology.orchestra.run.smithi138.stdout:=============================================================================== 2023-10-21T12:48:23.381 INFO:teuthology.orchestra.run.smithi138.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:48:23.381 INFO:teuthology.orchestra.run.smithi138.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:48:23.381 INFO:teuthology.orchestra.run.smithi138.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:48:23.381 INFO:teuthology.orchestra.run.smithi138.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:48:23.381 INFO:teuthology.run_tasks:Running task pexec... 2023-10-21T12:48:23.391 INFO:teuthology.task.pexec:Executing custom commands... 2023-10-21T12:48:23.392 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi057.front.sepia.ceph.com 2023-10-21T12:48:23.392 DEBUG:teuthology.orchestra.run.smithi057:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-10-21T12:48:23.393 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi138.front.sepia.ceph.com 2023-10-21T12:48:23.393 DEBUG:teuthology.orchestra.run.smithi138:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-10-21T12:48:24.301 INFO:teuthology.orchestra.run.smithi138.stdout:Last metadata expiration check: 0:02:22 ago on Sat 21 Oct 2023 12:46:02 PM UTC. 2023-10-21T12:48:24.412 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:42 ago on Sat 21 Oct 2023 12:46:42 PM UTC. 2023-10-21T12:48:26.338 INFO:teuthology.orchestra.run.smithi138.stdout:Dependencies resolved. 2023-10-21T12:48:26.339 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:48:26.339 INFO:teuthology.orchestra.run.smithi138.stdout: Package Architecture Version Repository Size 2023-10-21T12:48:26.339 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:48:26.339 INFO:teuthology.orchestra.run.smithi138.stdout:Resetting modules: 2023-10-21T12:48:26.340 INFO:teuthology.orchestra.run.smithi138.stdout: container-tools 2023-10-21T12:48:26.340 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:48:26.340 INFO:teuthology.orchestra.run.smithi138.stdout:Transaction Summary 2023-10-21T12:48:26.340 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:48:26.340 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:48:26.584 INFO:teuthology.orchestra.run.smithi138.stdout:Complete! 2023-10-21T12:48:26.695 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2023-10-21T12:48:26.696 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:48:26.696 INFO:teuthology.orchestra.run.smithi057.stdout: Package Architecture Version Repository Size 2023-10-21T12:48:26.697 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:48:26.697 INFO:teuthology.orchestra.run.smithi057.stdout:Resetting modules: 2023-10-21T12:48:26.697 INFO:teuthology.orchestra.run.smithi057.stdout: container-tools 2023-10-21T12:48:26.697 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:48:26.697 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2023-10-21T12:48:26.698 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:48:26.698 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:48:26.994 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2023-10-21T12:48:27.535 INFO:teuthology.orchestra.run.smithi138.stdout:Last metadata expiration check: 0:02:25 ago on Sat 21 Oct 2023 12:46:02 PM UTC. 2023-10-21T12:48:28.078 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:45 ago on Sat 21 Oct 2023 12:46:42 PM UTC. 2023-10-21T12:48:29.560 INFO:teuthology.orchestra.run.smithi138.stdout:Dependencies resolved. 2023-10-21T12:48:29.728 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:48:29.728 INFO:teuthology.orchestra.run.smithi138.stdout: Package Arch Version Repository Size 2023-10-21T12:48:29.728 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:48:29.729 INFO:teuthology.orchestra.run.smithi138.stdout:Installing group/module packages: 2023-10-21T12:48:29.729 INFO:teuthology.orchestra.run.smithi138.stdout: aardvark-dns x86_64 2:1.7.0-1.module_el8+487+8e42a277 appstream 1.0 M 2023-10-21T12:48:29.729 INFO:teuthology.orchestra.run.smithi138.stdout: buildah x86_64 1:1.31.3-1.module_el8+664+4072b3ae appstream 8.8 M 2023-10-21T12:48:29.729 INFO:teuthology.orchestra.run.smithi138.stdout: cockpit-podman noarch 75-1.module_el8+664+4072b3ae appstream 739 k 2023-10-21T12:48:29.729 INFO:teuthology.orchestra.run.smithi138.stdout: crun x86_64 1.8.7-1.module_el8+661+d1afb926 appstream 239 k 2023-10-21T12:48:29.730 INFO:teuthology.orchestra.run.smithi138.stdout: netavark x86_64 2:1.7.0-1.module_el8+487+8e42a277 appstream 3.7 M 2023-10-21T12:48:29.730 INFO:teuthology.orchestra.run.smithi138.stdout: python3-podman noarch 4.6.0-1.module_el8+582+a2558ae2 appstream 177 k 2023-10-21T12:48:29.730 INFO:teuthology.orchestra.run.smithi138.stdout: skopeo x86_64 2:1.13.3-1.module_el8+664+4072b3ae appstream 8.1 M 2023-10-21T12:48:29.730 INFO:teuthology.orchestra.run.smithi138.stdout: toolbox x86_64 0.0.99.4-5.module_el8+649+e2deac1d appstream 2.5 M 2023-10-21T12:48:29.731 INFO:teuthology.orchestra.run.smithi138.stdout: udica noarch 0.2.6-20.module_el8+487+8e42a277 appstream 53 k 2023-10-21T12:48:29.731 INFO:teuthology.orchestra.run.smithi138.stdout:Installing dependencies: 2023-10-21T12:48:29.731 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pytoml noarch 0.1.14-5.git7dea353.el8 appstream 25 k 2023-10-21T12:48:29.732 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pyxdg noarch 0.25-16.el8 appstream 94 k 2023-10-21T12:48:29.732 INFO:teuthology.orchestra.run.smithi138.stdout: yajl x86_64 2.1.0-12.el8 appstream 41 k 2023-10-21T12:48:29.732 INFO:teuthology.orchestra.run.smithi138.stdout:Installing weak dependencies: 2023-10-21T12:48:29.732 INFO:teuthology.orchestra.run.smithi138.stdout: criu-libs x86_64 3.15-3.module_el8.7.0+1216+b022c01d appstream 38 k 2023-10-21T12:48:29.732 INFO:teuthology.orchestra.run.smithi138.stdout:Installing module profiles: 2023-10-21T12:48:29.733 INFO:teuthology.orchestra.run.smithi138.stdout: container-tools/common 2023-10-21T12:48:29.733 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:48:29.733 INFO:teuthology.orchestra.run.smithi138.stdout:Enabling module streams: 2023-10-21T12:48:29.733 INFO:teuthology.orchestra.run.smithi138.stdout: container-tools rhel8 2023-10-21T12:48:29.733 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:48:29.734 INFO:teuthology.orchestra.run.smithi138.stdout:Transaction Summary 2023-10-21T12:48:29.734 INFO:teuthology.orchestra.run.smithi138.stdout:================================================================================ 2023-10-21T12:48:29.734 INFO:teuthology.orchestra.run.smithi138.stdout:Install 13 Packages 2023-10-21T12:48:29.734 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:48:29.735 INFO:teuthology.orchestra.run.smithi138.stdout:Total download size: 26 M 2023-10-21T12:48:29.735 INFO:teuthology.orchestra.run.smithi138.stdout:Installed size: 87 M 2023-10-21T12:48:29.736 INFO:teuthology.orchestra.run.smithi138.stdout:Downloading Packages: 2023-10-21T12:48:29.980 INFO:teuthology.orchestra.run.smithi138.stdout:(1/13): cockpit-podman-75-1.module_el8+664+4072 3.5 MB/s | 739 kB 00:00 2023-10-21T12:48:30.005 INFO:teuthology.orchestra.run.smithi138.stdout:(2/13): aardvark-dns-1.7.0-1.module_el8+487+8e4 4.3 MB/s | 1.0 MB 00:00 2023-10-21T12:48:30.072 INFO:teuthology.orchestra.run.smithi138.stdout:(3/13): criu-libs-3.15-3.module_el8.7.0+1216+b0 410 kB/s | 38 kB 00:00 2023-10-21T12:48:30.139 INFO:teuthology.orchestra.run.smithi138.stdout:(4/13): crun-1.8.7-1.module_el8+661+d1afb926.x8 1.7 MB/s | 239 kB 00:00 2023-10-21T12:48:30.248 INFO:teuthology.orchestra.run.smithi138.stdout:(5/13): buildah-1.31.3-1.module_el8+664+4072b3a 19 MB/s | 8.8 MB 00:00 2023-10-21T12:48:30.273 INFO:teuthology.orchestra.run.smithi138.stdout:(6/13): python3-podman-4.6.0-1.module_el8+582+a 1.3 MB/s | 177 kB 00:00 2023-10-21T12:48:30.330 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2023-10-21T12:48:30.332 INFO:teuthology.orchestra.run.smithi138.stdout:(7/13): python3-pytoml-0.1.14-5.git7dea353.el8. 296 kB/s | 25 kB 00:00 2023-10-21T12:48:30.399 INFO:teuthology.orchestra.run.smithi138.stdout:(8/13): netavark-1.7.0-1.module_el8+487+8e42a27 11 MB/s | 3.7 MB 00:00 2023-10-21T12:48:30.425 INFO:teuthology.orchestra.run.smithi138.stdout:(9/13): python3-pyxdg-0.25-16.el8.noarch.rpm 622 kB/s | 94 kB 00:00 2023-10-21T12:48:30.511 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:48:30.511 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2023-10-21T12:48:30.512 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:48:30.512 INFO:teuthology.orchestra.run.smithi057.stdout:Installing group/module packages: 2023-10-21T12:48:30.512 INFO:teuthology.orchestra.run.smithi057.stdout: aardvark-dns x86_64 2:1.7.0-1.module_el8+487+8e42a277 appstream 1.0 M 2023-10-21T12:48:30.512 INFO:teuthology.orchestra.run.smithi057.stdout: buildah x86_64 1:1.31.3-1.module_el8+664+4072b3ae appstream 8.8 M 2023-10-21T12:48:30.512 INFO:teuthology.orchestra.run.smithi057.stdout: cockpit-podman noarch 75-1.module_el8+664+4072b3ae appstream 739 k 2023-10-21T12:48:30.513 INFO:teuthology.orchestra.run.smithi057.stdout: crun x86_64 1.8.7-1.module_el8+661+d1afb926 appstream 239 k 2023-10-21T12:48:30.513 INFO:teuthology.orchestra.run.smithi057.stdout: netavark x86_64 2:1.7.0-1.module_el8+487+8e42a277 appstream 3.7 M 2023-10-21T12:48:30.513 INFO:teuthology.orchestra.run.smithi057.stdout: python3-podman noarch 4.6.0-1.module_el8+582+a2558ae2 appstream 177 k 2023-10-21T12:48:30.513 INFO:teuthology.orchestra.run.smithi057.stdout: skopeo x86_64 2:1.13.3-1.module_el8+664+4072b3ae appstream 8.1 M 2023-10-21T12:48:30.513 INFO:teuthology.orchestra.run.smithi057.stdout: toolbox x86_64 0.0.99.4-5.module_el8+649+e2deac1d appstream 2.5 M 2023-10-21T12:48:30.513 INFO:teuthology.orchestra.run.smithi057.stdout: udica noarch 0.2.6-20.module_el8+487+8e42a277 appstream 53 k 2023-10-21T12:48:30.514 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2023-10-21T12:48:30.514 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pytoml noarch 0.1.14-5.git7dea353.el8 appstream 25 k 2023-10-21T12:48:30.514 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pyxdg noarch 0.25-16.el8 appstream 94 k 2023-10-21T12:48:30.514 INFO:teuthology.orchestra.run.smithi057.stdout: yajl x86_64 2.1.0-12.el8 appstream 41 k 2023-10-21T12:48:30.514 INFO:teuthology.orchestra.run.smithi057.stdout:Installing weak dependencies: 2023-10-21T12:48:30.515 INFO:teuthology.orchestra.run.smithi057.stdout: criu-libs x86_64 3.15-3.module_el8.7.0+1216+b022c01d appstream 38 k 2023-10-21T12:48:30.515 INFO:teuthology.orchestra.run.smithi057.stdout:Installing module profiles: 2023-10-21T12:48:30.515 INFO:teuthology.orchestra.run.smithi057.stdout: container-tools/common 2023-10-21T12:48:30.515 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:48:30.515 INFO:teuthology.orchestra.run.smithi057.stdout:Enabling module streams: 2023-10-21T12:48:30.516 INFO:teuthology.orchestra.run.smithi057.stdout: container-tools rhel8 2023-10-21T12:48:30.516 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:48:30.516 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2023-10-21T12:48:30.517 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2023-10-21T12:48:30.517 INFO:teuthology.orchestra.run.smithi057.stdout:Install 13 Packages 2023-10-21T12:48:30.517 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:48:30.518 INFO:teuthology.orchestra.run.smithi138.stdout:(10/13): udica-0.2.6-20.module_el8+487+8e42a277 574 kB/s | 53 kB 00:00 2023-10-21T12:48:30.518 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 26 M 2023-10-21T12:48:30.518 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 87 M 2023-10-21T12:48:30.519 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2023-10-21T12:48:30.609 INFO:teuthology.orchestra.run.smithi138.stdout:(11/13): yajl-2.1.0-12.el8.x86_64.rpm 446 kB/s | 41 kB 00:00 2023-10-21T12:48:30.659 INFO:teuthology.orchestra.run.smithi138.stdout:(12/13): toolbox-0.0.99.4-5.module_el8+649+e2de 9.8 MB/s | 2.5 MB 00:00 2023-10-21T12:48:30.759 INFO:teuthology.orchestra.run.smithi138.stdout:(13/13): skopeo-1.13.3-1.module_el8+664+4072b3a 19 MB/s | 8.1 MB 00:00 2023-10-21T12:48:30.760 INFO:teuthology.orchestra.run.smithi138.stdout:-------------------------------------------------------------------------------- 2023-10-21T12:48:30.760 INFO:teuthology.orchestra.run.smithi138.stdout:Total 25 MB/s | 26 MB 00:01 2023-10-21T12:48:30.770 INFO:teuthology.orchestra.run.smithi057.stdout:(1/13): cockpit-podman-75-1.module_el8+664+4072 3.4 MB/s | 739 kB 00:00 2023-10-21T12:48:30.824 INFO:teuthology.orchestra.run.smithi057.stdout:(2/13): aardvark-dns-1.7.0-1.module_el8+487+8e4 3.8 MB/s | 1.0 MB 00:00 2023-10-21T12:48:30.855 INFO:teuthology.orchestra.run.smithi057.stdout:(3/13): criu-libs-3.15-3.module_el8.7.0+1216+b0 452 kB/s | 38 kB 00:00 2023-10-21T12:48:30.954 INFO:teuthology.orchestra.run.smithi057.stdout:(4/13): crun-1.8.7-1.module_el8+661+d1afb926.x8 1.8 MB/s | 239 kB 00:00 2023-10-21T12:48:31.020 INFO:teuthology.orchestra.run.smithi138.stdout:Running transaction check 2023-10-21T12:48:31.041 INFO:teuthology.orchestra.run.smithi138.stdout:Transaction check succeeded. 2023-10-21T12:48:31.042 INFO:teuthology.orchestra.run.smithi138.stdout:Running transaction test 2023-10-21T12:48:31.055 INFO:teuthology.orchestra.run.smithi057.stdout:(5/13): buildah-1.31.3-1.module_el8+664+4072b3a 18 MB/s | 8.8 MB 00:00 2023-10-21T12:48:31.080 INFO:teuthology.orchestra.run.smithi057.stdout:(6/13): python3-podman-4.6.0-1.module_el8+582+a 1.4 MB/s | 177 kB 00:00 2023-10-21T12:48:31.139 INFO:teuthology.orchestra.run.smithi057.stdout:(7/13): python3-pytoml-0.1.14-5.git7dea353.el8. 296 kB/s | 25 kB 00:00 2023-10-21T12:48:31.206 INFO:teuthology.orchestra.run.smithi057.stdout:(8/13): netavark-1.7.0-1.module_el8+487+8e42a27 11 MB/s | 3.7 MB 00:00 2023-10-21T12:48:31.231 INFO:teuthology.orchestra.run.smithi057.stdout:(9/13): python3-pyxdg-0.25-16.el8.noarch.rpm 623 kB/s | 94 kB 00:00 2023-10-21T12:48:31.284 INFO:teuthology.orchestra.run.smithi138.stdout:Transaction test succeeded. 2023-10-21T12:48:31.288 INFO:teuthology.orchestra.run.smithi138.stdout:Running transaction 2023-10-21T12:48:31.323 INFO:teuthology.orchestra.run.smithi057.stdout:(10/13): udica-0.2.6-20.module_el8+487+8e42a277 576 kB/s | 53 kB 00:00 2023-10-21T12:48:31.407 INFO:teuthology.orchestra.run.smithi057.stdout:(11/13): yajl-2.1.0-12.el8.x86_64.rpm 492 kB/s | 41 kB 00:00 2023-10-21T12:48:31.457 INFO:teuthology.orchestra.run.smithi057.stdout:(12/13): toolbox-0.0.99.4-5.module_el8+649+e2de 10 MB/s | 2.5 MB 00:00 2023-10-21T12:48:31.582 INFO:teuthology.orchestra.run.smithi057.stdout:(13/13): skopeo-1.13.3-1.module_el8+664+4072b3a 18 MB/s | 8.1 MB 00:00 2023-10-21T12:48:31.583 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2023-10-21T12:48:31.583 INFO:teuthology.orchestra.run.smithi057.stdout:Total 24 MB/s | 26 MB 00:01 2023-10-21T12:48:31.869 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2023-10-21T12:48:31.893 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2023-10-21T12:48:31.894 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2023-10-21T12:48:31.942 INFO:teuthology.orchestra.run.smithi138.stdout: Preparing : 1/1 2023-10-21T12:48:32.166 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2023-10-21T12:48:32.169 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2023-10-21T12:48:32.178 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : yajl-2.1.0-12.el8.x86_64 1/13 2023-10-21T12:48:32.399 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : python3-pyxdg-0.25-16.el8.noarch 2/13 2023-10-21T12:48:32.605 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 3/13 2023-10-21T12:48:32.830 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2023-10-21T12:48:32.852 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_ 4/13 2023-10-21T12:48:33.050 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : yajl-2.1.0-12.el8.x86_64 1/13 2023-10-21T12:48:33.200 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-pyxdg-0.25-16.el8.noarch 2/13 2023-10-21T12:48:33.386 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 3/13 2023-10-21T12:48:33.432 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : aardvark-dns-2:1.7.0-1.module_el8+487+8e42a277.x86 5/13 2023-10-21T12:48:33.643 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_ 4/13 2023-10-21T12:48:34.199 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : aardvark-dns-2:1.7.0-1.module_el8+487+8e42a277.x86 5/13 2023-10-21T12:48:34.373 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : netavark-2:1.7.0-1.module_el8+487+8e42a277.x86_64 6/13 2023-10-21T12:48:34.628 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : buildah-1:1.31.3-1.module_el8+664+4072b3ae.x86_64 7/13 2023-10-21T12:48:34.866 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : crun-1.8.7-1.module_el8+661+d1afb926.x86_64 8/13 2023-10-21T12:48:35.165 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : netavark-2:1.7.0-1.module_el8+487+8e42a277.x86_64 6/13 2023-10-21T12:48:35.170 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : python3-podman-4.6.0-1.module_el8+582+a2558ae2.noa 9/13 2023-10-21T12:48:35.395 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : buildah-1:1.31.3-1.module_el8+664+4072b3ae.x86_64 7/13 2023-10-21T12:48:35.563 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : udica-0.2.6-20.module_el8+487+8e42a277.noarch 10/13 2023-10-21T12:48:35.592 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : crun-1.8.7-1.module_el8+661+d1afb926.x86_64 8/13 2023-10-21T12:48:35.814 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-podman-4.6.0-1.module_el8+582+a2558ae2.noa 9/13 2023-10-21T12:48:36.301 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : udica-0.2.6-20.module_el8+487+8e42a277.noarch 10/13 2023-10-21T12:48:36.435 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : toolbox-0.0.99.4-5.module_el8+649+e2deac1d.x86_64 11/13 2023-10-21T12:48:36.673 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : skopeo-2:1.13.3-1.module_el8+664+4072b3ae.x86_64 12/13 2023-10-21T12:48:36.873 INFO:teuthology.orchestra.run.smithi138.stdout: Installing : cockpit-podman-75-1.module_el8+664+4072b3ae.noarch 13/13 2023-10-21T12:48:37.297 INFO:teuthology.orchestra.run.smithi138.stdout: Running scriptlet: cockpit-podman-75-1.module_el8+664+4072b3ae.noarch 13/13 2023-10-21T12:48:37.298 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : aardvark-dns-2:1.7.0-1.module_el8+487+8e42a277.x86 1/13 2023-10-21T12:48:37.298 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : buildah-1:1.31.3-1.module_el8+664+4072b3ae.x86_64 2/13 2023-10-21T12:48:37.298 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : cockpit-podman-75-1.module_el8+664+4072b3ae.noarch 3/13 2023-10-21T12:48:37.298 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_ 4/13 2023-10-21T12:48:37.298 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : crun-1.8.7-1.module_el8+661+d1afb926.x86_64 5/13 2023-10-21T12:48:37.299 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : netavark-2:1.7.0-1.module_el8+487+8e42a277.x86_64 6/13 2023-10-21T12:48:37.299 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : python3-podman-4.6.0-1.module_el8+582+a2558ae2.noa 7/13 2023-10-21T12:48:37.299 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 8/13 2023-10-21T12:48:37.299 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : python3-pyxdg-0.25-16.el8.noarch 9/13 2023-10-21T12:48:37.299 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : skopeo-2:1.13.3-1.module_el8+664+4072b3ae.x86_64 10/13 2023-10-21T12:48:37.300 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : toolbox-0.0.99.4-5.module_el8+649+e2deac1d.x86_64 11/13 2023-10-21T12:48:37.300 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : udica-0.2.6-20.module_el8+487+8e42a277.noarch 12/13 2023-10-21T12:48:37.716 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : toolbox-0.0.99.4-5.module_el8+649+e2deac1d.x86_64 11/13 2023-10-21T12:48:37.929 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : skopeo-2:1.13.3-1.module_el8+664+4072b3ae.x86_64 12/13 2023-10-21T12:48:38.038 INFO:teuthology.orchestra.run.smithi138.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 13/13 2023-10-21T12:48:38.039 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:48:38.039 INFO:teuthology.orchestra.run.smithi138.stdout:Installed: 2023-10-21T12:48:38.039 INFO:teuthology.orchestra.run.smithi138.stdout: aardvark-dns-2:1.7.0-1.module_el8+487+8e42a277.x86_64 2023-10-21T12:48:38.039 INFO:teuthology.orchestra.run.smithi138.stdout: buildah-1:1.31.3-1.module_el8+664+4072b3ae.x86_64 2023-10-21T12:48:38.040 INFO:teuthology.orchestra.run.smithi138.stdout: cockpit-podman-75-1.module_el8+664+4072b3ae.noarch 2023-10-21T12:48:38.040 INFO:teuthology.orchestra.run.smithi138.stdout: criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_64 2023-10-21T12:48:38.040 INFO:teuthology.orchestra.run.smithi138.stdout: crun-1.8.7-1.module_el8+661+d1afb926.x86_64 2023-10-21T12:48:38.040 INFO:teuthology.orchestra.run.smithi138.stdout: netavark-2:1.7.0-1.module_el8+487+8e42a277.x86_64 2023-10-21T12:48:38.040 INFO:teuthology.orchestra.run.smithi138.stdout: python3-podman-4.6.0-1.module_el8+582+a2558ae2.noarch 2023-10-21T12:48:38.041 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pytoml-0.1.14-5.git7dea353.el8.noarch 2023-10-21T12:48:38.041 INFO:teuthology.orchestra.run.smithi138.stdout: python3-pyxdg-0.25-16.el8.noarch 2023-10-21T12:48:38.041 INFO:teuthology.orchestra.run.smithi138.stdout: skopeo-2:1.13.3-1.module_el8+664+4072b3ae.x86_64 2023-10-21T12:48:38.041 INFO:teuthology.orchestra.run.smithi138.stdout: toolbox-0.0.99.4-5.module_el8+649+e2deac1d.x86_64 2023-10-21T12:48:38.042 INFO:teuthology.orchestra.run.smithi138.stdout: udica-0.2.6-20.module_el8+487+8e42a277.noarch 2023-10-21T12:48:38.042 INFO:teuthology.orchestra.run.smithi138.stdout: yajl-2.1.0-12.el8.x86_64 2023-10-21T12:48:38.042 INFO:teuthology.orchestra.run.smithi138.stdout: 2023-10-21T12:48:38.042 INFO:teuthology.orchestra.run.smithi138.stdout:Complete! 2023-10-21T12:48:38.106 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : cockpit-podman-75-1.module_el8+664+4072b3ae.noarch 13/13 2023-10-21T12:48:38.592 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: cockpit-podman-75-1.module_el8+664+4072b3ae.noarch 13/13 2023-10-21T12:48:38.592 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : aardvark-dns-2:1.7.0-1.module_el8+487+8e42a277.x86 1/13 2023-10-21T12:48:38.593 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : buildah-1:1.31.3-1.module_el8+664+4072b3ae.x86_64 2/13 2023-10-21T12:48:38.593 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : cockpit-podman-75-1.module_el8+664+4072b3ae.noarch 3/13 2023-10-21T12:48:38.593 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_ 4/13 2023-10-21T12:48:38.593 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : crun-1.8.7-1.module_el8+661+d1afb926.x86_64 5/13 2023-10-21T12:48:38.593 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : netavark-2:1.7.0-1.module_el8+487+8e42a277.x86_64 6/13 2023-10-21T12:48:38.594 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-podman-4.6.0-1.module_el8+582+a2558ae2.noa 7/13 2023-10-21T12:48:38.594 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 8/13 2023-10-21T12:48:38.594 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-pyxdg-0.25-16.el8.noarch 9/13 2023-10-21T12:48:38.594 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : skopeo-2:1.13.3-1.module_el8+664+4072b3ae.x86_64 10/13 2023-10-21T12:48:38.595 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : toolbox-0.0.99.4-5.module_el8+649+e2deac1d.x86_64 11/13 2023-10-21T12:48:38.595 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : udica-0.2.6-20.module_el8+487+8e42a277.noarch 12/13 2023-10-21T12:48:39.003 DEBUG:teuthology.parallel:result is None 2023-10-21T12:48:39.460 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 13/13 2023-10-21T12:48:39.460 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:48:39.460 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2023-10-21T12:48:39.461 INFO:teuthology.orchestra.run.smithi057.stdout: aardvark-dns-2:1.7.0-1.module_el8+487+8e42a277.x86_64 2023-10-21T12:48:39.461 INFO:teuthology.orchestra.run.smithi057.stdout: buildah-1:1.31.3-1.module_el8+664+4072b3ae.x86_64 2023-10-21T12:48:39.461 INFO:teuthology.orchestra.run.smithi057.stdout: cockpit-podman-75-1.module_el8+664+4072b3ae.noarch 2023-10-21T12:48:39.461 INFO:teuthology.orchestra.run.smithi057.stdout: criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_64 2023-10-21T12:48:39.461 INFO:teuthology.orchestra.run.smithi057.stdout: crun-1.8.7-1.module_el8+661+d1afb926.x86_64 2023-10-21T12:48:39.462 INFO:teuthology.orchestra.run.smithi057.stdout: netavark-2:1.7.0-1.module_el8+487+8e42a277.x86_64 2023-10-21T12:48:39.462 INFO:teuthology.orchestra.run.smithi057.stdout: python3-podman-4.6.0-1.module_el8+582+a2558ae2.noarch 2023-10-21T12:48:39.462 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pytoml-0.1.14-5.git7dea353.el8.noarch 2023-10-21T12:48:39.463 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pyxdg-0.25-16.el8.noarch 2023-10-21T12:48:39.463 INFO:teuthology.orchestra.run.smithi057.stdout: skopeo-2:1.13.3-1.module_el8+664+4072b3ae.x86_64 2023-10-21T12:48:39.463 INFO:teuthology.orchestra.run.smithi057.stdout: toolbox-0.0.99.4-5.module_el8+649+e2deac1d.x86_64 2023-10-21T12:48:39.464 INFO:teuthology.orchestra.run.smithi057.stdout: udica-0.2.6-20.module_el8+487+8e42a277.noarch 2023-10-21T12:48:39.464 INFO:teuthology.orchestra.run.smithi057.stdout: yajl-2.1.0-12.el8.x86_64 2023-10-21T12:48:39.464 INFO:teuthology.orchestra.run.smithi057.stdout: 2023-10-21T12:48:39.465 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2023-10-21T12:48:39.769 DEBUG:teuthology.parallel:result is None 2023-10-21T12:48:39.770 INFO:teuthology.run_tasks:Running task nvme_loop... 2023-10-21T12:48:39.781 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2023-10-21T12:48:39.782 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2023-10-21T12:48:39.782 DEBUG:teuthology.orchestra.run.smithi057:> dd if=/scratch_devs of=/dev/stdout 2023-10-21T12:48:39.803 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2023-10-21T12:48:39.803 DEBUG:teuthology.orchestra.run.smithi057:> stat /dev/vg_nvme/lv_1 2023-10-21T12:48:39.866 INFO:teuthology.orchestra.run.smithi057.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-10-21T12:48:39.866 INFO:teuthology.orchestra.run.smithi057.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T12:48:39.866 INFO:teuthology.orchestra.run.smithi057.stdout:Device: 6h/6d Inode: 390711 Links: 1 2023-10-21T12:48:39.866 INFO:teuthology.orchestra.run.smithi057.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T12:48:39.867 INFO:teuthology.orchestra.run.smithi057.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T12:48:39.867 INFO:teuthology.orchestra.run.smithi057.stdout:Access: 2023-10-21 12:48:38.268413935 +0000 2023-10-21T12:48:39.867 INFO:teuthology.orchestra.run.smithi057.stdout:Modify: 2023-10-21 12:47:42.373584732 +0000 2023-10-21T12:48:39.867 INFO:teuthology.orchestra.run.smithi057.stdout:Change: 2023-10-21 12:47:42.373584732 +0000 2023-10-21T12:48:39.867 INFO:teuthology.orchestra.run.smithi057.stdout: Birth: - 2023-10-21T12:48:39.868 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-10-21T12:48:39.939 INFO:teuthology.orchestra.run.smithi057.stderr:1+0 records in 2023-10-21T12:48:39.940 INFO:teuthology.orchestra.run.smithi057.stderr:1+0 records out 2023-10-21T12:48:39.940 INFO:teuthology.orchestra.run.smithi057.stderr:512 bytes copied, 0.000231259 s, 2.2 MB/s 2023-10-21T12:48:39.941 DEBUG:teuthology.orchestra.run.smithi057:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-10-21T12:48:40.006 DEBUG:teuthology.orchestra.run.smithi057:> stat /dev/vg_nvme/lv_2 2023-10-21T12:48:40.069 INFO:teuthology.orchestra.run.smithi057.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-10-21T12:48:40.069 INFO:teuthology.orchestra.run.smithi057.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T12:48:40.069 INFO:teuthology.orchestra.run.smithi057.stdout:Device: 6h/6d Inode: 396209 Links: 1 2023-10-21T12:48:40.070 INFO:teuthology.orchestra.run.smithi057.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T12:48:40.070 INFO:teuthology.orchestra.run.smithi057.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T12:48:40.070 INFO:teuthology.orchestra.run.smithi057.stdout:Access: 2023-10-21 12:48:38.269413920 +0000 2023-10-21T12:48:40.070 INFO:teuthology.orchestra.run.smithi057.stdout:Modify: 2023-10-21 12:47:42.952576230 +0000 2023-10-21T12:48:40.070 INFO:teuthology.orchestra.run.smithi057.stdout:Change: 2023-10-21 12:47:42.952576230 +0000 2023-10-21T12:48:40.071 INFO:teuthology.orchestra.run.smithi057.stdout: Birth: - 2023-10-21T12:48:40.071 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-10-21T12:48:40.142 INFO:teuthology.orchestra.run.smithi057.stderr:1+0 records in 2023-10-21T12:48:40.143 INFO:teuthology.orchestra.run.smithi057.stderr:1+0 records out 2023-10-21T12:48:40.143 INFO:teuthology.orchestra.run.smithi057.stderr:512 bytes copied, 0.00028605 s, 1.8 MB/s 2023-10-21T12:48:40.144 DEBUG:teuthology.orchestra.run.smithi057:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-10-21T12:48:40.209 DEBUG:teuthology.orchestra.run.smithi057:> stat /dev/vg_nvme/lv_3 2023-10-21T12:48:40.274 INFO:teuthology.orchestra.run.smithi057.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-10-21T12:48:40.274 INFO:teuthology.orchestra.run.smithi057.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T12:48:40.274 INFO:teuthology.orchestra.run.smithi057.stdout:Device: 6h/6d Inode: 399519 Links: 1 2023-10-21T12:48:40.275 INFO:teuthology.orchestra.run.smithi057.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T12:48:40.275 INFO:teuthology.orchestra.run.smithi057.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T12:48:40.275 INFO:teuthology.orchestra.run.smithi057.stdout:Access: 2023-10-21 12:48:38.269413920 +0000 2023-10-21T12:48:40.275 INFO:teuthology.orchestra.run.smithi057.stdout:Modify: 2023-10-21 12:47:43.519567904 +0000 2023-10-21T12:48:40.275 INFO:teuthology.orchestra.run.smithi057.stdout:Change: 2023-10-21 12:47:43.519567904 +0000 2023-10-21T12:48:40.276 INFO:teuthology.orchestra.run.smithi057.stdout: Birth: - 2023-10-21T12:48:40.276 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-10-21T12:48:40.349 INFO:teuthology.orchestra.run.smithi057.stderr:1+0 records in 2023-10-21T12:48:40.349 INFO:teuthology.orchestra.run.smithi057.stderr:1+0 records out 2023-10-21T12:48:40.349 INFO:teuthology.orchestra.run.smithi057.stderr:512 bytes copied, 0.0002948 s, 1.7 MB/s 2023-10-21T12:48:40.351 DEBUG:teuthology.orchestra.run.smithi057:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-10-21T12:48:40.416 DEBUG:teuthology.orchestra.run.smithi057:> stat /dev/vg_nvme/lv_4 2023-10-21T12:48:40.480 INFO:teuthology.orchestra.run.smithi057.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-10-21T12:48:40.481 INFO:teuthology.orchestra.run.smithi057.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T12:48:40.481 INFO:teuthology.orchestra.run.smithi057.stdout:Device: 6h/6d Inode: 391040 Links: 1 2023-10-21T12:48:40.481 INFO:teuthology.orchestra.run.smithi057.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T12:48:40.482 INFO:teuthology.orchestra.run.smithi057.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T12:48:40.482 INFO:teuthology.orchestra.run.smithi057.stdout:Access: 2023-10-21 12:48:38.269413920 +0000 2023-10-21T12:48:40.482 INFO:teuthology.orchestra.run.smithi057.stdout:Modify: 2023-10-21 12:47:44.101559357 +0000 2023-10-21T12:48:40.483 INFO:teuthology.orchestra.run.smithi057.stdout:Change: 2023-10-21 12:47:44.101559357 +0000 2023-10-21T12:48:40.483 INFO:teuthology.orchestra.run.smithi057.stdout: Birth: - 2023-10-21T12:48:40.484 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-10-21T12:48:40.554 INFO:teuthology.orchestra.run.smithi057.stderr:1+0 records in 2023-10-21T12:48:40.554 INFO:teuthology.orchestra.run.smithi057.stderr:1+0 records out 2023-10-21T12:48:40.555 INFO:teuthology.orchestra.run.smithi057.stderr:512 bytes copied, 0.000281568 s, 1.8 MB/s 2023-10-21T12:48:40.556 DEBUG:teuthology.orchestra.run.smithi057:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-10-21T12:48:40.621 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:48:40.759 INFO:teuthology.orchestra.run.smithi057.stdout:loop 2023-10-21T12:48:40.761 INFO:tasks.nvme_loop:Connecting nvme_loop smithi057:/dev/vg_nvme/lv_1... 2023-10-21T12:48:40.761 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:48:40.806 INFO:teuthology.orchestra.run.smithi057.stdout:1 2023-10-21T12:48:40.846 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/vg_nvme/lv_11 2023-10-21T12:48:40.891 INFO:tasks.nvme_loop:Connecting nvme_loop smithi057:/dev/vg_nvme/lv_2... 2023-10-21T12:48:40.891 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:48:40.934 INFO:teuthology.orchestra.run.smithi057.stdout:1 2023-10-21T12:48:40.971 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/vg_nvme/lv_21 2023-10-21T12:48:41.012 INFO:tasks.nvme_loop:Connecting nvme_loop smithi057:/dev/vg_nvme/lv_3... 2023-10-21T12:48:41.012 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:48:41.095 INFO:teuthology.orchestra.run.smithi057.stdout:1 2023-10-21T12:48:41.133 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/vg_nvme/lv_31 2023-10-21T12:48:41.174 INFO:tasks.nvme_loop:Connecting nvme_loop smithi057:/dev/vg_nvme/lv_4... 2023-10-21T12:48:41.175 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:48:41.256 INFO:teuthology.orchestra.run.smithi057.stdout:1 2023-10-21T12:48:41.294 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/vg_nvme/lv_41 2023-10-21T12:48:41.335 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2023-10-21T12:48:41.335 DEBUG:teuthology.orchestra.run.smithi057:> dd if=/scratch_devs of=/dev/stdout 2023-10-21T12:48:41.400 DEBUG:teuthology.orchestra.run.smithi057:> sudo nvme list 2023-10-21T12:48:41.471 INFO:teuthology.orchestra.run.smithi057.stdout:Node SN Model Namespace Usage Format FW Rev 2023-10-21T12:48:41.472 INFO:teuthology.orchestra.run.smithi057.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-10-21T12:48:41.472 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/nvme0n1 BTLE7361049H4P0KGN INTEL SSDPEDKE040T7 1 4.00 TB / 4.00 TB 512 B + 0 B QDV1013D 2023-10-21T12:48:41.472 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/nvme1n1 6bb3f12f0a6889d6c7cc Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2023-10-21T12:48:41.473 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/nvme2n1 9fc50016f2a3a920e94a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2023-10-21T12:48:41.473 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/nvme3n1 0c6b786751bf26bce709 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2023-10-21T12:48:41.473 INFO:teuthology.orchestra.run.smithi057.stdout:/dev/nvme4n1 ca336cb930001c83287e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2023-10-21T12:48:41.474 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-10-21T12:48:41.474 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2023-10-21T12:48:41.475 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/scratch_devs 2023-10-21T12:48:41.549 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2023-10-21T12:48:41.550 DEBUG:teuthology.orchestra.run.smithi138:> dd if=/scratch_devs of=/dev/stdout 2023-10-21T12:48:41.572 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2023-10-21T12:48:41.573 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_1 2023-10-21T12:48:41.634 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-10-21T12:48:41.635 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T12:48:41.635 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 6h/6d Inode: 395130 Links: 1 2023-10-21T12:48:41.635 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T12:48:41.636 INFO:teuthology.orchestra.run.smithi138.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T12:48:41.636 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2023-10-21 12:48:37.017748732 +0000 2023-10-21T12:48:41.637 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2023-10-21 12:46:57.875379157 +0000 2023-10-21T12:48:41.637 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2023-10-21 12:46:57.875379157 +0000 2023-10-21T12:48:41.637 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2023-10-21T12:48:41.638 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-10-21T12:48:41.706 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2023-10-21T12:48:41.706 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2023-10-21T12:48:41.707 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000246786 s, 2.1 MB/s 2023-10-21T12:48:41.708 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-10-21T12:48:41.769 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_2 2023-10-21T12:48:41.829 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-10-21T12:48:41.830 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T12:48:41.830 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 6h/6d Inode: 396253 Links: 1 2023-10-21T12:48:41.830 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T12:48:41.830 INFO:teuthology.orchestra.run.smithi138.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T12:48:41.831 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2023-10-21 12:48:37.017748732 +0000 2023-10-21T12:48:41.831 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2023-10-21 12:46:58.400368507 +0000 2023-10-21T12:48:41.831 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2023-10-21 12:46:58.400368507 +0000 2023-10-21T12:48:41.831 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2023-10-21T12:48:41.832 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-10-21T12:48:41.899 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2023-10-21T12:48:41.899 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2023-10-21T12:48:41.899 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000245148 s, 2.1 MB/s 2023-10-21T12:48:41.900 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-10-21T12:48:41.961 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_3 2023-10-21T12:48:42.021 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-10-21T12:48:42.021 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T12:48:42.021 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 6h/6d Inode: 397596 Links: 1 2023-10-21T12:48:42.022 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T12:48:42.022 INFO:teuthology.orchestra.run.smithi138.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T12:48:42.022 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2023-10-21 12:48:37.018748711 +0000 2023-10-21T12:48:42.022 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2023-10-21 12:46:58.914358081 +0000 2023-10-21T12:48:42.022 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2023-10-21 12:46:58.914358081 +0000 2023-10-21T12:48:42.023 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2023-10-21T12:48:42.023 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-10-21T12:48:42.088 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2023-10-21T12:48:42.089 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2023-10-21T12:48:42.089 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.000235787 s, 2.2 MB/s 2023-10-21T12:48:42.090 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-10-21T12:48:42.149 DEBUG:teuthology.orchestra.run.smithi138:> stat /dev/vg_nvme/lv_4 2023-10-21T12:48:42.208 INFO:teuthology.orchestra.run.smithi138.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-10-21T12:48:42.208 INFO:teuthology.orchestra.run.smithi138.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T12:48:42.208 INFO:teuthology.orchestra.run.smithi138.stdout:Device: 6h/6d Inode: 397768 Links: 1 2023-10-21T12:48:42.209 INFO:teuthology.orchestra.run.smithi138.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T12:48:42.209 INFO:teuthology.orchestra.run.smithi138.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T12:48:42.209 INFO:teuthology.orchestra.run.smithi138.stdout:Access: 2023-10-21 12:48:37.018748711 +0000 2023-10-21T12:48:42.210 INFO:teuthology.orchestra.run.smithi138.stdout:Modify: 2023-10-21 12:46:59.408348060 +0000 2023-10-21T12:48:42.210 INFO:teuthology.orchestra.run.smithi138.stdout:Change: 2023-10-21 12:46:59.408348060 +0000 2023-10-21T12:48:42.210 INFO:teuthology.orchestra.run.smithi138.stdout: Birth: - 2023-10-21T12:48:42.211 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-10-21T12:48:42.274 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records in 2023-10-21T12:48:42.274 INFO:teuthology.orchestra.run.smithi138.stderr:1+0 records out 2023-10-21T12:48:42.275 INFO:teuthology.orchestra.run.smithi138.stderr:512 bytes copied, 0.00030251 s, 1.7 MB/s 2023-10-21T12:48:42.276 DEBUG:teuthology.orchestra.run.smithi138:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-10-21T12:48:42.335 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:48:42.466 INFO:teuthology.orchestra.run.smithi138.stdout:loop 2023-10-21T12:48:42.467 INFO:tasks.nvme_loop:Connecting nvme_loop smithi138:/dev/vg_nvme/lv_1... 2023-10-21T12:48:42.468 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:48:42.503 INFO:teuthology.orchestra.run.smithi138.stdout:1 2023-10-21T12:48:42.536 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/vg_nvme/lv_11 2023-10-21T12:48:42.576 INFO:tasks.nvme_loop:Connecting nvme_loop smithi138:/dev/vg_nvme/lv_2... 2023-10-21T12:48:42.576 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:48:42.652 INFO:teuthology.orchestra.run.smithi138.stdout:1 2023-10-21T12:48:42.686 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/vg_nvme/lv_21 2023-10-21T12:48:42.723 INFO:tasks.nvme_loop:Connecting nvme_loop smithi138:/dev/vg_nvme/lv_3... 2023-10-21T12:48:42.724 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:48:42.799 INFO:teuthology.orchestra.run.smithi138.stdout:1 2023-10-21T12:48:42.833 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/vg_nvme/lv_31 2023-10-21T12:48:42.870 INFO:tasks.nvme_loop:Connecting nvme_loop smithi138:/dev/vg_nvme/lv_4... 2023-10-21T12:48:42.871 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:48:42.946 INFO:teuthology.orchestra.run.smithi138.stdout:1 2023-10-21T12:48:42.980 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/vg_nvme/lv_41 2023-10-21T12:48:43.018 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2023-10-21T12:48:43.018 DEBUG:teuthology.orchestra.run.smithi138:> dd if=/scratch_devs of=/dev/stdout 2023-10-21T12:48:43.076 DEBUG:teuthology.orchestra.run.smithi138:> sudo nvme list 2023-10-21T12:48:43.142 INFO:teuthology.orchestra.run.smithi138.stdout:Node SN Model Namespace Usage Format FW Rev 2023-10-21T12:48:43.142 INFO:teuthology.orchestra.run.smithi138.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-10-21T12:48:43.143 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/nvme0n1 CVFT6161003C400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2023-10-21T12:48:43.143 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/nvme1n1 4e3f3538e4c45966ae26 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2023-10-21T12:48:43.143 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/nvme2n1 0c3692c501f4f9f4dcff Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2023-10-21T12:48:43.143 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/nvme3n1 23cc9e5d02633a9990ff Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2023-10-21T12:48:43.143 INFO:teuthology.orchestra.run.smithi138.stdout:/dev/nvme4n1 efa04139faff3c8e6ce8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2023-10-21T12:48:43.144 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-10-21T12:48:43.145 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2023-10-21T12:48:43.145 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/scratch_devs 2023-10-21T12:48:43.212 INFO:teuthology.run_tasks:Running task cephadm... 2023-10-21T12:48:43.299 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': 'f0804064d67a2a63dbabf1801ff452580a050cfc'} 2023-10-21T12:48:43.299 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f0804064d67a2a63dbabf1801ff452580a050cfc 2023-10-21T12:48:43.300 INFO:tasks.cephadm:Cluster fsid is 2aafa2fe-7010-11ee-8db6-212e2dc638e7 2023-10-21T12:48:43.301 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2023-10-21T12:48:43.301 INFO:tasks.cephadm:No mon roles; fabricating mons 2023-10-21T12:48:43.301 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi057': '172.21.15.57', 'mon.smithi138': '172.21.15.138'} 2023-10-21T12:48:43.301 INFO:tasks.cephadm:Normalizing hostnames... 2023-10-21T12:48:43.302 DEBUG:teuthology.orchestra.run.smithi057:> sudo hostname $(hostname -s) 2023-10-21T12:48:43.338 DEBUG:teuthology.orchestra.run.smithi138:> sudo hostname $(hostname -s) 2023-10-21T12:48:43.366 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2023-10-21T12:48:43.366 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc 2023-10-21T12:48:43.514 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'f0804064d67a2a63dbabf1801ff452580a050cfc', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos8,DIST=centos8,MACHINE_SIZE=gigantic/53618/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.0.0-6820-gf0804064', 'node_name': '172.21.5.31+adami01', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos8,DIST=centos8,MACHINE_SIZE=gigantic', 'package_manager_version': '18.0.0-6820.gf0804064'}, 'url': 'https://2.chacra.ceph.com/r/ceph/main/f0804064d67a2a63dbabf1801ff452580a050cfc/centos/8/flavors/default/', 'distro_codename': None, 'modified': '2023-10-20 16:28:59.464025', 'distro_version': '8', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/main/f0804064d67a2a63dbabf1801ff452580a050cfc/centos/8/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}, {'status': 'ready', 'sha1': 'f0804064d67a2a63dbabf1801ff452580a050cfc', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos8,DIST=centos8,MACHINE_SIZE=gigantic/73518/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.0.0-6820-gf0804064', 'node_name': '172.21.2.4+braggi04', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos8,DIST=centos8,MACHINE_SIZE=gigantic', 'package_manager_version': '18.0.0-6820.gf0804064'}, 'url': 'https://1.chacra.ceph.com/r/ceph/main/f0804064d67a2a63dbabf1801ff452580a050cfc/centos/8/flavors/default/', 'distro_codename': None, 'modified': '2023-10-20 16:16:31.368616', 'distro_version': '8', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/main/f0804064d67a2a63dbabf1801ff452580a050cfc/centos/8/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2023-10-21T12:50:53.179 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 169, in _new_conn conn = connection.create_connection( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/connection.py", line 96, in create_connection raise err File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/connection.py", line 86, in create_connection sock.connect(sa) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/gevent/_socketcommon.py", line 607, in connect raise _SocketError(err, strerror(err)) TimeoutError: [Errno 110] Connection timed out During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 699, in urlopen httplib_response = self._make_request( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 382, in _make_request self._validate_conn(conn) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn conn.connect() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 353, in connect conn = self._new_conn() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 181, in _new_conn raise NewConnectionError( urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 110] Connection timed out During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/adapters.py", line 440, in send resp = conn.urlopen( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 755, in urlopen retries = retries.increment( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/retry.py", line 574, in increment raise MaxRetryError(_pool, url, error or ResponseError(cause)) urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='shaman.ceph.com', port=443): Max retries exceeded with url: /api/search?project=ceph&distros=centos%2F8%2Fx86_64&flavor=default&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/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/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 135, in download_cephadm _fetch_cephadm_from_chachra(ctx, config, cluster_name) File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 222, in _fetch_cephadm_from_chachra url = chacra.get_binary_url( File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/util/chacra.py", line 68, in get_binary_url resp = search(**s) File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/util/chacra.py", line 29, in search resp = requests.get(SHAMAN_SEARCH_URL, params=kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/api.py", line 75, in get return request('get', url, params=params, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/api.py", line 61, in request return session.request(method=method, url=url, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/sessions.py", line 529, in request resp = self.send(prep, **send_kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/sessions.py", line 645, in send r = adapter.send(request, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/adapters.py", line 519, in send raise ConnectionError(e, request=request) requests.exceptions.ConnectionError: HTTPSConnectionPool(host='shaman.ceph.com', port=443): Max retries exceeded with url: /api/search?project=ceph&distros=centos%2F8%2Fx86_64&flavor=default&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) 2023-10-21T12:50:53.181 INFO:tasks.cephadm:Teardown complete 2023-10-21T12:50:53.182 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 169, in _new_conn conn = connection.create_connection( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/connection.py", line 96, in create_connection raise err File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/connection.py", line 86, in create_connection sock.connect(sa) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/gevent/_socketcommon.py", line 607, in connect raise _SocketError(err, strerror(err)) TimeoutError: [Errno 110] Connection timed out During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 699, in urlopen httplib_response = self._make_request( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 382, in _make_request self._validate_conn(conn) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn conn.connect() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 353, in connect conn = self._new_conn() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 181, in _new_conn raise NewConnectionError( urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 110] Connection timed out During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/adapters.py", line 440, in send resp = conn.urlopen( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 755, in urlopen retries = retries.increment( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/retry.py", line 574, in increment raise MaxRetryError(_pool, url, error or ResponseError(cause)) urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='shaman.ceph.com', port=443): Max retries exceeded with url: /api/search?project=ceph&distros=centos%2F8%2Fx86_64&flavor=default&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/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/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 1720, 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_202b180cb047e798fb131047314a862593f45403/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/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 1635, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/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/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 135, in download_cephadm _fetch_cephadm_from_chachra(ctx, config, cluster_name) File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 222, in _fetch_cephadm_from_chachra url = chacra.get_binary_url( File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/util/chacra.py", line 68, in get_binary_url resp = search(**s) File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/util/chacra.py", line 29, in search resp = requests.get(SHAMAN_SEARCH_URL, params=kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/api.py", line 75, in get return request('get', url, params=params, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/api.py", line 61, in request return session.request(method=method, url=url, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/sessions.py", line 529, in request resp = self.send(prep, **send_kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/sessions.py", line 645, in send r = adapter.send(request, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/adapters.py", line 519, in send raise ConnectionError(e, request=request) requests.exceptions.ConnectionError: HTTPSConnectionPool(host='shaman.ceph.com', port=443): Max retries exceeded with url: /api/search?project=ceph&distros=centos%2F8%2Fx86_64&flavor=default&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) 2023-10-21T12:50:53.257 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=a8a538f54707451cb9a5c92ad3bd15a1 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 169, in _new_conn conn = connection.create_connection( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/connection.py", line 96, in create_connection raise err File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/connection.py", line 86, in create_connection sock.connect(sa) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/gevent/_socketcommon.py", line 607, in connect raise _SocketError(err, strerror(err)) TimeoutError: [Errno 110] Connection timed out During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 699, in urlopen httplib_response = self._make_request( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 382, in _make_request self._validate_conn(conn) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn conn.connect() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 353, in connect conn = self._new_conn() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connection.py", line 181, in _new_conn raise NewConnectionError( urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 110] Connection timed out During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/adapters.py", line 440, in send resp = conn.urlopen( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 755, in urlopen retries = retries.increment( File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/urllib3/util/retry.py", line 574, in increment raise MaxRetryError(_pool, url, error or ResponseError(cause)) urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='shaman.ceph.com', port=443): Max retries exceeded with url: /api/search?project=ceph&distros=centos%2F8%2Fx86_64&flavor=default&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/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/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 1720, 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_202b180cb047e798fb131047314a862593f45403/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/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 1635, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/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/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 135, in download_cephadm _fetch_cephadm_from_chachra(ctx, config, cluster_name) File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/cephadm.py", line 222, in _fetch_cephadm_from_chachra url = chacra.get_binary_url( File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/util/chacra.py", line 68, in get_binary_url resp = search(**s) File "/home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks/util/chacra.py", line 29, in search resp = requests.get(SHAMAN_SEARCH_URL, params=kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/api.py", line 75, in get return request('get', url, params=params, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/api.py", line 61, in request return session.request(method=method, url=url, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/sessions.py", line 529, in request resp = self.send(prep, **send_kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/sessions.py", line 645, in send r = adapter.send(request, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/virtualenv/lib/python3.8/site-packages/requests/adapters.py", line 519, in send raise ConnectionError(e, request=request) requests.exceptions.ConnectionError: HTTPSConnectionPool(host='shaman.ceph.com', port=443): Max retries exceeded with url: /api/search?project=ceph&distros=centos%2F8%2Fx86_64&flavor=default&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) 2023-10-21T12:50:53.264 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2023-10-21T12:50:53.275 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2023-10-21T12:50:53.295 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi057:/dev/vg_nvme/lv_1... 2023-10-21T12:50:53.295 DEBUG:teuthology.orchestra.run.smithi057:> sudo nvme disconnect -n lv_1 2023-10-21T12:50:53.429 INFO:teuthology.orchestra.run.smithi057.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-10-21T12:50:53.431 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:53.431 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi057:/dev/vg_nvme/lv_2... 2023-10-21T12:50:53.432 DEBUG:teuthology.orchestra.run.smithi057:> sudo nvme disconnect -n lv_2 2023-10-21T12:50:53.563 INFO:teuthology.orchestra.run.smithi057.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-10-21T12:50:53.565 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:53.566 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi057:/dev/vg_nvme/lv_3... 2023-10-21T12:50:53.566 DEBUG:teuthology.orchestra.run.smithi057:> sudo nvme disconnect -n lv_3 2023-10-21T12:50:53.685 INFO:teuthology.orchestra.run.smithi057.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-10-21T12:50:53.687 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:53.688 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi057:/dev/vg_nvme/lv_4... 2023-10-21T12:50:53.688 DEBUG:teuthology.orchestra.run.smithi057:> sudo nvme disconnect -n lv_4 2023-10-21T12:50:53.822 INFO:teuthology.orchestra.run.smithi057.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-10-21T12:50:53.823 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:53.824 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2023-10-21T12:50:53.824 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/scratch_devs 2023-10-21T12:50:53.859 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi138:/dev/vg_nvme/lv_1... 2023-10-21T12:50:53.860 DEBUG:teuthology.orchestra.run.smithi138:> sudo nvme disconnect -n lv_1 2023-10-21T12:50:53.988 INFO:teuthology.orchestra.run.smithi138.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-10-21T12:50:53.989 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:53.990 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi138:/dev/vg_nvme/lv_2... 2023-10-21T12:50:53.990 DEBUG:teuthology.orchestra.run.smithi138:> sudo nvme disconnect -n lv_2 2023-10-21T12:50:54.106 INFO:teuthology.orchestra.run.smithi138.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-10-21T12:50:54.107 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:54.108 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi138:/dev/vg_nvme/lv_3... 2023-10-21T12:50:54.108 DEBUG:teuthology.orchestra.run.smithi138:> sudo nvme disconnect -n lv_3 2023-10-21T12:50:54.228 INFO:teuthology.orchestra.run.smithi138.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-10-21T12:50:54.229 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:54.230 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi138:/dev/vg_nvme/lv_4... 2023-10-21T12:50:54.230 DEBUG:teuthology.orchestra.run.smithi138:> sudo nvme disconnect -n lv_4 2023-10-21T12:50:54.348 INFO:teuthology.orchestra.run.smithi138.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-10-21T12:50:54.349 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:54.350 DEBUG:teuthology.orchestra.run.smithi138:> set -ex 2023-10-21T12:50:54.350 DEBUG:teuthology.orchestra.run.smithi138:> sudo dd of=/scratch_devs 2023-10-21T12:50:54.379 DEBUG:teuthology.run_tasks:Unwinding manager clock 2023-10-21T12:50:54.388 INFO:teuthology.task.clock:Checking final clock skew... 2023-10-21T12:50:54.389 DEBUG:teuthology.orchestra.run.smithi057:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-10-21T12:50:54.392 DEBUG:teuthology.orchestra.run.smithi138:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-10-21T12:50:54.411 INFO:teuthology.orchestra.run.smithi057.stderr:bash: ntpq: command not found 2023-10-21T12:50:54.416 INFO:teuthology.orchestra.run.smithi057.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-10-21T12:50:54.416 INFO:teuthology.orchestra.run.smithi057.stdout:=============================================================================== 2023-10-21T12:50:54.417 INFO:teuthology.orchestra.run.smithi057.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 15 +1042us[+1053us] +/- 97ms 2023-10-21T12:50:54.417 INFO:teuthology.orchestra.run.smithi057.stdout:^* hv02.front.sepia.ceph.com 3 6 77 14 -1248us[-1237us] +/- 55ms 2023-10-21T12:50:54.417 INFO:teuthology.orchestra.run.smithi057.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 15 +868us[ +879us] +/- 70ms 2023-10-21T12:50:54.417 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:50:54.437 INFO:teuthology.orchestra.run.smithi138.stderr:bash: ntpq: command not found 2023-10-21T12:50:54.441 INFO:teuthology.orchestra.run.smithi138.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-10-21T12:50:54.441 INFO:teuthology.orchestra.run.smithi138.stdout:=============================================================================== 2023-10-21T12:50:54.441 INFO:teuthology.orchestra.run.smithi138.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 14 +1017us[+1017us] +/- 97ms 2023-10-21T12:50:54.442 INFO:teuthology.orchestra.run.smithi138.stdout:^* hv02.front.sepia.ceph.com 3 6 77 15 -1260us[-1106us] +/- 55ms 2023-10-21T12:50:54.442 INFO:teuthology.orchestra.run.smithi138.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 15 +865us[ +865us] +/- 70ms 2023-10-21T12:50:54.442 INFO:teuthology.orchestra.run.smithi138.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T12:50:54.443 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2023-10-21T12:50:54.455 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2023-10-21T12:50:54.456 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2023-10-21T12:50:54.464 DEBUG:teuthology.orchestra.run.smithi057:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2023-10-21T12:50:54.567 DEBUG:teuthology.orchestra.run.smithi138:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2023-10-21T12:50:54.654 DEBUG:teuthology.orchestra.run.smithi057:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-10-21T12:50:54.691 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:54.692 DEBUG:teuthology.orchestra.run.smithi138:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-10-21T12:50:54.724 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:54.724 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2023-10-21T12:50:54.734 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2023-10-21T12:50:54.742 INFO:teuthology.task.internal:Duration was 643.031403 seconds 2023-10-21T12:50:54.743 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2023-10-21T12:50:54.752 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2023-10-21T12:50:54.752 DEBUG:teuthology.orchestra.run.smithi057:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-10-21T12:50:54.755 DEBUG:teuthology.orchestra.run.smithi138:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-10-21T12:50:54.811 INFO:teuthology.orchestra.run.smithi057.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-10-21T12:50:54.812 INFO:teuthology.orchestra.run.smithi138.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-10-21T12:50:55.200 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2023-10-21T12:50:55.201 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi057.front.sepia.ceph.com 2023-10-21T12:50:55.201 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:50:55.231 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi138.front.sepia.ceph.com 2023-10-21T12:50:55.232 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:50:55.254 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2023-10-21T12:50:55.255 DEBUG:teuthology.orchestra.run.smithi057:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-10-21T12:50:55.273 DEBUG:teuthology.orchestra.run.smithi138:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-10-21T12:50:55.332 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2023-10-21T12:50:55.333 DEBUG:teuthology.orchestra.run.smithi057:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-10-21T12:50:55.335 DEBUG:teuthology.orchestra.run.smithi138:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-10-21T12:50:55.436 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2023-10-21T12:50:55.446 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2023-10-21T12:50:55.447 DEBUG:teuthology.orchestra.run.smithi057:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-10-21T12:50:55.480 DEBUG:teuthology.orchestra.run.smithi138:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-10-21T12:50:55.508 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2023-10-21T12:50:55.518 DEBUG:teuthology.orchestra.run.smithi057:> 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 2023-10-21T12:50:55.523 DEBUG:teuthology.orchestra.run.smithi138:> 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 2023-10-21T12:50:55.555 INFO:teuthology.orchestra.run.smithi057.stdout:kernel.core_pattern = core 2023-10-21T12:50:55.576 INFO:teuthology.orchestra.run.smithi138.stdout:kernel.core_pattern = core 2023-10-21T12:50:55.596 DEBUG:teuthology.orchestra.run.smithi057:> test -e /home/ubuntu/cephtest/archive/coredump 2023-10-21T12:50:55.649 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:55.650 DEBUG:teuthology.orchestra.run.smithi138:> test -e /home/ubuntu/cephtest/archive/coredump 2023-10-21T12:50:55.667 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T12:50:55.668 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2023-10-21T12:50:55.678 INFO:teuthology.task.internal:Transferring archived files... 2023-10-21T12:50:55.680 DEBUG:teuthology.misc:Transferring archived files from smithi057:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155/remote/smithi057 2023-10-21T12:50:55.681 DEBUG:teuthology.orchestra.run.smithi057:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-10-21T12:50:55.754 DEBUG:teuthology.misc:Transferring archived files from smithi138:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155/remote/smithi138 2023-10-21T12:50:55.755 DEBUG:teuthology.orchestra.run.smithi138:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-10-21T12:50:55.799 INFO:teuthology.task.internal:Removing archive directory... 2023-10-21T12:50:55.800 DEBUG:teuthology.orchestra.run.smithi057:> rm -rf -- /home/ubuntu/cephtest/archive 2023-10-21T12:50:55.803 DEBUG:teuthology.orchestra.run.smithi138:> rm -rf -- /home/ubuntu/cephtest/archive 2023-10-21T12:50:55.852 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2023-10-21T12:50:55.863 INFO:teuthology.task.internal:Not uploading archives. 2023-10-21T12:50:55.863 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2023-10-21T12:50:55.874 INFO:teuthology.task.internal:Tidying up after the test... 2023-10-21T12:50:55.874 DEBUG:teuthology.orchestra.run.smithi057:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-10-21T12:50:55.877 DEBUG:teuthology.orchestra.run.smithi138:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-10-21T12:50:55.897 INFO:teuthology.orchestra.run.smithi057.stdout: 393224 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Oct 21 12:50 /home/ubuntu/cephtest 2023-10-21T12:50:55.909 INFO:teuthology.orchestra.run.smithi138.stdout: 393224 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Oct 21 12:50 /home/ubuntu/cephtest 2023-10-21T12:50:55.911 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2023-10-21T12:50:55.921 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2023-10-21T12:50:55.940 INFO:teuthology.nuke:Checking targets against current locks 2023-10-21T12:50:55.968 DEBUG:teuthology.nuke:shortname: smithi057 2023-10-21T12:50:55.969 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-10-21T12:50:55.994 DEBUG:teuthology.nuke:shortname: smithi138 2023-10-21T12:50:55.994 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-10-21T12:50:55.998 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi057.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '8', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-10-21 12:31:12.451595', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDIhLQCmNSXQXTIcO3Wt354mqrOWdQHdfg0C1ZLgqi/8Cwb2mTBHQtUcodhnmY5cGMXEM/R8SnuUdLiAv+Or2gA='} 2023-10-21T12:50:56.021 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi138.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '8', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-10-21 12:31:12.450191', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJGifjees1aA5cpQTlySHWWumm53rQ3aeWLsUm2l81uQcMzesdnmFJLJ//MbKZAfaWh0DSK3abEeLshQzaWu1ms='} 2023-10-21T12:50:56.050 INFO:teuthology.orchestra.console.smithi057:Power off 2023-10-21T12:50:56.051 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-10-21T12:50:56.080 DEBUG:teuthology.orchestra.console.smithi057:power off output: Chassis Power Control: Down/Off 2023-10-21T12:50:56.081 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T12:50:56.098 INFO:teuthology.orchestra.console.smithi138:Power off 2023-10-21T12:50:56.098 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-10-21T12:50:56.109 DEBUG:teuthology.orchestra.console.smithi057:check power output: Chassis Power is on 2023-10-21T12:50:56.121 DEBUG:teuthology.orchestra.console.smithi138:power off output: Chassis Power Control: Down/Off 2023-10-21T12:50:56.121 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T12:50:56.146 DEBUG:teuthology.orchestra.console.smithi138:check power output: Chassis Power is on 2023-10-21T12:51:00.110 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T12:51:00.148 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T12:51:00.221 DEBUG:teuthology.orchestra.console.smithi057:check power output: Chassis Power is on 2023-10-21T12:51:00.260 DEBUG:teuthology.orchestra.console.smithi138:check power output: Chassis Power is on 2023-10-21T12:51:04.222 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T12:51:04.261 DEBUG:teuthology.orchestra.console.smithi138:pexpect command: ipmitool -H smithi138.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T12:51:04.335 DEBUG:teuthology.orchestra.console.smithi057:check power output: Chassis Power is on 2023-10-21T12:51:04.371 DEBUG:teuthology.orchestra.console.smithi138:check power output: Chassis Power is off 2023-10-21T12:51:04.472 INFO:teuthology.orchestra.console.smithi138:Power off completed 2023-10-21T12:51:08.339 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T12:51:08.449 DEBUG:teuthology.orchestra.console.smithi057:check power output: Chassis Power is off 2023-10-21T12:51:08.550 INFO:teuthology.orchestra.console.smithi057:Power off completed 2023-10-21T12:51:08.676 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_8.stream_container_tools 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 643.0314025878906 failure_reason: 'HTTPSConnectionPool(host=''shaman.ceph.com'', port=443): Max retries exceeded with url: /api/search?project=ceph&distros=centos%2F8%2Fx86_64&flavor=default&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError('': Failed to establish a new connection: [Errno 110] Connection timed out''))' owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=a8a538f54707451cb9a5c92ad3bd15a1 status: fail success: false 2023-10-21T12:51:08.677 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-10-21T12:51:08.760 INFO:teuthology.run:FAIL