2023-10-21T11:32:01.827 INFO:root:teuthology version: 0.0.1.dev201+g202b180 2023-10-21T11:32:01.828 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041 --name yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi --owner scheduled_yuriw@teuthology --description orch/cephadm/smoke-roleless/{0-distro/rhel_8.6_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --verbose -- /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041/orig.config.yaml 2023-10-21T11:32:01.865 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-10-21T11:32:01.959 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041 branch: main description: orch/cephadm/smoke-roleless/{0-distro/rhel_8.6_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: yweinste@redhat.com first_in_suite: false job_id: '7434041' 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: rhel os_version: '8.6' 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: smithi061.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= smithi148.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= 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:rhel8 --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 --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 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-21T11:32:01.959 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-21T11:32:01.960 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_f0804064d67a2a63dbabf1801ff452580a050cfc/qa/tasks 2023-10-21T11:32:01.960 INFO:teuthology.run_tasks:Running task internal.check_packages... 2023-10-21T11:32:01.962 INFO:teuthology.task.internal:Checking packages... 2023-10-21T11:32:01.987 INFO:teuthology.task.internal:Checking packages for os_type 'rhel', flavor 'default' and ceph hash 'f0804064d67a2a63dbabf1801ff452580a050cfc' 2023-10-21T11:32:01.987 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2023-10-21T11:32:01.988 INFO:teuthology.packaging:ref: None 2023-10-21T11:32:01.988 INFO:teuthology.packaging:tag: None 2023-10-21T11:32:01.988 INFO:teuthology.packaging:branch: main 2023-10-21T11:32:01.989 INFO:teuthology.packaging:sha1: f0804064d67a2a63dbabf1801ff452580a050cfc 2023-10-21T11:32:01.989 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-21T11:32:02.346 INFO:teuthology.task.internal:Found packages for ceph version 18.0.0-6820.gf0804064 2023-10-21T11:32:02.346 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2023-10-21T11:32:02.353 INFO:teuthology.task.internal:no buildpackages task found 2023-10-21T11:32:02.353 INFO:teuthology.run_tasks:Running task internal.save_config... 2023-10-21T11:32:02.376 INFO:teuthology.task.internal:Saving configuration 2023-10-21T11:32:02.391 INFO:teuthology.run_tasks:Running task internal.check_lock... 2023-10-21T11:32:02.397 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-10-21T11:32:02.423 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi061.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-10-21 11:26:56.537098', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-10-21T11:32:02.448 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi148.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-10-21 11:26:56.538883', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-10-21T11:32:02.449 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2023-10-21T11:32:02.455 INFO:teuthology.task.internal:roles: ubuntu@smithi061.front.sepia.ceph.com - ['host.a', 'client.0'] 2023-10-21T11:32:02.455 INFO:teuthology.task.internal:roles: ubuntu@smithi148.front.sepia.ceph.com - ['host.b', 'client.1'] 2023-10-21T11:32:02.455 INFO:teuthology.run_tasks:Running task console_log... 2023-10-21T11:32:02.537 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f0f8369daf0>, signals=[15]) 2023-10-21T11:32:02.539 INFO:teuthology.run_tasks:Running task internal.connect... 2023-10-21T11:32:02.547 INFO:teuthology.task.internal:Opening connections... 2023-10-21T11:32:02.548 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi061.front.sepia.ceph.com 2023-10-21T11:32:02.550 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi061.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T11:32:02.619 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi148.front.sepia.ceph.com 2023-10-21T11:32:02.620 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi148.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T11:32:02.687 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2023-10-21T11:32:02.694 DEBUG:teuthology.orchestra.run.smithi061:> uname -m 2023-10-21T11:32:02.716 INFO:teuthology.orchestra.run.smithi061.stdout:x86_64 2023-10-21T11:32:02.716 DEBUG:teuthology.orchestra.run.smithi061:> cat /etc/os-release 2023-10-21T11:32:02.776 INFO:teuthology.orchestra.run.smithi061.stdout:NAME="Red Hat Enterprise Linux" 2023-10-21T11:32:02.776 INFO:teuthology.orchestra.run.smithi061.stdout:VERSION="8.6 (Ootpa)" 2023-10-21T11:32:02.776 INFO:teuthology.orchestra.run.smithi061.stdout:ID="rhel" 2023-10-21T11:32:02.776 INFO:teuthology.orchestra.run.smithi061.stdout:ID_LIKE="fedora" 2023-10-21T11:32:02.777 INFO:teuthology.orchestra.run.smithi061.stdout:VERSION_ID="8.6" 2023-10-21T11:32:02.777 INFO:teuthology.orchestra.run.smithi061.stdout:PLATFORM_ID="platform:el8" 2023-10-21T11:32:02.777 INFO:teuthology.orchestra.run.smithi061.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-10-21T11:32:02.777 INFO:teuthology.orchestra.run.smithi061.stdout:ANSI_COLOR="0;31" 2023-10-21T11:32:02.778 INFO:teuthology.orchestra.run.smithi061.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-10-21T11:32:02.778 INFO:teuthology.orchestra.run.smithi061.stdout:HOME_URL="https://www.redhat.com/" 2023-10-21T11:32:02.778 INFO:teuthology.orchestra.run.smithi061.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-10-21T11:32:02.778 INFO:teuthology.orchestra.run.smithi061.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-10-21T11:32:02.779 INFO:teuthology.orchestra.run.smithi061.stdout: 2023-10-21T11:32:02.779 INFO:teuthology.orchestra.run.smithi061.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-10-21T11:32:02.779 INFO:teuthology.orchestra.run.smithi061.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-10-21T11:32:02.779 INFO:teuthology.orchestra.run.smithi061.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-10-21T11:32:02.779 INFO:teuthology.orchestra.run.smithi061.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-10-21T11:32:02.780 INFO:teuthology.lock.ops:Updating smithi061.front.sepia.ceph.com on lock server 2023-10-21T11:32:02.806 DEBUG:teuthology.orchestra.run.smithi148:> uname -m 2023-10-21T11:32:02.827 INFO:teuthology.orchestra.run.smithi148.stdout:x86_64 2023-10-21T11:32:02.828 DEBUG:teuthology.orchestra.run.smithi148:> cat /etc/os-release 2023-10-21T11:32:02.887 INFO:teuthology.orchestra.run.smithi148.stdout:NAME="Red Hat Enterprise Linux" 2023-10-21T11:32:02.888 INFO:teuthology.orchestra.run.smithi148.stdout:VERSION="8.6 (Ootpa)" 2023-10-21T11:32:02.888 INFO:teuthology.orchestra.run.smithi148.stdout:ID="rhel" 2023-10-21T11:32:02.888 INFO:teuthology.orchestra.run.smithi148.stdout:ID_LIKE="fedora" 2023-10-21T11:32:02.888 INFO:teuthology.orchestra.run.smithi148.stdout:VERSION_ID="8.6" 2023-10-21T11:32:02.888 INFO:teuthology.orchestra.run.smithi148.stdout:PLATFORM_ID="platform:el8" 2023-10-21T11:32:02.889 INFO:teuthology.orchestra.run.smithi148.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-10-21T11:32:02.889 INFO:teuthology.orchestra.run.smithi148.stdout:ANSI_COLOR="0;31" 2023-10-21T11:32:02.889 INFO:teuthology.orchestra.run.smithi148.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-10-21T11:32:02.889 INFO:teuthology.orchestra.run.smithi148.stdout:HOME_URL="https://www.redhat.com/" 2023-10-21T11:32:02.890 INFO:teuthology.orchestra.run.smithi148.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-10-21T11:32:02.890 INFO:teuthology.orchestra.run.smithi148.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-10-21T11:32:02.890 INFO:teuthology.orchestra.run.smithi148.stdout: 2023-10-21T11:32:02.890 INFO:teuthology.orchestra.run.smithi148.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-10-21T11:32:02.890 INFO:teuthology.orchestra.run.smithi148.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-10-21T11:32:02.891 INFO:teuthology.orchestra.run.smithi148.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-10-21T11:32:02.891 INFO:teuthology.orchestra.run.smithi148.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-10-21T11:32:02.891 INFO:teuthology.lock.ops:Updating smithi148.front.sepia.ceph.com on lock server 2023-10-21T11:32:02.915 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2023-10-21T11:32:02.924 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2023-10-21T11:32:02.929 INFO:teuthology.task.internal:Checking for old test directory... 2023-10-21T11:32:02.930 DEBUG:teuthology.orchestra.run.smithi061:> test '!' -e /home/ubuntu/cephtest 2023-10-21T11:32:02.933 DEBUG:teuthology.orchestra.run.smithi148:> test '!' -e /home/ubuntu/cephtest 2023-10-21T11:32:02.951 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2023-10-21T11:32:02.957 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2023-10-21T11:32:02.957 DEBUG:teuthology.orchestra.run.smithi061:> test -z $(ls -A /var/lib/ceph) 2023-10-21T11:32:02.992 DEBUG:teuthology.orchestra.run.smithi148:> test -z $(ls -A /var/lib/ceph) 2023-10-21T11:32:03.034 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2023-10-21T11:32:03.091 INFO:teuthology.run_tasks:Running task kernel... 2023-10-21T11:32:03.107 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2023-10-21T11:32:03.108 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2023-10-21T11:32:03.109 DEBUG:teuthology.orchestra.run.smithi061:> test -f /run/.containerenv -o -f /.dockerenv 2023-10-21T11:32:03.110 DEBUG:teuthology.orchestra.run.smithi148:> test -f /run/.containerenv -o -f /.dockerenv 2023-10-21T11:32:03.129 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:32:03.130 DEBUG:teuthology.orchestra.run.smithi148:> uname -r 2023-10-21T11:32:03.131 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:32:03.132 DEBUG:teuthology.orchestra.run.smithi061:> uname -r 2023-10-21T11:32:03.190 INFO:teuthology.orchestra.run.smithi148.stdout:4.18.0-372.9.1.el8.x86_64 2023-10-21T11:32:03.190 INFO:teuthology.task.kernel:Running kernel on smithi148: 4.18.0-372.9.1.el8.x86_64 2023-10-21T11:32:03.191 DEBUG:teuthology.orchestra.run.smithi148:> sudo yum install -y kernel 2023-10-21T11:32:03.192 INFO:teuthology.orchestra.run.smithi061.stdout:4.18.0-372.9.1.el8.x86_64 2023-10-21T11:32:03.192 INFO:teuthology.task.kernel:Running kernel on smithi061: 4.18.0-372.9.1.el8.x86_64 2023-10-21T11:32:03.193 DEBUG:teuthology.orchestra.run.smithi061:> sudo yum install -y kernel 2023-10-21T11:32:04.404 INFO:teuthology.orchestra.run.smithi061.stdout:Updating Subscription Management repositories. 2023-10-21T11:32:04.405 INFO:teuthology.orchestra.run.smithi061.stdout:Unable to read consumer identity 2023-10-21T11:32:04.424 INFO:teuthology.orchestra.run.smithi148.stdout:Updating Subscription Management repositories. 2023-10-21T11:32:04.424 INFO:teuthology.orchestra.run.smithi148.stdout:Unable to read consumer identity 2023-10-21T11:32:05.841 INFO:teuthology.orchestra.run.smithi148.stdout:Copr repo for python3-asyncssh owned by ceph 24 kB/s | 3.5 kB 00:00 2023-10-21T11:32:05.849 INFO:teuthology.orchestra.run.smithi061.stdout:Copr repo for python3-asyncssh owned by ceph 21 kB/s | 3.5 kB 00:00 2023-10-21T11:32:06.575 INFO:teuthology.orchestra.run.smithi148.stdout:Extra Packages for Enterprise Linux 24 MB/s | 16 MB 00:00 2023-10-21T11:32:06.767 INFO:teuthology.orchestra.run.smithi061.stdout:Extra Packages for Enterprise Linux 18 MB/s | 16 MB 00:00 2023-10-21T11:32:10.083 INFO:teuthology.orchestra.run.smithi148.stdout:lab-extras 284 kB/s | 24 kB 00:00 2023-10-21T11:32:10.475 INFO:teuthology.orchestra.run.smithi061.stdout:lab-extras 444 kB/s | 24 kB 00:00 2023-10-21T11:32:10.770 INFO:teuthology.orchestra.run.smithi148.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-10-21T11:32:10.817 INFO:teuthology.orchestra.run.smithi148.stdout:Dependencies resolved. 2023-10-21T11:32:10.817 INFO:teuthology.orchestra.run.smithi148.stdout:Nothing to do. 2023-10-21T11:32:10.818 INFO:teuthology.orchestra.run.smithi148.stdout:Complete! 2023-10-21T11:32:10.947 DEBUG:teuthology.orchestra.run.smithi148:> echo no | sudo yum reinstall kernel || true 2023-10-21T11:32:11.211 INFO:teuthology.orchestra.run.smithi061.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-10-21T11:32:11.265 INFO:teuthology.orchestra.run.smithi061.stdout:Dependencies resolved. 2023-10-21T11:32:11.267 INFO:teuthology.orchestra.run.smithi061.stdout:Nothing to do. 2023-10-21T11:32:11.267 INFO:teuthology.orchestra.run.smithi061.stdout:Complete! 2023-10-21T11:32:11.280 INFO:teuthology.orchestra.run.smithi148.stdout:Updating Subscription Management repositories. 2023-10-21T11:32:11.280 INFO:teuthology.orchestra.run.smithi148.stdout:Unable to read consumer identity 2023-10-21T11:32:11.407 DEBUG:teuthology.orchestra.run.smithi061:> echo no | sudo yum reinstall kernel || true 2023-10-21T11:32:11.540 INFO:teuthology.orchestra.run.smithi148.stdout:Last metadata expiration check: 0:00:01 ago on Sat 21 Oct 2023 11:32:10 AM UTC. 2023-10-21T11:32:11.589 INFO:teuthology.orchestra.run.smithi148.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-10-21T11:32:11.634 INFO:teuthology.orchestra.run.smithi148.stderr:Error: No packages marked for reinstall. 2023-10-21T11:32:11.681 DEBUG:teuthology.orchestra.run.smithi148:> sudo yum reinstall -y kernel || true 2023-10-21T11:32:11.756 INFO:teuthology.orchestra.run.smithi061.stdout:Updating Subscription Management repositories. 2023-10-21T11:32:11.756 INFO:teuthology.orchestra.run.smithi061.stdout:Unable to read consumer identity 2023-10-21T11:32:12.011 INFO:teuthology.orchestra.run.smithi148.stdout:Updating Subscription Management repositories. 2023-10-21T11:32:12.011 INFO:teuthology.orchestra.run.smithi148.stdout:Unable to read consumer identity 2023-10-21T11:32:12.029 INFO:teuthology.orchestra.run.smithi061.stdout:Last metadata expiration check: 0:00:02 ago on Sat 21 Oct 2023 11:32:10 AM UTC. 2023-10-21T11:32:12.075 INFO:teuthology.orchestra.run.smithi061.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-10-21T11:32:12.105 INFO:teuthology.orchestra.run.smithi061.stderr:Error: No packages marked for reinstall. 2023-10-21T11:32:12.152 DEBUG:teuthology.orchestra.run.smithi061:> sudo yum reinstall -y kernel || true 2023-10-21T11:32:12.263 INFO:teuthology.orchestra.run.smithi148.stdout:Last metadata expiration check: 0:00:02 ago on Sat 21 Oct 2023 11:32:10 AM UTC. 2023-10-21T11:32:12.302 INFO:teuthology.orchestra.run.smithi148.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-10-21T11:32:12.332 INFO:teuthology.orchestra.run.smithi148.stderr:Error: No packages marked for reinstall. 2023-10-21T11:32:12.379 DEBUG:teuthology.orchestra.run.smithi148:> rpm -q kernel | sort -rV | head -n 1 2023-10-21T11:32:12.459 INFO:teuthology.orchestra.run.smithi148.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-10-21T11:32:12.459 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-10-21T11:32:12.459 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-10-21T11:32:12.460 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2023-10-21T11:32:12.460 DEBUG:teuthology.orchestra.run.smithi148:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-10-21T11:32:12.488 INFO:teuthology.orchestra.run.smithi148.stdout:ttyS1 2023-10-21T11:32:12.502 INFO:teuthology.orchestra.run.smithi061.stdout:Updating Subscription Management repositories. 2023-10-21T11:32:12.502 INFO:teuthology.orchestra.run.smithi061.stdout:Unable to read consumer identity 2023-10-21T11:32:12.508 DEBUG:teuthology.parallel:result is None 2023-10-21T11:32:12.769 INFO:teuthology.orchestra.run.smithi061.stdout:Last metadata expiration check: 0:00:02 ago on Sat 21 Oct 2023 11:32:10 AM UTC. 2023-10-21T11:32:12.814 INFO:teuthology.orchestra.run.smithi061.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-10-21T11:32:12.832 INFO:teuthology.orchestra.run.smithi061.stderr:Error: No packages marked for reinstall. 2023-10-21T11:32:12.882 DEBUG:teuthology.orchestra.run.smithi061:> rpm -q kernel | sort -rV | head -n 1 2023-10-21T11:32:12.966 INFO:teuthology.orchestra.run.smithi061.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-10-21T11:32:12.966 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-10-21T11:32:12.967 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-10-21T11:32:12.967 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2023-10-21T11:32:12.967 DEBUG:teuthology.orchestra.run.smithi061:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-10-21T11:32:12.994 INFO:teuthology.orchestra.run.smithi061.stdout:ttyS1 2023-10-21T11:32:13.012 DEBUG:teuthology.parallel:result is None 2023-10-21T11:32:13.012 INFO:teuthology.run_tasks:Running task internal.base... 2023-10-21T11:32:13.019 INFO:teuthology.task.internal:Creating test directory... 2023-10-21T11:32:13.020 DEBUG:teuthology.orchestra.run.smithi061:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-10-21T11:32:13.054 DEBUG:teuthology.orchestra.run.smithi148:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-10-21T11:32:13.073 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2023-10-21T11:32:13.079 INFO:teuthology.run_tasks:Running task internal.archive... 2023-10-21T11:32:13.089 INFO:teuthology.task.internal:Creating archive directory... 2023-10-21T11:32:13.090 DEBUG:teuthology.orchestra.run.smithi061:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-10-21T11:32:13.111 DEBUG:teuthology.orchestra.run.smithi148:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-10-21T11:32:13.140 INFO:teuthology.run_tasks:Running task internal.coredump... 2023-10-21T11:32:13.148 INFO:teuthology.task.internal:Enabling coredump saving... 2023-10-21T11:32:13.149 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:32:13.179 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:32:13.205 INFO:teuthology.orchestra.run.smithi061.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-10-21T11:32:13.216 INFO:teuthology.orchestra.run.smithi061.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-10-21T11:32:13.221 INFO:teuthology.orchestra.run.smithi148.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-10-21T11:32:13.232 INFO:teuthology.orchestra.run.smithi148.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-10-21T11:32:13.233 INFO:teuthology.run_tasks:Running task internal.sudo... 2023-10-21T11:32:13.240 INFO:teuthology.task.internal:Configuring sudo... 2023-10-21T11:32:13.241 DEBUG:teuthology.orchestra.run.smithi061:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-10-21T11:32:13.260 DEBUG:teuthology.orchestra.run.smithi148:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-10-21T11:32:13.302 INFO:teuthology.run_tasks:Running task internal.syslog... 2023-10-21T11:32:13.311 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2023-10-21T11:32:13.311 DEBUG:teuthology.orchestra.run.smithi061:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-10-21T11:32:13.328 DEBUG:teuthology.orchestra.run.smithi148:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-10-21T11:32:13.358 DEBUG:teuthology.orchestra.run.smithi061:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-10-21T11:32:13.429 DEBUG:teuthology.orchestra.run.smithi061:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-10-21T11:32:13.478 DEBUG:teuthology.orchestra.run.smithi061:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-10-21T11:32:13.563 DEBUG:teuthology.orchestra.run.smithi061:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-10-21T11:32:13.604 DEBUG:teuthology.orchestra.run.smithi061:> set -ex 2023-10-21T11:32:13.605 DEBUG:teuthology.orchestra.run.smithi061:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-10-21T11:32:13.698 DEBUG:teuthology.orchestra.run.smithi148:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-10-21T11:32:13.743 DEBUG:teuthology.orchestra.run.smithi148:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-10-21T11:32:13.798 DEBUG:teuthology.orchestra.run.smithi148:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-10-21T11:32:13.886 DEBUG:teuthology.orchestra.run.smithi148:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-10-21T11:32:13.928 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2023-10-21T11:32:13.928 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-10-21T11:32:13.995 DEBUG:teuthology.orchestra.run.smithi061:> sudo service rsyslog restart 2023-10-21T11:32:13.998 DEBUG:teuthology.orchestra.run.smithi148:> sudo service rsyslog restart 2023-10-21T11:32:14.052 INFO:teuthology.orchestra.run.smithi061.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-10-21T11:32:14.089 INFO:teuthology.orchestra.run.smithi148.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-10-21T11:32:14.496 INFO:teuthology.run_tasks:Running task internal.timer... 2023-10-21T11:32:14.505 INFO:teuthology.task.internal:Starting timer... 2023-10-21T11:32:14.505 INFO:teuthology.run_tasks:Running task pcp... 2023-10-21T11:32:14.515 INFO:teuthology.run_tasks:Running task selinux... 2023-10-21T11:32:14.523 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2023-10-21T11:32:14.524 DEBUG:teuthology.orchestra.run.smithi061:> sudo service auditd rotate 2023-10-21T11:32:14.595 INFO:teuthology.orchestra.run.smithi061.stdout:Rotating logs: 2023-10-21T11:32:14.597 DEBUG:teuthology.orchestra.run.smithi148:> sudo service auditd rotate 2023-10-21T11:32:14.658 INFO:teuthology.orchestra.run.smithi148.stdout:Rotating logs: 2023-10-21T11:32:14.659 DEBUG:teuthology.task.selinux:Getting current SELinux state 2023-10-21T11:32:14.660 DEBUG:teuthology.orchestra.run.smithi061:> /usr/sbin/getenforce 2023-10-21T11:32:14.687 INFO:teuthology.orchestra.run.smithi061.stdout:Permissive 2023-10-21T11:32:14.687 DEBUG:teuthology.orchestra.run.smithi148:> /usr/sbin/getenforce 2023-10-21T11:32:14.710 INFO:teuthology.orchestra.run.smithi148.stdout:Permissive 2023-10-21T11:32:14.710 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi061.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi148.front.sepia.ceph.com': 'permissive'} 2023-10-21T11:32:14.711 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:32:14.756 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:32:14.757 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:32:14.784 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:32:14.784 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2023-10-21T11:32:14.785 DEBUG:teuthology.orchestra.run.smithi061:> sudo /usr/sbin/setenforce permissive 2023-10-21T11:32:14.826 DEBUG:teuthology.orchestra.run.smithi148:> sudo /usr/sbin/setenforce permissive 2023-10-21T11:32:14.858 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2023-10-21T11:32:14.868 INFO:teuthology.repo_utils:/home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main was just updated or references a specific commit; assuming it is current 2023-10-21T11:32:14.869 INFO:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2023-10-21T11:32:14.891 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-21T11:32:14.892 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi061.front.sepia.ceph.com,smithi148.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2023-10-21T11:41:10.145 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi061.front.sepia.ceph.com'), Remote(name='ubuntu@smithi148.front.sepia.ceph.com')] 2023-10-21T11:41:10.146 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi061.front.sepia.ceph.com' 2023-10-21T11:41:10.147 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi061.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T11:41:10.217 DEBUG:teuthology.orchestra.run.smithi061:> true 2023-10-21T11:41:10.284 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi061.front.sepia.ceph.com' 2023-10-21T11:41:10.285 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi148.front.sepia.ceph.com' 2023-10-21T11:41:10.285 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi148.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-10-21T11:41:10.353 DEBUG:teuthology.orchestra.run.smithi148:> true 2023-10-21T11:41:10.420 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi148.front.sepia.ceph.com' 2023-10-21T11:41:10.420 INFO:teuthology.run_tasks:Running task clock... 2023-10-21T11:41:10.431 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2023-10-21T11:41:10.431 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-10-21T11:41:10.432 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:41:10.434 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-10-21T11:41:10.435 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:41:10.466 INFO:teuthology.orchestra.run.smithi061.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-10-21T11:41:10.481 INFO:teuthology.orchestra.run.smithi061.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-10-21T11:41:10.492 INFO:teuthology.orchestra.run.smithi148.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-10-21T11:41:10.506 INFO:teuthology.orchestra.run.smithi148.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-10-21T11:41:10.559 INFO:teuthology.orchestra.run.smithi061.stderr:sudo: ntpd: command not found 2023-10-21T11:41:10.571 INFO:teuthology.orchestra.run.smithi061.stdout:506 Cannot talk to daemon 2023-10-21T11:41:10.583 INFO:teuthology.orchestra.run.smithi148.stderr:sudo: ntpd: command not found 2023-10-21T11:41:10.587 INFO:teuthology.orchestra.run.smithi061.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-10-21T11:41:10.594 INFO:teuthology.orchestra.run.smithi148.stdout:506 Cannot talk to daemon 2023-10-21T11:41:10.602 INFO:teuthology.orchestra.run.smithi061.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-10-21T11:41:10.608 INFO:teuthology.orchestra.run.smithi148.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-10-21T11:41:10.623 INFO:teuthology.orchestra.run.smithi148.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-10-21T11:41:10.666 INFO:teuthology.orchestra.run.smithi061.stderr:bash: ntpq: command not found 2023-10-21T11:41:10.670 INFO:teuthology.orchestra.run.smithi061.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-10-21T11:41:10.670 INFO:teuthology.orchestra.run.smithi061.stdout:=============================================================================== 2023-10-21T11:41:10.670 INFO:teuthology.orchestra.run.smithi061.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:41:10.670 INFO:teuthology.orchestra.run.smithi061.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:41:10.671 INFO:teuthology.orchestra.run.smithi061.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:41:10.671 INFO:teuthology.orchestra.run.smithi061.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:41:10.694 INFO:teuthology.orchestra.run.smithi148.stderr:bash: ntpq: command not found 2023-10-21T11:41:10.698 INFO:teuthology.orchestra.run.smithi148.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-10-21T11:41:10.699 INFO:teuthology.orchestra.run.smithi148.stdout:=============================================================================== 2023-10-21T11:41:10.699 INFO:teuthology.orchestra.run.smithi148.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:41:10.699 INFO:teuthology.orchestra.run.smithi148.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:41:10.699 INFO:teuthology.orchestra.run.smithi148.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:41:10.699 INFO:teuthology.orchestra.run.smithi148.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:41:10.700 INFO:teuthology.run_tasks:Running task pexec... 2023-10-21T11:41:10.714 INFO:teuthology.task.pexec:Executing custom commands... 2023-10-21T11:41:10.717 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi061.front.sepia.ceph.com 2023-10-21T11:41:10.718 DEBUG:teuthology.orchestra.run.smithi061:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-10-21T11:41:10.718 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi148.front.sepia.ceph.com 2023-10-21T11:41:10.718 DEBUG:teuthology.orchestra.run.smithi148:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-10-21T11:41:11.109 INFO:teuthology.orchestra.run.smithi061.stdout:Updating Subscription Management repositories. 2023-10-21T11:41:11.111 INFO:teuthology.orchestra.run.smithi148.stdout:Updating Subscription Management repositories. 2023-10-21T11:41:11.928 INFO:teuthology.orchestra.run.smithi148.stdout:Last metadata expiration check: 0:01:36 ago on Sat 21 Oct 2023 11:39:35 AM UTC. 2023-10-21T11:41:11.968 INFO:teuthology.orchestra.run.smithi061.stdout:Last metadata expiration check: 0:01:25 ago on Sat 21 Oct 2023 11:39:46 AM UTC. 2023-10-21T11:41:13.645 INFO:teuthology.orchestra.run.smithi148.stdout:Dependencies resolved. 2023-10-21T11:41:13.646 INFO:teuthology.orchestra.run.smithi148.stdout:================================================================================ 2023-10-21T11:41:13.646 INFO:teuthology.orchestra.run.smithi148.stdout: Package Architecture Version Repository Size 2023-10-21T11:41:13.646 INFO:teuthology.orchestra.run.smithi148.stdout:================================================================================ 2023-10-21T11:41:13.647 INFO:teuthology.orchestra.run.smithi148.stdout:Resetting modules: 2023-10-21T11:41:13.647 INFO:teuthology.orchestra.run.smithi148.stdout: container-tools 2023-10-21T11:41:13.647 INFO:teuthology.orchestra.run.smithi148.stdout: 2023-10-21T11:41:13.647 INFO:teuthology.orchestra.run.smithi148.stdout:Transaction Summary 2023-10-21T11:41:13.647 INFO:teuthology.orchestra.run.smithi148.stdout:================================================================================ 2023-10-21T11:41:13.648 INFO:teuthology.orchestra.run.smithi148.stdout: 2023-10-21T11:41:13.968 INFO:teuthology.orchestra.run.smithi061.stdout:Dependencies resolved. 2023-10-21T11:41:13.969 INFO:teuthology.orchestra.run.smithi061.stdout:================================================================================ 2023-10-21T11:41:13.969 INFO:teuthology.orchestra.run.smithi061.stdout: Package Architecture Version Repository Size 2023-10-21T11:41:13.970 INFO:teuthology.orchestra.run.smithi061.stdout:================================================================================ 2023-10-21T11:41:13.970 INFO:teuthology.orchestra.run.smithi061.stdout:Resetting modules: 2023-10-21T11:41:13.970 INFO:teuthology.orchestra.run.smithi061.stdout: container-tools 2023-10-21T11:41:13.970 INFO:teuthology.orchestra.run.smithi061.stdout: 2023-10-21T11:41:13.970 INFO:teuthology.orchestra.run.smithi061.stdout:Transaction Summary 2023-10-21T11:41:13.971 INFO:teuthology.orchestra.run.smithi061.stdout:================================================================================ 2023-10-21T11:41:13.971 INFO:teuthology.orchestra.run.smithi061.stdout: 2023-10-21T11:41:14.616 INFO:teuthology.orchestra.run.smithi148.stdout:Last metadata expiration check: 0:01:39 ago on Sat 21 Oct 2023 11:39:35 AM UTC. 2023-10-21T11:41:14.996 INFO:teuthology.orchestra.run.smithi061.stdout:Last metadata expiration check: 0:01:28 ago on Sat 21 Oct 2023 11:39:46 AM UTC. 2023-10-21T11:41:16.959 INFO:teuthology.orchestra.run.smithi148.stdout:Complete! 2023-10-21T11:41:17.407 INFO:teuthology.orchestra.run.smithi148.stdout:Updating Subscription Management repositories. 2023-10-21T11:41:17.494 INFO:teuthology.orchestra.run.smithi061.stdout:Complete! 2023-10-21T11:41:17.978 INFO:teuthology.orchestra.run.smithi061.stdout:Updating Subscription Management repositories. 2023-10-21T11:41:18.244 INFO:teuthology.orchestra.run.smithi148.stdout:Last metadata expiration check: 0:01:42 ago on Sat 21 Oct 2023 11:39:35 AM UTC. 2023-10-21T11:41:18.815 INFO:teuthology.orchestra.run.smithi061.stdout:Last metadata expiration check: 0:01:32 ago on Sat 21 Oct 2023 11:39:46 AM UTC. 2023-10-21T11:41:20.102 INFO:teuthology.orchestra.run.smithi148.stdout:Dependencies resolved. 2023-10-21T11:41:20.196 INFO:teuthology.orchestra.run.smithi148.stdout:============================================================================================================ 2023-10-21T11:41:20.196 INFO:teuthology.orchestra.run.smithi148.stdout: Package Arch Version Repository Size 2023-10-21T11:41:20.196 INFO:teuthology.orchestra.run.smithi148.stdout:============================================================================================================ 2023-10-21T11:41:20.196 INFO:teuthology.orchestra.run.smithi148.stdout:Installing group/module packages: 2023-10-21T11:41:20.197 INFO:teuthology.orchestra.run.smithi148.stdout: buildah x86_64 1:1.26.2-1.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 8.0 M 2023-10-21T11:41:20.197 INFO:teuthology.orchestra.run.smithi148.stdout: cockpit-podman noarch 49.1-1.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 524 k 2023-10-21T11:41:20.197 INFO:teuthology.orchestra.run.smithi148.stdout: crun x86_64 1.5-1.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 213 k 2023-10-21T11:41:20.197 INFO:teuthology.orchestra.run.smithi148.stdout: python3-podman noarch 4.0.1-1.module+el8.6.0+16837+85b82211 rhel-8-for-x86_64-appstream-rpms 149 k 2023-10-21T11:41:20.197 INFO:teuthology.orchestra.run.smithi148.stdout: skopeo x86_64 2:1.9.1-1.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 7.0 M 2023-10-21T11:41:20.198 INFO:teuthology.orchestra.run.smithi148.stdout: toolbox x86_64 0.0.99.3-0.6.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 2.2 M 2023-10-21T11:41:20.198 INFO:teuthology.orchestra.run.smithi148.stdout: udica noarch 0.2.6-4.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 49 k 2023-10-21T11:41:20.198 INFO:teuthology.orchestra.run.smithi148.stdout:Installing dependencies: 2023-10-21T11:41:20.198 INFO:teuthology.orchestra.run.smithi148.stdout: python3-pytoml noarch 0.1.14-5.git7dea353.el8 rhel-8-for-x86_64-appstream-rpms 25 k 2023-10-21T11:41:20.198 INFO:teuthology.orchestra.run.smithi148.stdout: python3-pyxdg noarch 0.25-16.el8 rhel-8-for-x86_64-appstream-rpms 94 k 2023-10-21T11:41:20.199 INFO:teuthology.orchestra.run.smithi148.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-10-21T11:41:20.199 INFO:teuthology.orchestra.run.smithi148.stdout:Installing module profiles: 2023-10-21T11:41:20.199 INFO:teuthology.orchestra.run.smithi148.stdout: container-tools/common 2023-10-21T11:41:20.199 INFO:teuthology.orchestra.run.smithi148.stdout: 2023-10-21T11:41:20.199 INFO:teuthology.orchestra.run.smithi148.stdout:Enabling module streams: 2023-10-21T11:41:20.199 INFO:teuthology.orchestra.run.smithi148.stdout: container-tools rhel8 2023-10-21T11:41:20.200 INFO:teuthology.orchestra.run.smithi148.stdout: 2023-10-21T11:41:20.200 INFO:teuthology.orchestra.run.smithi148.stdout:Transaction Summary 2023-10-21T11:41:20.200 INFO:teuthology.orchestra.run.smithi148.stdout:============================================================================================================ 2023-10-21T11:41:20.200 INFO:teuthology.orchestra.run.smithi148.stdout:Install 10 Packages 2023-10-21T11:41:20.200 INFO:teuthology.orchestra.run.smithi148.stdout: 2023-10-21T11:41:20.202 INFO:teuthology.orchestra.run.smithi148.stdout:Total download size: 18 M 2023-10-21T11:41:20.202 INFO:teuthology.orchestra.run.smithi148.stdout:Installed size: 65 M 2023-10-21T11:41:20.202 INFO:teuthology.orchestra.run.smithi148.stdout:Downloading Packages: 2023-10-21T11:41:20.284 INFO:teuthology.orchestra.run.smithi148.stdout:(1/10): yajl-2.1.0-10.el8.x86_64.rpm 474 kB/s | 41 kB 00:00 2023-10-21T11:41:20.309 INFO:teuthology.orchestra.run.smithi148.stdout:(2/10): python3-pytoml-0.1.14-5.git7dea353.el8. 223 kB/s | 25 kB 00:00 2023-10-21T11:41:20.335 INFO:teuthology.orchestra.run.smithi148.stdout:(3/10): python3-pyxdg-0.25-16.el8.noarch.rpm 687 kB/s | 94 kB 00:00 2023-10-21T11:41:20.360 INFO:teuthology.orchestra.run.smithi148.stdout:(4/10): udica-0.2.6-4.module+el8.6.0+16771+28df 654 kB/s | 49 kB 00:00 2023-10-21T11:41:20.394 INFO:teuthology.orchestra.run.smithi148.stdout:(5/10): cockpit-podman-49.1-1.module+el8.6.0+16 6.1 MB/s | 524 kB 00:00 2023-10-21T11:41:20.419 INFO:teuthology.orchestra.run.smithi148.stdout:(6/10): python3-podman-4.0.1-1.module+el8.6.0+1 2.5 MB/s | 149 kB 00:00 2023-10-21T11:41:20.453 INFO:teuthology.orchestra.run.smithi148.stdout:(7/10): crun-1.5-1.module+el8.6.0+16771+28dfca7 3.6 MB/s | 213 kB 00:00 2023-10-21T11:41:20.570 INFO:teuthology.orchestra.run.smithi148.stdout:(8/10): toolbox-0.0.99.3-0.6.module+el8.6.0+167 19 MB/s | 2.2 MB 00:00 2023-10-21T11:41:20.678 INFO:teuthology.orchestra.run.smithi148.stdout:(9/10): buildah-1.26.2-1.module+el8.6.0+16771+2 23 MB/s | 8.0 MB 00:00 2023-10-21T11:41:20.761 INFO:teuthology.orchestra.run.smithi148.stdout:(10/10): skopeo-1.9.1-1.module+el8.6.0+16771+28 20 MB/s | 7.0 MB 00:00 2023-10-21T11:41:20.762 INFO:teuthology.orchestra.run.smithi148.stdout:-------------------------------------------------------------------------------- 2023-10-21T11:41:20.762 INFO:teuthology.orchestra.run.smithi148.stdout:Total 32 MB/s | 18 MB 00:00 2023-10-21T11:41:20.789 INFO:teuthology.orchestra.run.smithi061.stdout:Dependencies resolved. 2023-10-21T11:41:20.890 INFO:teuthology.orchestra.run.smithi061.stdout:============================================================================================================ 2023-10-21T11:41:20.891 INFO:teuthology.orchestra.run.smithi061.stdout: Package Arch Version Repository Size 2023-10-21T11:41:20.891 INFO:teuthology.orchestra.run.smithi061.stdout:============================================================================================================ 2023-10-21T11:41:20.891 INFO:teuthology.orchestra.run.smithi061.stdout:Installing group/module packages: 2023-10-21T11:41:20.891 INFO:teuthology.orchestra.run.smithi061.stdout: buildah x86_64 1:1.26.2-1.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 8.0 M 2023-10-21T11:41:20.892 INFO:teuthology.orchestra.run.smithi061.stdout: cockpit-podman noarch 49.1-1.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 524 k 2023-10-21T11:41:20.892 INFO:teuthology.orchestra.run.smithi061.stdout: crun x86_64 1.5-1.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 213 k 2023-10-21T11:41:20.892 INFO:teuthology.orchestra.run.smithi061.stdout: python3-podman noarch 4.0.1-1.module+el8.6.0+16837+85b82211 rhel-8-for-x86_64-appstream-rpms 149 k 2023-10-21T11:41:20.892 INFO:teuthology.orchestra.run.smithi061.stdout: skopeo x86_64 2:1.9.1-1.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 7.0 M 2023-10-21T11:41:20.892 INFO:teuthology.orchestra.run.smithi061.stdout: toolbox x86_64 0.0.99.3-0.6.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 2.2 M 2023-10-21T11:41:20.892 INFO:teuthology.orchestra.run.smithi061.stdout: udica noarch 0.2.6-4.module+el8.6.0+16771+28dfca77 rhel-8-for-x86_64-appstream-rpms 49 k 2023-10-21T11:41:20.893 INFO:teuthology.orchestra.run.smithi061.stdout:Installing dependencies: 2023-10-21T11:41:20.893 INFO:teuthology.orchestra.run.smithi061.stdout: python3-pytoml noarch 0.1.14-5.git7dea353.el8 rhel-8-for-x86_64-appstream-rpms 25 k 2023-10-21T11:41:20.893 INFO:teuthology.orchestra.run.smithi061.stdout: python3-pyxdg noarch 0.25-16.el8 rhel-8-for-x86_64-appstream-rpms 94 k 2023-10-21T11:41:20.893 INFO:teuthology.orchestra.run.smithi061.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-10-21T11:41:20.893 INFO:teuthology.orchestra.run.smithi061.stdout:Installing module profiles: 2023-10-21T11:41:20.894 INFO:teuthology.orchestra.run.smithi061.stdout: container-tools/common 2023-10-21T11:41:20.894 INFO:teuthology.orchestra.run.smithi061.stdout: 2023-10-21T11:41:20.894 INFO:teuthology.orchestra.run.smithi061.stdout:Enabling module streams: 2023-10-21T11:41:20.894 INFO:teuthology.orchestra.run.smithi061.stdout: container-tools rhel8 2023-10-21T11:41:20.894 INFO:teuthology.orchestra.run.smithi061.stdout: 2023-10-21T11:41:20.895 INFO:teuthology.orchestra.run.smithi061.stdout:Transaction Summary 2023-10-21T11:41:20.895 INFO:teuthology.orchestra.run.smithi061.stdout:============================================================================================================ 2023-10-21T11:41:20.895 INFO:teuthology.orchestra.run.smithi061.stdout:Install 10 Packages 2023-10-21T11:41:20.895 INFO:teuthology.orchestra.run.smithi061.stdout: 2023-10-21T11:41:20.896 INFO:teuthology.orchestra.run.smithi061.stdout:Total download size: 18 M 2023-10-21T11:41:20.896 INFO:teuthology.orchestra.run.smithi061.stdout:Installed size: 65 M 2023-10-21T11:41:20.896 INFO:teuthology.orchestra.run.smithi061.stdout:Downloading Packages: 2023-10-21T11:41:20.954 INFO:teuthology.orchestra.run.smithi061.stdout:(1/10): python3-pyxdg-0.25-16.el8.noarch.rpm 1.5 MB/s | 94 kB 00:00 2023-10-21T11:41:20.961 INFO:teuthology.orchestra.run.smithi148.stdout:Running transaction check 2023-10-21T11:41:20.979 INFO:teuthology.orchestra.run.smithi061.stdout:(2/10): python3-pytoml-0.1.14-5.git7dea353.el8. 291 kB/s | 25 kB 00:00 2023-10-21T11:41:20.980 INFO:teuthology.orchestra.run.smithi148.stdout:Transaction check succeeded. 2023-10-21T11:41:20.980 INFO:teuthology.orchestra.run.smithi148.stdout:Running transaction test 2023-10-21T11:41:21.004 INFO:teuthology.orchestra.run.smithi061.stdout:(3/10): yajl-2.1.0-10.el8.x86_64.rpm 368 kB/s | 41 kB 00:00 2023-10-21T11:41:21.030 INFO:teuthology.orchestra.run.smithi061.stdout:(4/10): udica-0.2.6-4.module+el8.6.0+16771+28df 654 kB/s | 49 kB 00:00 2023-10-21T11:41:21.063 INFO:teuthology.orchestra.run.smithi061.stdout:(5/10): cockpit-podman-49.1-1.module+el8.6.0+16 6.1 MB/s | 524 kB 00:00 2023-10-21T11:41:21.080 INFO:teuthology.orchestra.run.smithi061.stdout:(6/10): python3-podman-4.0.1-1.module+el8.6.0+1 2.9 MB/s | 149 kB 00:00 2023-10-21T11:41:21.097 INFO:teuthology.orchestra.run.smithi061.stdout:(7/10): crun-1.5-1.module+el8.6.0+16771+28dfca7 6.2 MB/s | 213 kB 00:00 2023-10-21T11:41:21.164 INFO:teuthology.orchestra.run.smithi148.stdout:Transaction test succeeded. 2023-10-21T11:41:21.168 INFO:teuthology.orchestra.run.smithi148.stdout:Running transaction 2023-10-21T11:41:21.214 INFO:teuthology.orchestra.run.smithi061.stdout:(8/10): toolbox-0.0.99.3-0.6.module+el8.6.0+167 19 MB/s | 2.2 MB 00:00 2023-10-21T11:41:21.331 INFO:teuthology.orchestra.run.smithi061.stdout:(9/10): skopeo-1.9.1-1.module+el8.6.0+16771+28d 28 MB/s | 7.0 MB 00:00 2023-10-21T11:41:21.431 INFO:teuthology.orchestra.run.smithi061.stdout:(10/10): buildah-1.26.2-1.module+el8.6.0+16771+ 19 MB/s | 8.0 MB 00:00 2023-10-21T11:41:21.432 INFO:teuthology.orchestra.run.smithi061.stdout:-------------------------------------------------------------------------------- 2023-10-21T11:41:21.433 INFO:teuthology.orchestra.run.smithi061.stdout:Total 34 MB/s | 18 MB 00:00 2023-10-21T11:41:21.640 INFO:teuthology.orchestra.run.smithi061.stdout:Running transaction check 2023-10-21T11:41:21.660 INFO:teuthology.orchestra.run.smithi061.stdout:Transaction check succeeded. 2023-10-21T11:41:21.660 INFO:teuthology.orchestra.run.smithi061.stdout:Running transaction test 2023-10-21T11:41:21.739 INFO:teuthology.orchestra.run.smithi148.stdout: Preparing : 1/1 2023-10-21T11:41:21.854 INFO:teuthology.orchestra.run.smithi061.stdout:Transaction test succeeded. 2023-10-21T11:41:21.858 INFO:teuthology.orchestra.run.smithi061.stdout:Running transaction 2023-10-21T11:41:21.951 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 1/10 2023-10-21T11:41:22.169 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : yajl-2.1.0-10.el8.x86_64 2/10 2023-10-21T11:41:22.363 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : python3-pyxdg-0.25-16.el8.noarch 3/10 2023-10-21T11:41:22.405 INFO:teuthology.orchestra.run.smithi061.stdout: Preparing : 1/1 2023-10-21T11:41:22.595 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 1/10 2023-10-21T11:41:22.598 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : python3-podman-4.0.1-1.module+el8.6.0+16837+85b822 4/10 2023-10-21T11:41:22.784 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : yajl-2.1.0-10.el8.x86_64 2/10 2023-10-21T11:41:22.972 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : crun-1.5-1.module+el8.6.0+16771+28dfca77.x86_64 5/10 2023-10-21T11:41:22.980 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : python3-pyxdg-0.25-16.el8.noarch 3/10 2023-10-21T11:41:23.192 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : python3-podman-4.0.1-1.module+el8.6.0+16837+85b822 4/10 2023-10-21T11:41:23.550 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : crun-1.5-1.module+el8.6.0+16771+28dfca77.x86_64 5/10 2023-10-21T11:41:23.764 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : toolbox-0.0.99.3-0.6.module+el8.6.0+16771+28dfca77 6/10 2023-10-21T11:41:24.383 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : toolbox-0.0.99.3-0.6.module+el8.6.0+16771+28dfca77 6/10 2023-10-21T11:41:24.672 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : skopeo-2:1.9.1-1.module+el8.6.0+16771+28dfca77.x86 7/10 2023-10-21T11:41:24.902 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : buildah-1:1.26.2-1.module+el8.6.0+16771+28dfca77.x 8/10 2023-10-21T11:41:25.092 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : cockpit-podman-49.1-1.module+el8.6.0+16771+28dfca7 9/10 2023-10-21T11:41:25.295 INFO:teuthology.orchestra.run.smithi148.stdout: Installing : udica-0.2.6-4.module+el8.6.0+16771+28dfca77.noarch 10/10 2023-10-21T11:41:25.313 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : skopeo-2:1.9.1-1.module+el8.6.0+16771+28dfca77.x86 7/10 2023-10-21T11:41:25.523 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : buildah-1:1.26.2-1.module+el8.6.0+16771+28dfca77.x 8/10 2023-10-21T11:41:25.549 INFO:teuthology.orchestra.run.smithi148.stdout: Running scriptlet: udica-0.2.6-4.module+el8.6.0+16771+28dfca77.noarch 10/10 2023-10-21T11:41:25.549 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : python3-pyxdg-0.25-16.el8.noarch 1/10 2023-10-21T11:41:25.550 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 2/10 2023-10-21T11:41:25.550 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 3/10 2023-10-21T11:41:25.550 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : udica-0.2.6-4.module+el8.6.0+16771+28dfca77.noarch 4/10 2023-10-21T11:41:25.550 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : cockpit-podman-49.1-1.module+el8.6.0+16771+28dfca7 5/10 2023-10-21T11:41:25.551 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : buildah-1:1.26.2-1.module+el8.6.0+16771+28dfca77.x 6/10 2023-10-21T11:41:25.551 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : python3-podman-4.0.1-1.module+el8.6.0+16837+85b822 7/10 2023-10-21T11:41:25.551 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : crun-1.5-1.module+el8.6.0+16771+28dfca77.x86_64 8/10 2023-10-21T11:41:25.551 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : skopeo-2:1.9.1-1.module+el8.6.0+16771+28dfca77.x86 9/10 2023-10-21T11:41:25.707 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : cockpit-podman-49.1-1.module+el8.6.0+16771+28dfca7 9/10 2023-10-21T11:41:25.875 INFO:teuthology.orchestra.run.smithi061.stdout: Installing : udica-0.2.6-4.module+el8.6.0+16771+28dfca77.noarch 10/10 2023-10-21T11:41:26.136 INFO:teuthology.orchestra.run.smithi061.stdout: Running scriptlet: udica-0.2.6-4.module+el8.6.0+16771+28dfca77.noarch 10/10 2023-10-21T11:41:26.136 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : python3-pyxdg-0.25-16.el8.noarch 1/10 2023-10-21T11:41:26.136 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 2/10 2023-10-21T11:41:26.137 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 3/10 2023-10-21T11:41:26.137 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : udica-0.2.6-4.module+el8.6.0+16771+28dfca77.noarch 4/10 2023-10-21T11:41:26.137 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : cockpit-podman-49.1-1.module+el8.6.0+16771+28dfca7 5/10 2023-10-21T11:41:26.137 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : buildah-1:1.26.2-1.module+el8.6.0+16771+28dfca77.x 6/10 2023-10-21T11:41:26.137 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : python3-podman-4.0.1-1.module+el8.6.0+16837+85b822 7/10 2023-10-21T11:41:26.137 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : crun-1.5-1.module+el8.6.0+16771+28dfca77.x86_64 8/10 2023-10-21T11:41:26.138 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : skopeo-2:1.9.1-1.module+el8.6.0+16771+28dfca77.x86 9/10 2023-10-21T11:41:26.735 INFO:teuthology.orchestra.run.smithi148.stdout: Verifying : toolbox-0.0.99.3-0.6.module+el8.6.0+16771+28dfca77 10/10 2023-10-21T11:41:26.736 INFO:teuthology.orchestra.run.smithi148.stdout:Last metadata expiration check: 0:01:51 ago on Sat 21 Oct 2023 11:39:35 AM UTC. 2023-10-21T11:41:27.300 INFO:teuthology.orchestra.run.smithi061.stdout: Verifying : toolbox-0.0.99.3-0.6.module+el8.6.0+16771+28dfca77 10/10 2023-10-21T11:41:27.300 INFO:teuthology.orchestra.run.smithi061.stdout:Last metadata expiration check: 0:01:40 ago on Sat 21 Oct 2023 11:39:46 AM UTC. 2023-10-21T11:41:29.473 INFO:teuthology.orchestra.run.smithi148.stdout:Installed products updated. 2023-10-21T11:41:29.670 INFO:teuthology.orchestra.run.smithi148.stdout: 2023-10-21T11:41:29.671 INFO:teuthology.orchestra.run.smithi148.stdout:Installed: 2023-10-21T11:41:29.671 INFO:teuthology.orchestra.run.smithi148.stdout: buildah-1:1.26.2-1.module+el8.6.0+16771+28dfca77.x86_64 2023-10-21T11:41:29.671 INFO:teuthology.orchestra.run.smithi148.stdout: cockpit-podman-49.1-1.module+el8.6.0+16771+28dfca77.noarch 2023-10-21T11:41:29.671 INFO:teuthology.orchestra.run.smithi148.stdout: crun-1.5-1.module+el8.6.0+16771+28dfca77.x86_64 2023-10-21T11:41:29.671 INFO:teuthology.orchestra.run.smithi148.stdout: python3-podman-4.0.1-1.module+el8.6.0+16837+85b82211.noarch 2023-10-21T11:41:29.672 INFO:teuthology.orchestra.run.smithi148.stdout: python3-pytoml-0.1.14-5.git7dea353.el8.noarch 2023-10-21T11:41:29.672 INFO:teuthology.orchestra.run.smithi148.stdout: python3-pyxdg-0.25-16.el8.noarch 2023-10-21T11:41:29.672 INFO:teuthology.orchestra.run.smithi148.stdout: skopeo-2:1.9.1-1.module+el8.6.0+16771+28dfca77.x86_64 2023-10-21T11:41:29.672 INFO:teuthology.orchestra.run.smithi148.stdout: toolbox-0.0.99.3-0.6.module+el8.6.0+16771+28dfca77.x86_64 2023-10-21T11:41:29.672 INFO:teuthology.orchestra.run.smithi148.stdout: udica-0.2.6-4.module+el8.6.0+16771+28dfca77.noarch 2023-10-21T11:41:29.672 INFO:teuthology.orchestra.run.smithi148.stdout: yajl-2.1.0-10.el8.x86_64 2023-10-21T11:41:29.673 INFO:teuthology.orchestra.run.smithi148.stdout: 2023-10-21T11:41:29.673 INFO:teuthology.orchestra.run.smithi148.stdout:Complete! 2023-10-21T11:41:29.816 DEBUG:teuthology.parallel:result is None 2023-10-21T11:41:30.002 INFO:teuthology.orchestra.run.smithi061.stdout:Installed products updated. 2023-10-21T11:41:30.213 INFO:teuthology.orchestra.run.smithi061.stdout: 2023-10-21T11:41:30.213 INFO:teuthology.orchestra.run.smithi061.stdout:Installed: 2023-10-21T11:41:30.213 INFO:teuthology.orchestra.run.smithi061.stdout: buildah-1:1.26.2-1.module+el8.6.0+16771+28dfca77.x86_64 2023-10-21T11:41:30.213 INFO:teuthology.orchestra.run.smithi061.stdout: cockpit-podman-49.1-1.module+el8.6.0+16771+28dfca77.noarch 2023-10-21T11:41:30.214 INFO:teuthology.orchestra.run.smithi061.stdout: crun-1.5-1.module+el8.6.0+16771+28dfca77.x86_64 2023-10-21T11:41:30.214 INFO:teuthology.orchestra.run.smithi061.stdout: python3-podman-4.0.1-1.module+el8.6.0+16837+85b82211.noarch 2023-10-21T11:41:30.214 INFO:teuthology.orchestra.run.smithi061.stdout: python3-pytoml-0.1.14-5.git7dea353.el8.noarch 2023-10-21T11:41:30.214 INFO:teuthology.orchestra.run.smithi061.stdout: python3-pyxdg-0.25-16.el8.noarch 2023-10-21T11:41:30.214 INFO:teuthology.orchestra.run.smithi061.stdout: skopeo-2:1.9.1-1.module+el8.6.0+16771+28dfca77.x86_64 2023-10-21T11:41:30.215 INFO:teuthology.orchestra.run.smithi061.stdout: toolbox-0.0.99.3-0.6.module+el8.6.0+16771+28dfca77.x86_64 2023-10-21T11:41:30.215 INFO:teuthology.orchestra.run.smithi061.stdout: udica-0.2.6-4.module+el8.6.0+16771+28dfca77.noarch 2023-10-21T11:41:30.215 INFO:teuthology.orchestra.run.smithi061.stdout: yajl-2.1.0-10.el8.x86_64 2023-10-21T11:41:30.215 INFO:teuthology.orchestra.run.smithi061.stdout: 2023-10-21T11:41:30.215 INFO:teuthology.orchestra.run.smithi061.stdout:Complete! 2023-10-21T11:41:30.357 DEBUG:teuthology.parallel:result is None 2023-10-21T11:41:30.358 INFO:teuthology.run_tasks:Running task nvme_loop... 2023-10-21T11:41:30.370 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2023-10-21T11:41:30.371 DEBUG:teuthology.orchestra.run.smithi061:> set -ex 2023-10-21T11:41:30.371 DEBUG:teuthology.orchestra.run.smithi061:> dd if=/scratch_devs of=/dev/stdout 2023-10-21T11:41:30.388 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-21T11:41:30.388 DEBUG:teuthology.orchestra.run.smithi061:> stat /dev/vg_nvme/lv_1 2023-10-21T11:41:30.446 INFO:teuthology.orchestra.run.smithi061.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-10-21T11:41:30.446 INFO:teuthology.orchestra.run.smithi061.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T11:41:30.447 INFO:teuthology.orchestra.run.smithi061.stdout:Device: 6h/6d Inode: 392557 Links: 1 2023-10-21T11:41:30.447 INFO:teuthology.orchestra.run.smithi061.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T11:41:30.447 INFO:teuthology.orchestra.run.smithi061.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T11:41:30.448 INFO:teuthology.orchestra.run.smithi061.stdout:Access: 2023-10-21 11:41:09.019226817 +0000 2023-10-21T11:41:30.448 INFO:teuthology.orchestra.run.smithi061.stdout:Modify: 2023-10-21 11:40:41.920673760 +0000 2023-10-21T11:41:30.448 INFO:teuthology.orchestra.run.smithi061.stdout:Change: 2023-10-21 11:40:41.920673760 +0000 2023-10-21T11:41:30.449 INFO:teuthology.orchestra.run.smithi061.stdout: Birth: - 2023-10-21T11:41:30.449 DEBUG:teuthology.orchestra.run.smithi061:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-10-21T11:41:30.512 INFO:teuthology.orchestra.run.smithi061.stderr:1+0 records in 2023-10-21T11:41:30.513 INFO:teuthology.orchestra.run.smithi061.stderr:1+0 records out 2023-10-21T11:41:30.513 INFO:teuthology.orchestra.run.smithi061.stderr:512 bytes copied, 0.000229888 s, 2.2 MB/s 2023-10-21T11:41:30.514 DEBUG:teuthology.orchestra.run.smithi061:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-10-21T11:41:30.572 DEBUG:teuthology.orchestra.run.smithi061:> stat /dev/vg_nvme/lv_2 2023-10-21T11:41:30.629 INFO:teuthology.orchestra.run.smithi061.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-10-21T11:41:30.629 INFO:teuthology.orchestra.run.smithi061.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T11:41:30.629 INFO:teuthology.orchestra.run.smithi061.stdout:Device: 6h/6d Inode: 395474 Links: 1 2023-10-21T11:41:30.630 INFO:teuthology.orchestra.run.smithi061.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T11:41:30.630 INFO:teuthology.orchestra.run.smithi061.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T11:41:30.630 INFO:teuthology.orchestra.run.smithi061.stdout:Access: 2023-10-21 11:41:09.019226817 +0000 2023-10-21T11:41:30.630 INFO:teuthology.orchestra.run.smithi061.stdout:Modify: 2023-10-21 11:40:42.424665447 +0000 2023-10-21T11:41:30.630 INFO:teuthology.orchestra.run.smithi061.stdout:Change: 2023-10-21 11:40:42.424665447 +0000 2023-10-21T11:41:30.631 INFO:teuthology.orchestra.run.smithi061.stdout: Birth: - 2023-10-21T11:41:30.631 DEBUG:teuthology.orchestra.run.smithi061:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-10-21T11:41:30.695 INFO:teuthology.orchestra.run.smithi061.stderr:1+0 records in 2023-10-21T11:41:30.695 INFO:teuthology.orchestra.run.smithi061.stderr:1+0 records out 2023-10-21T11:41:30.695 INFO:teuthology.orchestra.run.smithi061.stderr:512 bytes copied, 0.000217215 s, 2.4 MB/s 2023-10-21T11:41:30.697 DEBUG:teuthology.orchestra.run.smithi061:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-10-21T11:41:30.754 DEBUG:teuthology.orchestra.run.smithi061:> stat /dev/vg_nvme/lv_3 2023-10-21T11:41:30.813 INFO:teuthology.orchestra.run.smithi061.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-10-21T11:41:30.813 INFO:teuthology.orchestra.run.smithi061.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T11:41:30.814 INFO:teuthology.orchestra.run.smithi061.stdout:Device: 6h/6d Inode: 395586 Links: 1 2023-10-21T11:41:30.814 INFO:teuthology.orchestra.run.smithi061.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T11:41:30.814 INFO:teuthology.orchestra.run.smithi061.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T11:41:30.814 INFO:teuthology.orchestra.run.smithi061.stdout:Access: 2023-10-21 11:41:09.019226817 +0000 2023-10-21T11:41:30.814 INFO:teuthology.orchestra.run.smithi061.stdout:Modify: 2023-10-21 11:40:42.935657019 +0000 2023-10-21T11:41:30.815 INFO:teuthology.orchestra.run.smithi061.stdout:Change: 2023-10-21 11:40:42.935657019 +0000 2023-10-21T11:41:30.815 INFO:teuthology.orchestra.run.smithi061.stdout: Birth: - 2023-10-21T11:41:30.815 DEBUG:teuthology.orchestra.run.smithi061:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-10-21T11:41:30.878 INFO:teuthology.orchestra.run.smithi061.stderr:1+0 records in 2023-10-21T11:41:30.879 INFO:teuthology.orchestra.run.smithi061.stderr:1+0 records out 2023-10-21T11:41:30.879 INFO:teuthology.orchestra.run.smithi061.stderr:512 bytes copied, 0.000209278 s, 2.4 MB/s 2023-10-21T11:41:30.880 DEBUG:teuthology.orchestra.run.smithi061:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-10-21T11:41:30.938 DEBUG:teuthology.orchestra.run.smithi061:> stat /dev/vg_nvme/lv_4 2023-10-21T11:41:30.995 INFO:teuthology.orchestra.run.smithi061.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-10-21T11:41:30.996 INFO:teuthology.orchestra.run.smithi061.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T11:41:30.996 INFO:teuthology.orchestra.run.smithi061.stdout:Device: 6h/6d Inode: 392768 Links: 1 2023-10-21T11:41:30.996 INFO:teuthology.orchestra.run.smithi061.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T11:41:30.996 INFO:teuthology.orchestra.run.smithi061.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T11:41:30.997 INFO:teuthology.orchestra.run.smithi061.stdout:Access: 2023-10-21 11:41:09.019226817 +0000 2023-10-21T11:41:30.997 INFO:teuthology.orchestra.run.smithi061.stdout:Modify: 2023-10-21 11:40:43.455648443 +0000 2023-10-21T11:41:30.997 INFO:teuthology.orchestra.run.smithi061.stdout:Change: 2023-10-21 11:40:43.455648443 +0000 2023-10-21T11:41:30.997 INFO:teuthology.orchestra.run.smithi061.stdout: Birth: - 2023-10-21T11:41:30.998 DEBUG:teuthology.orchestra.run.smithi061:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-10-21T11:41:31.061 INFO:teuthology.orchestra.run.smithi061.stderr:1+0 records in 2023-10-21T11:41:31.062 INFO:teuthology.orchestra.run.smithi061.stderr:1+0 records out 2023-10-21T11:41:31.062 INFO:teuthology.orchestra.run.smithi061.stderr:512 bytes copied, 0.000180789 s, 2.8 MB/s 2023-10-21T11:41:31.063 DEBUG:teuthology.orchestra.run.smithi061:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-10-21T11:41:31.120 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:41:31.267 INFO:teuthology.orchestra.run.smithi061.stdout:loop 2023-10-21T11:41:31.268 INFO:tasks.nvme_loop:Connecting nvme_loop smithi061:/dev/vg_nvme/lv_1... 2023-10-21T11:41:31.269 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:41:31.305 INFO:teuthology.orchestra.run.smithi061.stdout:1 2023-10-21T11:41:31.342 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/vg_nvme/lv_11 2023-10-21T11:41:31.388 INFO:tasks.nvme_loop:Connecting nvme_loop smithi061:/dev/vg_nvme/lv_2... 2023-10-21T11:41:31.389 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:41:31.465 INFO:teuthology.orchestra.run.smithi061.stdout:1 2023-10-21T11:41:31.502 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/vg_nvme/lv_21 2023-10-21T11:41:31.542 INFO:tasks.nvme_loop:Connecting nvme_loop smithi061:/dev/vg_nvme/lv_3... 2023-10-21T11:41:31.543 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:41:31.620 INFO:teuthology.orchestra.run.smithi061.stdout:1 2023-10-21T11:41:31.656 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/vg_nvme/lv_31 2023-10-21T11:41:31.696 INFO:tasks.nvme_loop:Connecting nvme_loop smithi061:/dev/vg_nvme/lv_4... 2023-10-21T11:41:31.696 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:41:31.773 INFO:teuthology.orchestra.run.smithi061.stdout:1 2023-10-21T11:41:31.810 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/vg_nvme/lv_41 2023-10-21T11:41:31.850 DEBUG:teuthology.orchestra.run.smithi061:> set -ex 2023-10-21T11:41:31.850 DEBUG:teuthology.orchestra.run.smithi061:> dd if=/scratch_devs of=/dev/stdout 2023-10-21T11:41:31.912 DEBUG:teuthology.orchestra.run.smithi061:> sudo nvme list 2023-10-21T11:41:31.977 INFO:teuthology.orchestra.run.smithi061.stdout:Node SN Model Namespace Usage Format FW Rev 2023-10-21T11:41:31.978 INFO:teuthology.orchestra.run.smithi061.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-10-21T11:41:31.978 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/nvme0n1 CVFT534300NV400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2023-10-21T11:41:31.978 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/nvme1n1 635d88e4a4e35ef629f3 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-3 2023-10-21T11:41:31.978 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/nvme2n1 f4224e8e6cb20fec15a3 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-3 2023-10-21T11:41:31.979 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/nvme3n1 ed1fcb679fa85707e130 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-3 2023-10-21T11:41:31.979 INFO:teuthology.orchestra.run.smithi061.stdout:/dev/nvme4n1 75154b9fcebd8e650551 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-3 2023-10-21T11:41:31.980 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-10-21T11:41:31.980 DEBUG:teuthology.orchestra.run.smithi061:> set -ex 2023-10-21T11:41:31.980 DEBUG:teuthology.orchestra.run.smithi061:> sudo dd of=/scratch_devs 2023-10-21T11:41:32.047 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2023-10-21T11:41:32.047 DEBUG:teuthology.orchestra.run.smithi148:> dd if=/scratch_devs of=/dev/stdout 2023-10-21T11:41:32.068 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-21T11:41:32.068 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/vg_nvme/lv_1 2023-10-21T11:41:32.128 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-10-21T11:41:32.129 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T11:41:32.129 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 6h/6d Inode: 387726 Links: 1 2023-10-21T11:41:32.129 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T11:41:32.129 INFO:teuthology.orchestra.run.smithi148.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T11:41:32.129 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2023-10-21 11:41:09.110939163 +0000 2023-10-21T11:41:32.129 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2023-10-21 11:40:28.126918389 +0000 2023-10-21T11:41:32.130 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2023-10-21 11:40:28.126918389 +0000 2023-10-21T11:41:32.130 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2023-10-21T11:41:32.130 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-10-21T11:41:32.197 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2023-10-21T11:41:32.198 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2023-10-21T11:41:32.198 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000249496 s, 2.1 MB/s 2023-10-21T11:41:32.199 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-10-21T11:41:32.260 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/vg_nvme/lv_2 2023-10-21T11:41:32.318 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-10-21T11:41:32.318 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T11:41:32.318 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 6h/6d Inode: 390597 Links: 1 2023-10-21T11:41:32.319 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T11:41:32.319 INFO:teuthology.orchestra.run.smithi148.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T11:41:32.319 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2023-10-21 11:41:09.110939163 +0000 2023-10-21T11:41:32.319 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2023-10-21 11:40:28.638906145 +0000 2023-10-21T11:41:32.319 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2023-10-21 11:40:28.638906145 +0000 2023-10-21T11:41:32.320 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2023-10-21T11:41:32.320 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-10-21T11:41:32.386 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2023-10-21T11:41:32.386 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2023-10-21T11:41:32.386 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000224846 s, 2.3 MB/s 2023-10-21T11:41:32.387 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-10-21T11:41:32.446 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/vg_nvme/lv_3 2023-10-21T11:41:32.506 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-10-21T11:41:32.506 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T11:41:32.506 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 6h/6d Inode: 394484 Links: 1 2023-10-21T11:41:32.507 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T11:41:32.507 INFO:teuthology.orchestra.run.smithi148.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T11:41:32.507 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2023-10-21 11:41:09.110939163 +0000 2023-10-21T11:41:32.507 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2023-10-21 11:40:29.161893638 +0000 2023-10-21T11:41:32.508 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2023-10-21 11:40:29.161893638 +0000 2023-10-21T11:41:32.508 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2023-10-21T11:41:32.508 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-10-21T11:41:32.572 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2023-10-21T11:41:32.573 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2023-10-21T11:41:32.573 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000191483 s, 2.7 MB/s 2023-10-21T11:41:32.574 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-10-21T11:41:32.632 DEBUG:teuthology.orchestra.run.smithi148:> stat /dev/vg_nvme/lv_4 2023-10-21T11:41:32.690 INFO:teuthology.orchestra.run.smithi148.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-10-21T11:41:32.691 INFO:teuthology.orchestra.run.smithi148.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-10-21T11:41:32.691 INFO:teuthology.orchestra.run.smithi148.stdout:Device: 6h/6d Inode: 395789 Links: 1 2023-10-21T11:41:32.691 INFO:teuthology.orchestra.run.smithi148.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-10-21T11:41:32.692 INFO:teuthology.orchestra.run.smithi148.stdout:Context: system_u:object_r:device_t:s0 2023-10-21T11:41:32.692 INFO:teuthology.orchestra.run.smithi148.stdout:Access: 2023-10-21 11:41:09.110939163 +0000 2023-10-21T11:41:32.692 INFO:teuthology.orchestra.run.smithi148.stdout:Modify: 2023-10-21 11:40:29.660881705 +0000 2023-10-21T11:41:32.692 INFO:teuthology.orchestra.run.smithi148.stdout:Change: 2023-10-21 11:40:29.660881705 +0000 2023-10-21T11:41:32.692 INFO:teuthology.orchestra.run.smithi148.stdout: Birth: - 2023-10-21T11:41:32.693 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-10-21T11:41:32.755 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records in 2023-10-21T11:41:32.755 INFO:teuthology.orchestra.run.smithi148.stderr:1+0 records out 2023-10-21T11:41:32.756 INFO:teuthology.orchestra.run.smithi148.stderr:512 bytes copied, 0.000180835 s, 2.8 MB/s 2023-10-21T11:41:32.757 DEBUG:teuthology.orchestra.run.smithi148:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-10-21T11:41:32.814 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:41:32.936 INFO:teuthology.orchestra.run.smithi148.stdout:loop 2023-10-21T11:41:32.937 INFO:tasks.nvme_loop:Connecting nvme_loop smithi148:/dev/vg_nvme/lv_1... 2023-10-21T11:41:32.938 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:41:32.973 INFO:teuthology.orchestra.run.smithi148.stdout:1 2023-10-21T11:41:33.008 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/vg_nvme/lv_11 2023-10-21T11:41:33.060 INFO:tasks.nvme_loop:Connecting nvme_loop smithi148:/dev/vg_nvme/lv_2... 2023-10-21T11:41:33.060 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:41:33.136 INFO:teuthology.orchestra.run.smithi148.stdout:1 2023-10-21T11:41:33.171 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/vg_nvme/lv_21 2023-10-21T11:41:33.211 INFO:tasks.nvme_loop:Connecting nvme_loop smithi148:/dev/vg_nvme/lv_3... 2023-10-21T11:41:33.211 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:41:33.286 INFO:teuthology.orchestra.run.smithi148.stdout:1 2023-10-21T11:41:33.321 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/vg_nvme/lv_31 2023-10-21T11:41:33.360 INFO:tasks.nvme_loop:Connecting nvme_loop smithi148:/dev/vg_nvme/lv_4... 2023-10-21T11:41:33.361 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:41:33.436 INFO:teuthology.orchestra.run.smithi148.stdout:1 2023-10-21T11:41:33.471 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/vg_nvme/lv_41 2023-10-21T11:41:33.510 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2023-10-21T11:41:33.511 DEBUG:teuthology.orchestra.run.smithi148:> dd if=/scratch_devs of=/dev/stdout 2023-10-21T11:41:33.568 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme list 2023-10-21T11:41:33.632 INFO:teuthology.orchestra.run.smithi148.stdout:Node SN Model Namespace Usage Format FW Rev 2023-10-21T11:41:33.632 INFO:teuthology.orchestra.run.smithi148.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-10-21T11:41:33.633 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/nvme0n1 CVFT6233005G400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2023-10-21T11:41:33.633 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/nvme1n1 a6fb7015328c4cd48d4b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-3 2023-10-21T11:41:33.633 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/nvme2n1 62dc42fe7a8fe9a62176 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-3 2023-10-21T11:41:33.633 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/nvme3n1 ed1de1e985a95f37fe35 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-3 2023-10-21T11:41:33.633 INFO:teuthology.orchestra.run.smithi148.stdout:/dev/nvme4n1 8702ed35d45e708a2f9a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-3 2023-10-21T11:41:33.634 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-10-21T11:41:33.635 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2023-10-21T11:41:33.635 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/scratch_devs 2023-10-21T11:41:33.701 INFO:teuthology.run_tasks:Running task cephadm... 2023-10-21T11:41:33.804 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-21T11:41:33.805 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:f0804064d67a2a63dbabf1801ff452580a050cfc 2023-10-21T11:41:33.806 INFO:tasks.cephadm:Cluster fsid is c8eb9770-7006-11ee-8db6-212e2dc638e7 2023-10-21T11:41:33.806 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2023-10-21T11:41:33.807 INFO:tasks.cephadm:No mon roles; fabricating mons 2023-10-21T11:41:33.807 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi061': '172.21.15.61', 'mon.smithi148': '172.21.15.148'} 2023-10-21T11:41:33.808 INFO:tasks.cephadm:Normalizing hostnames... 2023-10-21T11:41:33.809 DEBUG:teuthology.orchestra.run.smithi061:> sudo hostname $(hostname -s) 2023-10-21T11:41:33.843 DEBUG:teuthology.orchestra.run.smithi148:> sudo hostname $(hostname -s) 2023-10-21T11:41:33.871 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2023-10-21T11:41:33.872 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-21T11:43:44.763 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?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&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 215, in _fetch_cephadm_from_chachra log.info('builder_project result: %s' % (bp._result.json())) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/teuthology/packaging.py", line 862, in _result self._result_obj = self._search() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/teuthology/packaging.py", line 868, in _search resp = requests.get( 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?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) 2023-10-21T11:43:44.766 INFO:tasks.cephadm:Teardown complete 2023-10-21T11:43:44.767 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?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&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 215, in _fetch_cephadm_from_chachra log.info('builder_project result: %s' % (bp._result.json())) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/teuthology/packaging.py", line 862, in _result self._result_obj = self._search() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/teuthology/packaging.py", line 868, in _search resp = requests.get( 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?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) 2023-10-21T11:43:44.845 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=4639ca88ad474b0fa9097ce56460899a 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?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&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 215, in _fetch_cephadm_from_chachra log.info('builder_project result: %s' % (bp._result.json())) File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/teuthology/packaging.py", line 862, in _result self._result_obj = self._search() File "/home/teuthworker/src/git.ceph.com_teuthology_202b180cb047e798fb131047314a862593f45403/teuthology/packaging.py", line 868, in _search resp = requests.get( 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?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f0804064d67a2a63dbabf1801ff452580a050cfc (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out')) 2023-10-21T11:43:44.851 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2023-10-21T11:43:44.862 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2023-10-21T11:43:44.871 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi061:/dev/vg_nvme/lv_1... 2023-10-21T11:43:44.871 DEBUG:teuthology.orchestra.run.smithi061:> sudo nvme disconnect -n lv_1 2023-10-21T11:43:45.029 INFO:teuthology.orchestra.run.smithi061.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-10-21T11:43:45.031 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:45.032 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi061:/dev/vg_nvme/lv_2... 2023-10-21T11:43:45.032 DEBUG:teuthology.orchestra.run.smithi061:> sudo nvme disconnect -n lv_2 2023-10-21T11:43:45.168 INFO:teuthology.orchestra.run.smithi061.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-10-21T11:43:45.169 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:45.170 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi061:/dev/vg_nvme/lv_3... 2023-10-21T11:43:45.171 DEBUG:teuthology.orchestra.run.smithi061:> sudo nvme disconnect -n lv_3 2023-10-21T11:43:45.326 INFO:teuthology.orchestra.run.smithi061.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-10-21T11:43:45.327 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:45.328 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi061:/dev/vg_nvme/lv_4... 2023-10-21T11:43:45.329 DEBUG:teuthology.orchestra.run.smithi061:> sudo nvme disconnect -n lv_4 2023-10-21T11:43:45.494 INFO:teuthology.orchestra.run.smithi061.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-10-21T11:43:45.496 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:45.496 DEBUG:teuthology.orchestra.run.smithi061:> set -ex 2023-10-21T11:43:45.497 DEBUG:teuthology.orchestra.run.smithi061:> sudo dd of=/scratch_devs 2023-10-21T11:43:45.528 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi148:/dev/vg_nvme/lv_1... 2023-10-21T11:43:45.528 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme disconnect -n lv_1 2023-10-21T11:43:45.678 INFO:teuthology.orchestra.run.smithi148.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-10-21T11:43:45.679 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:45.680 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi148:/dev/vg_nvme/lv_2... 2023-10-21T11:43:45.680 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme disconnect -n lv_2 2023-10-21T11:43:45.811 INFO:teuthology.orchestra.run.smithi148.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-10-21T11:43:45.812 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:45.813 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi148:/dev/vg_nvme/lv_3... 2023-10-21T11:43:45.813 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme disconnect -n lv_3 2023-10-21T11:43:45.941 INFO:teuthology.orchestra.run.smithi148.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-10-21T11:43:45.942 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:45.942 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi148:/dev/vg_nvme/lv_4... 2023-10-21T11:43:45.943 DEBUG:teuthology.orchestra.run.smithi148:> sudo nvme disconnect -n lv_4 2023-10-21T11:43:46.094 INFO:teuthology.orchestra.run.smithi148.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-10-21T11:43:46.096 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:46.096 DEBUG:teuthology.orchestra.run.smithi148:> set -ex 2023-10-21T11:43:46.097 DEBUG:teuthology.orchestra.run.smithi148:> sudo dd of=/scratch_devs 2023-10-21T11:43:46.125 DEBUG:teuthology.run_tasks:Unwinding manager clock 2023-10-21T11:43:46.134 INFO:teuthology.task.clock:Checking final clock skew... 2023-10-21T11:43:46.135 DEBUG:teuthology.orchestra.run.smithi061:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-10-21T11:43:46.138 DEBUG:teuthology.orchestra.run.smithi148:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-10-21T11:43:46.155 INFO:teuthology.orchestra.run.smithi061.stderr:bash: ntpq: command not found 2023-10-21T11:43:46.159 INFO:teuthology.orchestra.run.smithi061.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-10-21T11:43:46.159 INFO:teuthology.orchestra.run.smithi061.stdout:=============================================================================== 2023-10-21T11:43:46.160 INFO:teuthology.orchestra.run.smithi061.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 20 +924us[ +924us] +/- 84ms 2023-10-21T11:43:46.160 INFO:teuthology.orchestra.run.smithi061.stdout:^* hv02.front.sepia.ceph.com 3 6 77 20 -752us[ -738us] +/- 57ms 2023-10-21T11:43:46.160 INFO:teuthology.orchestra.run.smithi061.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 20 +142us[ +142us] +/- 82ms 2023-10-21T11:43:46.160 INFO:teuthology.orchestra.run.smithi061.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:43:46.180 INFO:teuthology.orchestra.run.smithi148.stderr:bash: ntpq: command not found 2023-10-21T11:43:46.184 INFO:teuthology.orchestra.run.smithi148.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-10-21T11:43:46.184 INFO:teuthology.orchestra.run.smithi148.stdout:=============================================================================== 2023-10-21T11:43:46.185 INFO:teuthology.orchestra.run.smithi148.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 20 +940us[ +940us] +/- 84ms 2023-10-21T11:43:46.185 INFO:teuthology.orchestra.run.smithi148.stdout:^* hv02.front.sepia.ceph.com 3 6 77 20 -723us[ -682us] +/- 57ms 2023-10-21T11:43:46.185 INFO:teuthology.orchestra.run.smithi148.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 20 +165us[ +205us] +/- 82ms 2023-10-21T11:43:46.186 INFO:teuthology.orchestra.run.smithi148.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2023-10-21T11:43:46.187 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2023-10-21T11:43:46.197 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2023-10-21T11:43:46.198 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2023-10-21T11:43:46.284 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:43:46.412 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:43:46.512 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:43:46.547 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:46.548 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:43:46.580 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:46.581 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2023-10-21T11:43:46.594 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2023-10-21T11:43:46.603 INFO:teuthology.task.internal:Duration was 692.098503 seconds 2023-10-21T11:43:46.604 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2023-10-21T11:43:46.613 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2023-10-21T11:43:46.613 DEBUG:teuthology.orchestra.run.smithi061:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-10-21T11:43:46.616 DEBUG:teuthology.orchestra.run.smithi148:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-10-21T11:43:46.663 INFO:teuthology.orchestra.run.smithi061.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-10-21T11:43:46.668 INFO:teuthology.orchestra.run.smithi148.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-10-21T11:43:47.053 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2023-10-21T11:43:47.053 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi061.front.sepia.ceph.com 2023-10-21T11:43:47.054 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:43:47.078 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi148.front.sepia.ceph.com 2023-10-21T11:43:47.078 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:43:47.100 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2023-10-21T11:43:47.101 DEBUG:teuthology.orchestra.run.smithi061:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-10-21T11:43:47.120 DEBUG:teuthology.orchestra.run.smithi148:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-10-21T11:43:47.179 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2023-10-21T11:43:47.180 DEBUG:teuthology.orchestra.run.smithi061:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-10-21T11:43:47.203 DEBUG:teuthology.orchestra.run.smithi148:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-10-21T11:43:47.289 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2023-10-21T11:43:47.301 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2023-10-21T11:43:47.301 DEBUG:teuthology.orchestra.run.smithi061:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-10-21T11:43:47.344 DEBUG:teuthology.orchestra.run.smithi148:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-10-21T11:43:47.388 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2023-10-21T11:43:47.397 DEBUG:teuthology.orchestra.run.smithi061:> 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-21T11:43:47.400 DEBUG:teuthology.orchestra.run.smithi148:> 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-21T11:43:47.424 INFO:teuthology.orchestra.run.smithi061.stdout:kernel.core_pattern = core 2023-10-21T11:43:47.453 INFO:teuthology.orchestra.run.smithi148.stdout:kernel.core_pattern = core 2023-10-21T11:43:47.490 DEBUG:teuthology.orchestra.run.smithi061:> test -e /home/ubuntu/cephtest/archive/coredump 2023-10-21T11:43:47.506 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:47.509 DEBUG:teuthology.orchestra.run.smithi148:> test -e /home/ubuntu/cephtest/archive/coredump 2023-10-21T11:43:47.545 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-10-21T11:43:47.546 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2023-10-21T11:43:47.556 INFO:teuthology.task.internal:Transferring archived files... 2023-10-21T11:43:47.558 DEBUG:teuthology.misc:Transferring archived files from smithi061:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041/remote/smithi061 2023-10-21T11:43:47.559 DEBUG:teuthology.orchestra.run.smithi061:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-10-21T11:43:47.615 DEBUG:teuthology.misc:Transferring archived files from smithi148:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041/remote/smithi148 2023-10-21T11:43:47.617 DEBUG:teuthology.orchestra.run.smithi148:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-10-21T11:43:47.668 INFO:teuthology.task.internal:Removing archive directory... 2023-10-21T11:43:47.669 DEBUG:teuthology.orchestra.run.smithi061:> rm -rf -- /home/ubuntu/cephtest/archive 2023-10-21T11:43:47.671 DEBUG:teuthology.orchestra.run.smithi148:> rm -rf -- /home/ubuntu/cephtest/archive 2023-10-21T11:43:47.719 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2023-10-21T11:43:47.732 INFO:teuthology.task.internal:Not uploading archives. 2023-10-21T11:43:47.732 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2023-10-21T11:43:47.742 INFO:teuthology.task.internal:Tidying up after the test... 2023-10-21T11:43:47.743 DEBUG:teuthology.orchestra.run.smithi061:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-10-21T11:43:47.745 DEBUG:teuthology.orchestra.run.smithi148:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-10-21T11:43:47.760 INFO:teuthology.orchestra.run.smithi061.stdout: 262320 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Oct 21 11:43 /home/ubuntu/cephtest 2023-10-21T11:43:47.776 INFO:teuthology.orchestra.run.smithi148.stdout: 262320 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Oct 21 11:43 /home/ubuntu/cephtest 2023-10-21T11:43:47.777 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2023-10-21T11:43:47.788 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2023-10-21T11:43:47.863 INFO:teuthology.nuke:Checking targets against current locks 2023-10-21T11:43:47.891 DEBUG:teuthology.nuke:shortname: smithi061 2023-10-21T11:43:47.892 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-10-21T11:43:47.917 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi061.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-10-21 11:26:56.537098', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-10-21T11:43:47.921 DEBUG:teuthology.nuke:shortname: smithi148 2023-10-21T11:43:47.922 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-10-21T11:43:47.945 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi148.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-10-20_18:45:04-orch-main-distro-default-smithi/7434041', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-10-21 11:26:56.538883', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-10-21T11:43:47.979 INFO:teuthology.orchestra.console.smithi061:Power off 2023-10-21T11:43:47.980 DEBUG:teuthology.orchestra.console.smithi061:pexpect command: ipmitool -H smithi061.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-10-21T11:43:48.004 DEBUG:teuthology.orchestra.console.smithi061:power off output: Chassis Power Control: Down/Off 2023-10-21T11:43:48.005 DEBUG:teuthology.orchestra.console.smithi061:pexpect command: ipmitool -H smithi061.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T11:43:48.021 INFO:teuthology.orchestra.console.smithi148:Power off 2023-10-21T11:43:48.022 DEBUG:teuthology.orchestra.console.smithi148:pexpect command: ipmitool -H smithi148.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-10-21T11:43:48.032 DEBUG:teuthology.orchestra.console.smithi061:check power output: Chassis Power is on 2023-10-21T11:43:48.049 DEBUG:teuthology.orchestra.console.smithi148:power off output: Chassis Power Control: Down/Off 2023-10-21T11:43:48.050 DEBUG:teuthology.orchestra.console.smithi148:pexpect command: ipmitool -H smithi148.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T11:43:48.074 DEBUG:teuthology.orchestra.console.smithi148:check power output: Chassis Power is on 2023-10-21T11:43:52.034 DEBUG:teuthology.orchestra.console.smithi061:pexpect command: ipmitool -H smithi061.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T11:43:52.075 DEBUG:teuthology.orchestra.console.smithi148:pexpect command: ipmitool -H smithi148.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T11:43:52.149 DEBUG:teuthology.orchestra.console.smithi061:check power output: Chassis Power is on 2023-10-21T11:43:52.186 DEBUG:teuthology.orchestra.console.smithi148:check power output: Chassis Power is on 2023-10-21T11:43:56.150 DEBUG:teuthology.orchestra.console.smithi061:pexpect command: ipmitool -H smithi061.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T11:43:56.187 DEBUG:teuthology.orchestra.console.smithi148:pexpect command: ipmitool -H smithi148.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-10-21T11:43:56.262 DEBUG:teuthology.orchestra.console.smithi061:check power output: Chassis Power is off 2023-10-21T11:43:56.298 DEBUG:teuthology.orchestra.console.smithi148:check power output: Chassis Power is off 2023-10-21T11:43:56.364 INFO:teuthology.orchestra.console.smithi061:Power off completed 2023-10-21T11:43:56.400 INFO:teuthology.orchestra.console.smithi148:Power off completed 2023-10-21T11:43:56.505 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/rhel_8.6_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 692.098503112793 failure_reason: 'HTTPSConnectionPool(host=''shaman.ceph.com'', port=443): Max retries exceeded with url: /api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&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=4639ca88ad474b0fa9097ce56460899a status: fail success: false 2023-10-21T11:43:56.506 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-10-21T11:43:56.580 INFO:teuthology.run:FAIL