2023-12-02T01:14:43.923 INFO:root:teuthology version: 0.0.1.dev214+gf2de108 2023-12-02T01:14:43.923 DEBUG:teuthology.run:Teuthology command: teuthology --description rados/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/classic task/test_host_drain} --name yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi --archive /home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683 --owner scheduled_yuriw@teuthology --verbose -- /home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683/orig.config.yaml 2023-12-02T01:14:43.962 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-12-02T01:14:44.068 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683 branch: main description: rados/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/classic task/test_host_drain} email: yweinste@redhat.com first_in_suite: false job_id: '7474683' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: rhel os_version: '8.6' overrides: admin_socket: branch: main ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: bed7681480ccb0192b91a35e691658867e1e96b7 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: bed7681480ccb0192b91a35e691658867e1e96b7 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: bed7681480ccb0192b91a35e691658867e1e96b7 owner: scheduled_yuriw@teuthology priority: 75 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 1147 sha1: bed7681480ccb0192b91a35e691658867e1e96b7 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: main suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_bed7681480ccb0192b91a35e691658867e1e96b7/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: bed7681480ccb0192b91a35e691658867e1e96b7 targets: smithi062.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= smithi072.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= smithi175.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:3.0 --allowerasing --nobest - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: f2de108beb0a6dde7f3e6c96039071828a1f6269 timestamp: 2023-12-01_17:58:18 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.232157 2023-12-02T01:14:44.068 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_bed7681480ccb0192b91a35e691658867e1e96b7/qa; will attempt to use it 2023-12-02T01:14:44.069 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_bed7681480ccb0192b91a35e691658867e1e96b7/qa/tasks 2023-12-02T01:14:44.069 INFO:teuthology.run_tasks:Running task internal.check_packages... 2023-12-02T01:14:44.070 INFO:teuthology.task.internal:Checking packages... 2023-12-02T01:14:44.095 INFO:teuthology.task.internal:Checking packages for os_type 'rhel', flavor 'default' and ceph hash 'bed7681480ccb0192b91a35e691658867e1e96b7' 2023-12-02T01:14:44.095 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2023-12-02T01:14:44.095 INFO:teuthology.packaging:ref: None 2023-12-02T01:14:44.095 INFO:teuthology.packaging:tag: None 2023-12-02T01:14:44.095 INFO:teuthology.packaging:branch: main 2023-12-02T01:14:44.095 INFO:teuthology.packaging:sha1: bed7681480ccb0192b91a35e691658867e1e96b7 2023-12-02T01:14:44.095 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=main 2023-12-02T01:14:44.326 INFO:teuthology.task.internal:Found packages for ceph version 18.0.0-7660.gb27938f5 2023-12-02T01:14:44.326 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2023-12-02T01:14:44.335 INFO:teuthology.task.internal:no buildpackages task found 2023-12-02T01:14:44.335 INFO:teuthology.run_tasks:Running task internal.save_config... 2023-12-02T01:14:44.350 INFO:teuthology.task.internal:Saving configuration 2023-12-02T01:14:44.362 INFO:teuthology.run_tasks:Running task internal.check_lock... 2023-12-02T01:14:44.370 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-02T01:14:44.396 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi062.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683', '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-12-02 01:09:04.875952', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T01:14:44.418 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi072.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683', '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-12-02 01:09:04.877687', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T01:14:44.443 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi175.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683', '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-12-02 01:09:04.878855', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T01:14:44.443 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2023-12-02T01:14:44.452 INFO:teuthology.task.internal:roles: ubuntu@smithi062.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2023-12-02T01:14:44.453 INFO:teuthology.task.internal:roles: ubuntu@smithi072.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2023-12-02T01:14:44.453 INFO:teuthology.task.internal:roles: ubuntu@smithi175.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2023-12-02T01:14:44.453 INFO:teuthology.run_tasks:Running task console_log... 2023-12-02T01:14:44.706 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f0403494ee0>, signals=[15]) 2023-12-02T01:14:44.707 INFO:teuthology.run_tasks:Running task internal.connect... 2023-12-02T01:14:44.786 INFO:teuthology.task.internal:Opening connections... 2023-12-02T01:14:44.787 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi062.front.sepia.ceph.com 2023-12-02T01:14:44.788 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T01:14:44.858 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi072.front.sepia.ceph.com 2023-12-02T01:14:44.859 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi072.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T01:14:44.925 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi175.front.sepia.ceph.com 2023-12-02T01:14:44.925 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi175.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T01:14:44.991 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2023-12-02T01:14:45.003 DEBUG:teuthology.orchestra.run.smithi062:> uname -m 2023-12-02T01:14:45.025 INFO:teuthology.orchestra.run.smithi062.stdout:x86_64 2023-12-02T01:14:45.025 DEBUG:teuthology.orchestra.run.smithi062:> cat /etc/os-release 2023-12-02T01:14:45.084 INFO:teuthology.orchestra.run.smithi062.stdout:NAME="Red Hat Enterprise Linux" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:VERSION="8.6 (Ootpa)" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:ID="rhel" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:ID_LIKE="fedora" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:VERSION_ID="8.6" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:PLATFORM_ID="platform:el8" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:ANSI_COLOR="0;31" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:HOME_URL="https://www.redhat.com/" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-12-02T01:14:45.085 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:14:45.086 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-12-02T01:14:45.086 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-12-02T01:14:45.086 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-12-02T01:14:45.086 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-12-02T01:14:45.086 INFO:teuthology.lock.ops:Updating smithi062.front.sepia.ceph.com on lock server 2023-12-02T01:14:45.119 DEBUG:teuthology.orchestra.run.smithi072:> uname -m 2023-12-02T01:14:45.140 INFO:teuthology.orchestra.run.smithi072.stdout:x86_64 2023-12-02T01:14:45.140 DEBUG:teuthology.orchestra.run.smithi072:> cat /etc/os-release 2023-12-02T01:14:45.199 INFO:teuthology.orchestra.run.smithi072.stdout:NAME="Red Hat Enterprise Linux" 2023-12-02T01:14:45.199 INFO:teuthology.orchestra.run.smithi072.stdout:VERSION="8.6 (Ootpa)" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:ID="rhel" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:ID_LIKE="fedora" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:VERSION_ID="8.6" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:PLATFORM_ID="platform:el8" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:ANSI_COLOR="0;31" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:HOME_URL="https://www.redhat.com/" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-12-02T01:14:45.200 INFO:teuthology.orchestra.run.smithi072.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-12-02T01:14:45.201 INFO:teuthology.orchestra.run.smithi072.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-12-02T01:14:45.201 INFO:teuthology.orchestra.run.smithi072.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-12-02T01:14:45.201 INFO:teuthology.lock.ops:Updating smithi072.front.sepia.ceph.com on lock server 2023-12-02T01:14:45.245 DEBUG:teuthology.orchestra.run.smithi175:> uname -m 2023-12-02T01:14:45.266 INFO:teuthology.orchestra.run.smithi175.stdout:x86_64 2023-12-02T01:14:45.267 DEBUG:teuthology.orchestra.run.smithi175:> cat /etc/os-release 2023-12-02T01:14:45.326 INFO:teuthology.orchestra.run.smithi175.stdout:NAME="Red Hat Enterprise Linux" 2023-12-02T01:14:45.326 INFO:teuthology.orchestra.run.smithi175.stdout:VERSION="8.6 (Ootpa)" 2023-12-02T01:14:45.326 INFO:teuthology.orchestra.run.smithi175.stdout:ID="rhel" 2023-12-02T01:14:45.326 INFO:teuthology.orchestra.run.smithi175.stdout:ID_LIKE="fedora" 2023-12-02T01:14:45.326 INFO:teuthology.orchestra.run.smithi175.stdout:VERSION_ID="8.6" 2023-12-02T01:14:45.326 INFO:teuthology.orchestra.run.smithi175.stdout:PLATFORM_ID="platform:el8" 2023-12-02T01:14:45.326 INFO:teuthology.orchestra.run.smithi175.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:ANSI_COLOR="0;31" 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:HOME_URL="https://www.redhat.com/" 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-12-02T01:14:45.327 INFO:teuthology.orchestra.run.smithi175.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-12-02T01:14:45.327 INFO:teuthology.lock.ops:Updating smithi175.front.sepia.ceph.com on lock server 2023-12-02T01:14:45.361 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2023-12-02T01:14:45.377 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2023-12-02T01:14:45.440 INFO:teuthology.task.internal:Checking for old test directory... 2023-12-02T01:14:45.440 DEBUG:teuthology.orchestra.run.smithi062:> test '!' -e /home/ubuntu/cephtest 2023-12-02T01:14:45.443 DEBUG:teuthology.orchestra.run.smithi072:> test '!' -e /home/ubuntu/cephtest 2023-12-02T01:14:45.445 DEBUG:teuthology.orchestra.run.smithi175:> test '!' -e /home/ubuntu/cephtest 2023-12-02T01:14:45.465 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2023-12-02T01:14:45.658 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2023-12-02T01:14:45.658 DEBUG:teuthology.orchestra.run.smithi062:> test -z $(ls -A /var/lib/ceph) 2023-12-02T01:14:45.661 DEBUG:teuthology.orchestra.run.smithi072:> test -z $(ls -A /var/lib/ceph) 2023-12-02T01:14:45.664 DEBUG:teuthology.orchestra.run.smithi175:> test -z $(ls -A /var/lib/ceph) 2023-12-02T01:14:45.695 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2023-12-02T01:14:45.927 INFO:teuthology.run_tasks:Running task kernel... 2023-12-02T01:14:46.055 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2023-12-02T01:14:46.055 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}, 'host.c': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2023-12-02T01:14:46.056 DEBUG:teuthology.orchestra.run.smithi062:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-02T01:14:46.056 DEBUG:teuthology.orchestra.run.smithi072:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-02T01:14:46.057 DEBUG:teuthology.orchestra.run.smithi175:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-02T01:14:46.076 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:14:46.076 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:14:46.077 DEBUG:teuthology.orchestra.run.smithi072:> uname -r 2023-12-02T01:14:46.077 DEBUG:teuthology.orchestra.run.smithi175:> uname -r 2023-12-02T01:14:46.078 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:14:46.078 DEBUG:teuthology.orchestra.run.smithi062:> uname -r 2023-12-02T01:14:46.137 INFO:teuthology.orchestra.run.smithi175.stdout:4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:46.137 INFO:teuthology.task.kernel:Running kernel on smithi175: 4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:46.137 DEBUG:teuthology.orchestra.run.smithi175:> sudo yum install -y kernel 2023-12-02T01:14:46.139 INFO:teuthology.orchestra.run.smithi072.stdout:4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:46.139 INFO:teuthology.task.kernel:Running kernel on smithi072: 4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:46.139 DEBUG:teuthology.orchestra.run.smithi072:> sudo yum install -y kernel 2023-12-02T01:14:46.141 INFO:teuthology.orchestra.run.smithi062.stdout:4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:46.141 INFO:teuthology.task.kernel:Running kernel on smithi062: 4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:46.141 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum install -y kernel 2023-12-02T01:14:47.407 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:14:47.408 INFO:teuthology.orchestra.run.smithi175.stdout:Unable to read consumer identity 2023-12-02T01:14:47.449 INFO:teuthology.orchestra.run.smithi062.stdout:Updating Subscription Management repositories. 2023-12-02T01:14:47.450 INFO:teuthology.orchestra.run.smithi062.stdout:Unable to read consumer identity 2023-12-02T01:14:47.607 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:14:47.608 INFO:teuthology.orchestra.run.smithi072.stdout:Unable to read consumer identity 2023-12-02T01:14:48.878 INFO:teuthology.orchestra.run.smithi175.stdout:Copr repo for python3-asyncssh owned by ceph 14 kB/s | 3.5 kB 00:00 2023-12-02T01:14:49.010 INFO:teuthology.orchestra.run.smithi062.stdout:Copr repo for python3-asyncssh owned by ceph 13 kB/s | 3.5 kB 00:00 2023-12-02T01:14:50.474 INFO:teuthology.orchestra.run.smithi072.stdout:Copr repo for python3-asyncssh owned by ceph 8.5 kB/s | 3.5 kB 00:00 2023-12-02T01:14:50.710 INFO:teuthology.orchestra.run.smithi062.stdout:Extra Packages for Enterprise Linux 9.5 MB/s | 16 MB 00:01 2023-12-02T01:14:52.276 INFO:teuthology.orchestra.run.smithi072.stdout:Extra Packages for Enterprise Linux 8.9 MB/s | 16 MB 00:01 2023-12-02T01:14:54.402 INFO:teuthology.orchestra.run.smithi062.stdout:lab-extras 578 kB/s | 24 kB 00:00 2023-12-02T01:14:55.113 INFO:teuthology.orchestra.run.smithi062.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-12-02T01:14:55.154 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2023-12-02T01:14:55.155 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2023-12-02T01:14:55.155 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2023-12-02T01:14:55.280 DEBUG:teuthology.orchestra.run.smithi062:> echo no | sudo yum reinstall kernel || true 2023-12-02T01:14:55.634 INFO:teuthology.orchestra.run.smithi062.stdout:Updating Subscription Management repositories. 2023-12-02T01:14:55.634 INFO:teuthology.orchestra.run.smithi062.stdout:Unable to read consumer identity 2023-12-02T01:14:55.678 INFO:teuthology.orchestra.run.smithi175.stdout:Extra Packages for Enterprise Linux 2.4 MB/s | 16 MB 00:06 2023-12-02T01:14:55.753 INFO:teuthology.orchestra.run.smithi072.stdout:lab-extras 514 kB/s | 24 kB 00:00 2023-12-02T01:14:55.909 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:00:01 ago on Sat 02 Dec 2023 01:14:54 AM UTC. 2023-12-02T01:14:55.954 INFO:teuthology.orchestra.run.smithi062.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T01:14:55.985 INFO:teuthology.orchestra.run.smithi062.stderr:Error: No packages marked for reinstall. 2023-12-02T01:14:56.033 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum reinstall -y kernel || true 2023-12-02T01:14:56.381 INFO:teuthology.orchestra.run.smithi062.stdout:Updating Subscription Management repositories. 2023-12-02T01:14:56.382 INFO:teuthology.orchestra.run.smithi062.stdout:Unable to read consumer identity 2023-12-02T01:14:56.482 INFO:teuthology.orchestra.run.smithi072.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-12-02T01:14:56.573 INFO:teuthology.orchestra.run.smithi072.stdout:Dependencies resolved. 2023-12-02T01:14:56.574 INFO:teuthology.orchestra.run.smithi072.stdout:Nothing to do. 2023-12-02T01:14:56.574 INFO:teuthology.orchestra.run.smithi072.stdout:Complete! 2023-12-02T01:14:56.655 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:00:02 ago on Sat 02 Dec 2023 01:14:54 AM UTC. 2023-12-02T01:14:56.697 DEBUG:teuthology.orchestra.run.smithi072:> echo no | sudo yum reinstall kernel || true 2023-12-02T01:14:56.698 INFO:teuthology.orchestra.run.smithi062.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T01:14:56.722 INFO:teuthology.orchestra.run.smithi062.stderr:Error: No packages marked for reinstall. 2023-12-02T01:14:56.771 DEBUG:teuthology.orchestra.run.smithi062:> rpm -q kernel | sort -rV | head -n 1 2023-12-02T01:14:56.855 INFO:teuthology.orchestra.run.smithi062.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:56.855 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:56.855 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-12-02T01:14:56.855 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2023-12-02T01:14:56.856 DEBUG:teuthology.orchestra.run.smithi062:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-02T01:14:56.883 INFO:teuthology.orchestra.run.smithi062.stdout:ttyS1 2023-12-02T01:14:56.899 DEBUG:teuthology.parallel:result is None 2023-12-02T01:14:57.067 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:14:57.067 INFO:teuthology.orchestra.run.smithi072.stdout:Unable to read consumer identity 2023-12-02T01:14:57.337 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:00:02 ago on Sat 02 Dec 2023 01:14:55 AM UTC. 2023-12-02T01:14:57.389 INFO:teuthology.orchestra.run.smithi072.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T01:14:57.444 INFO:teuthology.orchestra.run.smithi072.stderr:Error: No packages marked for reinstall. 2023-12-02T01:14:57.490 DEBUG:teuthology.orchestra.run.smithi072:> sudo yum reinstall -y kernel || true 2023-12-02T01:14:57.816 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:14:57.816 INFO:teuthology.orchestra.run.smithi072.stdout:Unable to read consumer identity 2023-12-02T01:14:58.079 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:00:03 ago on Sat 02 Dec 2023 01:14:55 AM UTC. 2023-12-02T01:14:58.118 INFO:teuthology.orchestra.run.smithi072.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T01:14:58.149 INFO:teuthology.orchestra.run.smithi072.stderr:Error: No packages marked for reinstall. 2023-12-02T01:14:58.198 DEBUG:teuthology.orchestra.run.smithi072:> rpm -q kernel | sort -rV | head -n 1 2023-12-02T01:14:58.278 INFO:teuthology.orchestra.run.smithi072.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:58.278 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-12-02T01:14:58.279 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-12-02T01:14:58.279 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2023-12-02T01:14:58.279 DEBUG:teuthology.orchestra.run.smithi072:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-02T01:14:58.310 INFO:teuthology.orchestra.run.smithi072.stdout:ttyS1 2023-12-02T01:14:58.321 DEBUG:teuthology.parallel:result is None 2023-12-02T01:14:59.295 INFO:teuthology.orchestra.run.smithi175.stdout:lab-extras 479 kB/s | 24 kB 00:00 2023-12-02T01:15:00.030 INFO:teuthology.orchestra.run.smithi175.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-12-02T01:15:00.084 INFO:teuthology.orchestra.run.smithi175.stdout:Dependencies resolved. 2023-12-02T01:15:00.085 INFO:teuthology.orchestra.run.smithi175.stdout:Nothing to do. 2023-12-02T01:15:00.085 INFO:teuthology.orchestra.run.smithi175.stdout:Complete! 2023-12-02T01:15:00.201 DEBUG:teuthology.orchestra.run.smithi175:> echo no | sudo yum reinstall kernel || true 2023-12-02T01:15:00.530 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:15:00.530 INFO:teuthology.orchestra.run.smithi175.stdout:Unable to read consumer identity 2023-12-02T01:15:00.806 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:00:01 ago on Sat 02 Dec 2023 01:14:59 AM UTC. 2023-12-02T01:15:00.846 INFO:teuthology.orchestra.run.smithi175.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T01:15:00.898 INFO:teuthology.orchestra.run.smithi175.stderr:Error: No packages marked for reinstall. 2023-12-02T01:15:00.944 DEBUG:teuthology.orchestra.run.smithi175:> sudo yum reinstall -y kernel || true 2023-12-02T01:15:01.274 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:15:01.274 INFO:teuthology.orchestra.run.smithi175.stdout:Unable to read consumer identity 2023-12-02T01:15:01.531 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:00:02 ago on Sat 02 Dec 2023 01:14:59 AM UTC. 2023-12-02T01:15:01.571 INFO:teuthology.orchestra.run.smithi175.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T01:15:01.591 INFO:teuthology.orchestra.run.smithi175.stderr:Error: No packages marked for reinstall. 2023-12-02T01:15:01.637 DEBUG:teuthology.orchestra.run.smithi175:> rpm -q kernel | sort -rV | head -n 1 2023-12-02T01:15:01.718 INFO:teuthology.orchestra.run.smithi175.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-12-02T01:15:01.718 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-12-02T01:15:01.718 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-12-02T01:15:01.718 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2023-12-02T01:15:01.719 DEBUG:teuthology.orchestra.run.smithi175:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-02T01:15:01.746 INFO:teuthology.orchestra.run.smithi175.stdout:ttyS1 2023-12-02T01:15:01.765 DEBUG:teuthology.parallel:result is None 2023-12-02T01:15:01.765 INFO:teuthology.run_tasks:Running task internal.base... 2023-12-02T01:15:01.780 INFO:teuthology.task.internal:Creating test directory... 2023-12-02T01:15:01.781 DEBUG:teuthology.orchestra.run.smithi062:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-02T01:15:01.783 DEBUG:teuthology.orchestra.run.smithi072:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-02T01:15:01.786 DEBUG:teuthology.orchestra.run.smithi175:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-02T01:15:01.822 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2023-12-02T01:15:01.850 INFO:teuthology.run_tasks:Running task internal.archive... 2023-12-02T01:15:02.050 INFO:teuthology.task.internal:Creating archive directory... 2023-12-02T01:15:02.050 DEBUG:teuthology.orchestra.run.smithi062:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-02T01:15:02.052 DEBUG:teuthology.orchestra.run.smithi072:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-02T01:15:02.054 DEBUG:teuthology.orchestra.run.smithi175:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-02T01:15:02.087 INFO:teuthology.run_tasks:Running task internal.coredump... 2023-12-02T01:15:02.198 INFO:teuthology.task.internal:Enabling coredump saving... 2023-12-02T01:15:02.199 DEBUG:teuthology.orchestra.run.smithi062:> 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-12-02T01:15:02.201 DEBUG:teuthology.orchestra.run.smithi072:> 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-12-02T01:15:02.204 DEBUG:teuthology.orchestra.run.smithi175:> 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-12-02T01:15:02.234 INFO:teuthology.orchestra.run.smithi072.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T01:15:02.242 INFO:teuthology.orchestra.run.smithi175.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T01:15:02.244 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T01:15:02.246 INFO:teuthology.orchestra.run.smithi072.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T01:15:02.252 INFO:teuthology.orchestra.run.smithi175.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T01:15:02.257 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T01:15:02.259 INFO:teuthology.run_tasks:Running task internal.sudo... 2023-12-02T01:15:02.396 INFO:teuthology.task.internal:Configuring sudo... 2023-12-02T01:15:02.396 DEBUG:teuthology.orchestra.run.smithi062:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-02T01:15:02.399 DEBUG:teuthology.orchestra.run.smithi072:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-02T01:15:02.401 DEBUG:teuthology.orchestra.run.smithi175:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-02T01:15:02.431 INFO:teuthology.run_tasks:Running task internal.syslog... 2023-12-02T01:15:02.597 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2023-12-02T01:15:02.597 DEBUG:teuthology.orchestra.run.smithi062:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-02T01:15:02.600 DEBUG:teuthology.orchestra.run.smithi072:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-02T01:15:02.602 DEBUG:teuthology.orchestra.run.smithi175:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-02T01:15:02.620 DEBUG:teuthology.orchestra.run.smithi062:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T01:15:02.706 DEBUG:teuthology.orchestra.run.smithi062:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T01:15:02.774 DEBUG:teuthology.orchestra.run.smithi062:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T01:15:02.818 DEBUG:teuthology.orchestra.run.smithi062:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T01:15:02.866 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2023-12-02T01:15:02.866 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-02T01:15:02.936 DEBUG:teuthology.orchestra.run.smithi072:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T01:15:02.983 DEBUG:teuthology.orchestra.run.smithi072:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T01:15:03.037 DEBUG:teuthology.orchestra.run.smithi072:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T01:15:03.122 DEBUG:teuthology.orchestra.run.smithi072:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T01:15:03.167 DEBUG:teuthology.orchestra.run.smithi072:> set -ex 2023-12-02T01:15:03.167 DEBUG:teuthology.orchestra.run.smithi072:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-02T01:15:03.238 DEBUG:teuthology.orchestra.run.smithi175:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T01:15:03.286 DEBUG:teuthology.orchestra.run.smithi175:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T01:15:03.356 DEBUG:teuthology.orchestra.run.smithi175:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T01:15:03.400 DEBUG:teuthology.orchestra.run.smithi175:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T01:15:03.446 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2023-12-02T01:15:03.446 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-02T01:15:03.517 DEBUG:teuthology.orchestra.run.smithi062:> sudo service rsyslog restart 2023-12-02T01:15:03.520 DEBUG:teuthology.orchestra.run.smithi072:> sudo service rsyslog restart 2023-12-02T01:15:03.522 DEBUG:teuthology.orchestra.run.smithi175:> sudo service rsyslog restart 2023-12-02T01:15:03.578 INFO:teuthology.orchestra.run.smithi062.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T01:15:03.594 INFO:teuthology.orchestra.run.smithi072.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T01:15:03.618 INFO:teuthology.orchestra.run.smithi175.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T01:15:03.979 INFO:teuthology.run_tasks:Running task internal.timer... 2023-12-02T01:15:03.987 INFO:teuthology.task.internal:Starting timer... 2023-12-02T01:15:03.987 INFO:teuthology.run_tasks:Running task pcp... 2023-12-02T01:15:04.002 INFO:teuthology.run_tasks:Running task selinux... 2023-12-02T01:15:04.011 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2023-12-02T01:15:04.011 DEBUG:teuthology.orchestra.run.smithi062:> sudo service auditd rotate 2023-12-02T01:15:04.083 INFO:teuthology.orchestra.run.smithi062.stdout:Rotating logs: 2023-12-02T01:15:04.085 DEBUG:teuthology.orchestra.run.smithi072:> sudo service auditd rotate 2023-12-02T01:15:04.141 INFO:teuthology.orchestra.run.smithi072.stdout:Rotating logs: 2023-12-02T01:15:04.143 DEBUG:teuthology.orchestra.run.smithi175:> sudo service auditd rotate 2023-12-02T01:15:04.215 INFO:teuthology.orchestra.run.smithi175.stdout:Rotating logs: 2023-12-02T01:15:04.217 DEBUG:teuthology.task.selinux:Getting current SELinux state 2023-12-02T01:15:04.217 DEBUG:teuthology.orchestra.run.smithi062:> /usr/sbin/getenforce 2023-12-02T01:15:04.245 INFO:teuthology.orchestra.run.smithi062.stdout:Permissive 2023-12-02T01:15:04.245 DEBUG:teuthology.orchestra.run.smithi072:> /usr/sbin/getenforce 2023-12-02T01:15:04.285 INFO:teuthology.orchestra.run.smithi072.stdout:Permissive 2023-12-02T01:15:04.286 DEBUG:teuthology.orchestra.run.smithi175:> /usr/sbin/getenforce 2023-12-02T01:15:04.311 INFO:teuthology.orchestra.run.smithi175.stdout:Permissive 2023-12-02T01:15:04.312 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi062.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi072.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi175.front.sepia.ceph.com': 'permissive'} 2023-12-02T01:15:04.312 DEBUG:teuthology.orchestra.run.smithi062:> 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-12-02T01:15:04.340 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:15:04.341 DEBUG:teuthology.orchestra.run.smithi072:> 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-12-02T01:15:04.369 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:15:04.369 DEBUG:teuthology.orchestra.run.smithi175:> 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-12-02T01:15:04.396 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:15:04.397 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2023-12-02T01:15:04.397 DEBUG:teuthology.orchestra.run.smithi062:> sudo /usr/sbin/setenforce permissive 2023-12-02T01:15:04.425 DEBUG:teuthology.orchestra.run.smithi072:> sudo /usr/sbin/setenforce permissive 2023-12-02T01:15:04.452 DEBUG:teuthology.orchestra.run.smithi175:> sudo /usr/sbin/setenforce permissive 2023-12-02T01:15:04.489 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2023-12-02T01:15:04.499 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2023-12-02T01:15:04.504 INFO:teuthology.repo_utils:Fetching main from origin 2023-12-02T01:15:04.645 INFO:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2023-12-02T01:15:04.663 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-12-02T01:15:04.664 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi062.front.sepia.ceph.com,smithi072.front.sepia.ceph.com,smithi175.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2023-12-02T01:24:12.320 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi062.front.sepia.ceph.com'), Remote(name='ubuntu@smithi072.front.sepia.ceph.com'), Remote(name='ubuntu@smithi175.front.sepia.ceph.com')] 2023-12-02T01:24:12.320 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2023-12-02T01:24:12.321 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T01:24:12.393 DEBUG:teuthology.orchestra.run.smithi062:> true 2023-12-02T01:24:12.456 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi062.front.sepia.ceph.com' 2023-12-02T01:24:12.456 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi072.front.sepia.ceph.com' 2023-12-02T01:24:12.457 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi072.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T01:24:12.525 DEBUG:teuthology.orchestra.run.smithi072:> true 2023-12-02T01:24:12.597 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi072.front.sepia.ceph.com' 2023-12-02T01:24:12.597 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi175.front.sepia.ceph.com' 2023-12-02T01:24:12.598 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi175.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T01:24:12.668 DEBUG:teuthology.orchestra.run.smithi175:> true 2023-12-02T01:24:12.737 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi175.front.sepia.ceph.com' 2023-12-02T01:24:12.737 INFO:teuthology.run_tasks:Running task clock... 2023-12-02T01:24:12.748 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2023-12-02T01:24:12.748 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-02T01:24:12.749 DEBUG:teuthology.orchestra.run.smithi062:> 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-12-02T01:24:12.751 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-02T01:24:12.751 DEBUG:teuthology.orchestra.run.smithi072:> 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-12-02T01:24:12.753 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-02T01:24:12.753 DEBUG:teuthology.orchestra.run.smithi175:> 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-12-02T01:24:12.782 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-12-02T01:24:12.785 INFO:teuthology.orchestra.run.smithi072.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-12-02T01:24:12.799 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-12-02T01:24:12.799 INFO:teuthology.orchestra.run.smithi072.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-12-02T01:24:12.811 INFO:teuthology.orchestra.run.smithi175.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-12-02T01:24:12.826 INFO:teuthology.orchestra.run.smithi175.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-12-02T01:24:12.868 INFO:teuthology.orchestra.run.smithi062.stderr:sudo: ntpd: command not found 2023-12-02T01:24:12.872 INFO:teuthology.orchestra.run.smithi072.stderr:sudo: ntpd: command not found 2023-12-02T01:24:12.881 INFO:teuthology.orchestra.run.smithi062.stdout:506 Cannot talk to daemon 2023-12-02T01:24:12.884 INFO:teuthology.orchestra.run.smithi072.stdout:506 Cannot talk to daemon 2023-12-02T01:24:12.896 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-12-02T01:24:12.900 INFO:teuthology.orchestra.run.smithi072.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-12-02T01:24:12.909 INFO:teuthology.orchestra.run.smithi175.stderr:sudo: ntpd: command not found 2023-12-02T01:24:12.910 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-12-02T01:24:12.913 INFO:teuthology.orchestra.run.smithi072.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-12-02T01:24:12.921 INFO:teuthology.orchestra.run.smithi175.stdout:506 Cannot talk to daemon 2023-12-02T01:24:12.936 INFO:teuthology.orchestra.run.smithi175.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-12-02T01:24:12.950 INFO:teuthology.orchestra.run.smithi175.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-12-02T01:24:12.988 INFO:teuthology.orchestra.run.smithi062.stderr:bash: ntpq: command not found 2023-12-02T01:24:12.989 INFO:teuthology.orchestra.run.smithi072.stderr:bash: ntpq: command not found 2023-12-02T01:24:12.991 INFO:teuthology.orchestra.run.smithi062.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T01:24:12.991 INFO:teuthology.orchestra.run.smithi062.stdout:=============================================================================== 2023-12-02T01:24:12.991 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:12.991 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:12.991 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:12.992 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:12.993 INFO:teuthology.orchestra.run.smithi072.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T01:24:12.993 INFO:teuthology.orchestra.run.smithi072.stdout:=============================================================================== 2023-12-02T01:24:12.993 INFO:teuthology.orchestra.run.smithi072.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:12.993 INFO:teuthology.orchestra.run.smithi072.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:12.994 INFO:teuthology.orchestra.run.smithi072.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:12.994 INFO:teuthology.orchestra.run.smithi072.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:13.024 INFO:teuthology.orchestra.run.smithi175.stderr:bash: ntpq: command not found 2023-12-02T01:24:13.027 INFO:teuthology.orchestra.run.smithi175.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T01:24:13.027 INFO:teuthology.orchestra.run.smithi175.stdout:=============================================================================== 2023-12-02T01:24:13.027 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:13.027 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:13.027 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:13.027 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:24:13.028 INFO:teuthology.run_tasks:Running task pexec... 2023-12-02T01:24:13.037 INFO:teuthology.task.pexec:Executing custom commands... 2023-12-02T01:24:13.037 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi062.front.sepia.ceph.com 2023-12-02T01:24:13.038 DEBUG:teuthology.orchestra.run.smithi062:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-12-02T01:24:13.038 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi072.front.sepia.ceph.com 2023-12-02T01:24:13.038 DEBUG:teuthology.orchestra.run.smithi072:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-12-02T01:24:13.039 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi175.front.sepia.ceph.com 2023-12-02T01:24:13.039 DEBUG:teuthology.orchestra.run.smithi175:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-12-02T01:24:13.410 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:24:13.431 INFO:teuthology.orchestra.run.smithi062.stdout:Updating Subscription Management repositories. 2023-12-02T01:24:13.439 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:24:14.235 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:01:25 ago on Sat 02 Dec 2023 01:22:48 AM UTC. 2023-12-02T01:24:14.281 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:01:44 ago on Sat 02 Dec 2023 01:22:29 AM UTC. 2023-12-02T01:24:14.302 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:33 ago on Sat 02 Dec 2023 01:22:40 AM UTC. 2023-12-02T01:24:16.108 INFO:teuthology.orchestra.run.smithi072.stdout:Dependencies resolved. 2023-12-02T01:24:16.109 INFO:teuthology.orchestra.run.smithi072.stdout:================================================================================ 2023-12-02T01:24:16.109 INFO:teuthology.orchestra.run.smithi072.stdout: Package Architecture Version Repository Size 2023-12-02T01:24:16.109 INFO:teuthology.orchestra.run.smithi072.stdout:================================================================================ 2023-12-02T01:24:16.109 INFO:teuthology.orchestra.run.smithi072.stdout:Resetting modules: 2023-12-02T01:24:16.109 INFO:teuthology.orchestra.run.smithi072.stdout: container-tools 2023-12-02T01:24:16.109 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:24:16.110 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction Summary 2023-12-02T01:24:16.110 INFO:teuthology.orchestra.run.smithi072.stdout:================================================================================ 2023-12-02T01:24:16.110 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:24:16.158 INFO:teuthology.orchestra.run.smithi175.stdout:Dependencies resolved. 2023-12-02T01:24:16.159 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2023-12-02T01:24:16.159 INFO:teuthology.orchestra.run.smithi175.stdout: Package Architecture Version Repository Size 2023-12-02T01:24:16.159 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2023-12-02T01:24:16.159 INFO:teuthology.orchestra.run.smithi175.stdout:Resetting modules: 2023-12-02T01:24:16.159 INFO:teuthology.orchestra.run.smithi175.stdout: container-tools 2023-12-02T01:24:16.160 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:24:16.160 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction Summary 2023-12-02T01:24:16.160 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2023-12-02T01:24:16.160 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:24:16.295 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2023-12-02T01:24:16.298 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2023-12-02T01:24:16.298 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2023-12-02T01:24:16.298 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2023-12-02T01:24:16.298 INFO:teuthology.orchestra.run.smithi062.stdout:Resetting modules: 2023-12-02T01:24:16.298 INFO:teuthology.orchestra.run.smithi062.stdout: container-tools 2023-12-02T01:24:16.298 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:24:16.298 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2023-12-02T01:24:16.299 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2023-12-02T01:24:16.299 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:24:17.064 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:01:28 ago on Sat 02 Dec 2023 01:22:48 AM UTC. 2023-12-02T01:24:17.121 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:01:47 ago on Sat 02 Dec 2023 01:22:29 AM UTC. 2023-12-02T01:24:17.316 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:36 ago on Sat 02 Dec 2023 01:22:40 AM UTC. 2023-12-02T01:24:19.676 INFO:teuthology.orchestra.run.smithi072.stdout:Complete! 2023-12-02T01:24:20.143 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:24:20.158 INFO:teuthology.orchestra.run.smithi175.stdout:Complete! 2023-12-02T01:24:20.228 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2023-12-02T01:24:20.620 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:24:20.711 INFO:teuthology.orchestra.run.smithi062.stdout:Updating Subscription Management repositories. 2023-12-02T01:24:20.915 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:01:32 ago on Sat 02 Dec 2023 01:22:48 AM UTC. 2023-12-02T01:24:21.407 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:01:51 ago on Sat 02 Dec 2023 01:22:29 AM UTC. 2023-12-02T01:24:21.531 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:41 ago on Sat 02 Dec 2023 01:22:40 AM UTC. 2023-12-02T01:24:22.755 INFO:teuthology.orchestra.run.smithi072.stdout:Dependencies resolved. 2023-12-02T01:24:22.846 INFO:teuthology.orchestra.run.smithi072.stdout:========================================================================================================================== 2023-12-02T01:24:22.846 INFO:teuthology.orchestra.run.smithi072.stdout: Package Arch Version Repository Size 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout:========================================================================================================================== 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout:Installing group/module packages: 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: buildah x86_64 1.19.9-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.8 M 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: skopeo x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.4 M 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: toolbox x86_64 0.0.99.3-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.2 M 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout:Installing dependencies: 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout:Downgrading: 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: conmon x86_64 2:2.0.26-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: container-selinux noarch 2:2.178.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 53 k 2023-12-02T01:24:22.847 INFO:teuthology.orchestra.run.smithi072.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 19 M 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: containers-common x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 91 k 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 72 k 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: podman-catatonit x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 322 k 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: runc x86_64 1.0.0-73.rc95.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.9 M 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout:Installing module profiles: 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: container-tools/common 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout:Enabling module streams: 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: container-tools 3.0 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:24:22.848 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction Summary 2023-12-02T01:24:22.849 INFO:teuthology.orchestra.run.smithi072.stdout:========================================================================================================================== 2023-12-02T01:24:22.849 INFO:teuthology.orchestra.run.smithi072.stdout:Install 7 Packages 2023-12-02T01:24:22.849 INFO:teuthology.orchestra.run.smithi072.stdout:Downgrade 12 Packages 2023-12-02T01:24:22.849 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:24:22.849 INFO:teuthology.orchestra.run.smithi072.stdout:Total download size: 51 M 2023-12-02T01:24:22.849 INFO:teuthology.orchestra.run.smithi072.stdout:Downloading Packages: 2023-12-02T01:24:22.928 INFO:teuthology.orchestra.run.smithi072.stdout:(1/19): container-selinux-2.178.0-2.module+el8. 678 kB/s | 53 kB 00:00 2023-12-02T01:24:22.954 INFO:teuthology.orchestra.run.smithi072.stdout:(2/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 495 kB/s | 51 kB 00:00 2023-12-02T01:24:22.979 INFO:teuthology.orchestra.run.smithi072.stdout:(3/19): containers-common-1.2.4-1.module+el8.6. 705 kB/s | 91 kB 00:00 2023-12-02T01:24:23.013 INFO:teuthology.orchestra.run.smithi072.stdout:(4/19): criu-3.15-1.module+el8.6.0+14874+644362 5.9 MB/s | 511 kB 00:00 2023-12-02T01:24:23.039 INFO:teuthology.orchestra.run.smithi072.stdout:(5/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 818 kB/s | 69 kB 00:00 2023-12-02T01:24:23.064 INFO:teuthology.orchestra.run.smithi072.stdout:(6/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 1.4 MB/s | 72 kB 00:00 2023-12-02T01:24:23.105 INFO:teuthology.orchestra.run.smithi175.stdout:Dependencies resolved. 2023-12-02T01:24:23.116 INFO:teuthology.orchestra.run.smithi072.stdout:(7/19): podman-docker-3.0.1-9.module+el8.6.0+14 1.1 MB/s | 56 kB 00:00 2023-12-02T01:24:23.184 INFO:teuthology.orchestra.run.smithi072.stdout:(8/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 14 MB/s | 2.9 MB 00:00 2023-12-02T01:24:23.197 INFO:teuthology.orchestra.run.smithi175.stdout:========================================================================================================================== 2023-12-02T01:24:23.197 INFO:teuthology.orchestra.run.smithi175.stdout: Package Arch Version Repository Size 2023-12-02T01:24:23.197 INFO:teuthology.orchestra.run.smithi175.stdout:========================================================================================================================== 2023-12-02T01:24:23.197 INFO:teuthology.orchestra.run.smithi175.stdout:Installing group/module packages: 2023-12-02T01:24:23.197 INFO:teuthology.orchestra.run.smithi175.stdout: buildah x86_64 1.19.9-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.8 M 2023-12-02T01:24:23.197 INFO:teuthology.orchestra.run.smithi175.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-12-02T01:24:23.197 INFO:teuthology.orchestra.run.smithi175.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-12-02T01:24:23.197 INFO:teuthology.orchestra.run.smithi175.stdout: skopeo x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.4 M 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: toolbox x86_64 0.0.99.3-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.2 M 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout:Installing dependencies: 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout:Downgrading: 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: conmon x86_64 2:2.0.26-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: container-selinux noarch 2:2.178.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 53 k 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 19 M 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: containers-common x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 91 k 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 72 k 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-12-02T01:24:23.198 INFO:teuthology.orchestra.run.smithi175.stdout: podman-catatonit x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 322 k 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout: runc x86_64 1.0.0-73.rc95.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.9 M 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout:Installing module profiles: 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout: container-tools/common 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout:Enabling module streams: 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout: container-tools 3.0 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction Summary 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout:========================================================================================================================== 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout:Install 7 Packages 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout:Downgrade 12 Packages 2023-12-02T01:24:23.199 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:24:23.200 INFO:teuthology.orchestra.run.smithi175.stdout:Total download size: 51 M 2023-12-02T01:24:23.200 INFO:teuthology.orchestra.run.smithi175.stdout:Downloading Packages: 2023-12-02T01:24:23.209 INFO:teuthology.orchestra.run.smithi072.stdout:(9/19): conmon-2.0.26-1.module+el8.6.0+14874+64 553 kB/s | 51 kB 00:00 2023-12-02T01:24:23.271 INFO:teuthology.orchestra.run.smithi175.stdout:(1/19): containers-common-1.2.4-1.module+el8.6. 1.3 MB/s | 91 kB 00:00 2023-12-02T01:24:23.293 INFO:teuthology.orchestra.run.smithi072.stdout:(10/19): podman-catatonit-3.0.1-9.module+el8.6. 3.8 MB/s | 322 kB 00:00 2023-12-02T01:24:23.296 INFO:teuthology.orchestra.run.smithi175.stdout:(2/19): container-selinux-2.178.0-2.module+el8. 552 kB/s | 53 kB 00:00 2023-12-02T01:24:23.322 INFO:teuthology.orchestra.run.smithi175.stdout:(3/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 423 kB/s | 51 kB 00:00 2023-12-02T01:24:23.356 INFO:teuthology.orchestra.run.smithi175.stdout:(4/19): criu-3.15-1.module+el8.6.0+14874+644362 6.0 MB/s | 511 kB 00:00 2023-12-02T01:24:23.381 INFO:teuthology.orchestra.run.smithi175.stdout:(5/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 1.2 MB/s | 69 kB 00:00 2023-12-02T01:24:23.398 INFO:teuthology.orchestra.run.smithi175.stdout:(6/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 1.7 MB/s | 72 kB 00:00 2023-12-02T01:24:23.440 INFO:teuthology.orchestra.run.smithi175.stdout:(7/19): podman-docker-3.0.1-9.module+el8.6.0+14 1.3 MB/s | 56 kB 00:00 2023-12-02T01:24:23.499 INFO:teuthology.orchestra.run.smithi175.stdout:(8/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 16 MB/s | 2.9 MB 00:00 2023-12-02T01:24:23.522 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2023-12-02T01:24:23.524 INFO:teuthology.orchestra.run.smithi175.stdout:(9/19): conmon-2.0.26-1.module+el8.6.0+14874+64 609 kB/s | 51 kB 00:00 2023-12-02T01:24:23.535 INFO:teuthology.orchestra.run.smithi072.stdout:(11/19): podman-3.0.1-9.module+el8.6.0+14874+64 22 MB/s | 11 MB 00:00 2023-12-02T01:24:23.560 INFO:teuthology.orchestra.run.smithi072.stdout:(12/19): yajl-2.1.0-10.el8.x86_64.rpm 152 kB/s | 41 kB 00:00 2023-12-02T01:24:23.574 INFO:teuthology.orchestra.run.smithi175.stdout:(10/19): podman-catatonit-3.0.1-9.module+el8.6. 6.3 MB/s | 322 kB 00:00 2023-12-02T01:24:23.626 INFO:teuthology.orchestra.run.smithi062.stdout:========================================================================================================================== 2023-12-02T01:24:23.626 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2023-12-02T01:24:23.626 INFO:teuthology.orchestra.run.smithi062.stdout:========================================================================================================================== 2023-12-02T01:24:23.626 INFO:teuthology.orchestra.run.smithi062.stdout:Installing group/module packages: 2023-12-02T01:24:23.626 INFO:teuthology.orchestra.run.smithi062.stdout: buildah x86_64 1.19.9-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.8 M 2023-12-02T01:24:23.626 INFO:teuthology.orchestra.run.smithi062.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: skopeo x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.4 M 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: toolbox x86_64 0.0.99.3-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.2 M 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout:Downgrading: 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: conmon x86_64 2:2.0.26-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: container-selinux noarch 2:2.178.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 53 k 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 19 M 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: containers-common x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 91 k 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 72 k 2023-12-02T01:24:23.627 INFO:teuthology.orchestra.run.smithi062.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout: podman-catatonit x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 322 k 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout: runc x86_64 1.0.0-73.rc95.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.9 M 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout:Installing module profiles: 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout: container-tools/common 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout:Enabling module streams: 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout: container-tools 3.0 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout:========================================================================================================================== 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout:Install 7 Packages 2023-12-02T01:24:23.628 INFO:teuthology.orchestra.run.smithi062.stdout:Downgrade 12 Packages 2023-12-02T01:24:23.629 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:24:23.629 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 51 M 2023-12-02T01:24:23.629 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2023-12-02T01:24:23.646 INFO:teuthology.orchestra.run.smithi175.stdout:(11/19): yajl-2.1.0-10.el8.x86_64.rpm 568 kB/s | 41 kB 00:00 2023-12-02T01:24:23.653 INFO:teuthology.orchestra.run.smithi072.stdout:(13/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 19 MB/s | 2.2 MB 00:00 2023-12-02T01:24:23.707 INFO:teuthology.orchestra.run.smithi062.stdout:(1/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 669 kB/s | 51 kB 00:00 2023-12-02T01:24:23.733 INFO:teuthology.orchestra.run.smithi062.stdout:(2/19): container-selinux-2.178.0-2.module+el8. 518 kB/s | 53 kB 00:00 2023-12-02T01:24:23.758 INFO:teuthology.orchestra.run.smithi062.stdout:(3/19): containers-common-1.2.4-1.module+el8.6. 714 kB/s | 91 kB 00:00 2023-12-02T01:24:23.767 INFO:teuthology.orchestra.run.smithi175.stdout:(12/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 18 MB/s | 2.2 MB 00:00 2023-12-02T01:24:23.801 INFO:teuthology.orchestra.run.smithi062.stdout:(4/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 1.0 MB/s | 69 kB 00:00 2023-12-02T01:24:23.842 INFO:teuthology.orchestra.run.smithi062.stdout:(5/19): criu-3.15-1.module+el8.6.0+14874+644362 3.7 MB/s | 511 kB 00:00 2023-12-02T01:24:23.862 INFO:teuthology.orchestra.run.smithi072.stdout:(14/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 21 MB/s | 6.4 MB 00:00 2023-12-02T01:24:23.867 INFO:teuthology.orchestra.run.smithi062.stdout:(6/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 1.1 MB/s | 72 kB 00:00 2023-12-02T01:24:23.875 INFO:teuthology.orchestra.run.smithi175.stdout:(13/19): podman-3.0.1-9.module+el8.6.0+14874+64 22 MB/s | 11 MB 00:00 2023-12-02T01:24:23.909 INFO:teuthology.orchestra.run.smithi062.stdout:(7/19): podman-docker-3.0.1-9.module+el8.6.0+14 1.3 MB/s | 56 kB 00:00 2023-12-02T01:24:23.984 INFO:teuthology.orchestra.run.smithi062.stdout:(8/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 13 MB/s | 2.9 MB 00:00 2023-12-02T01:24:24.009 INFO:teuthology.orchestra.run.smithi062.stdout:(9/19): conmon-2.0.26-1.module+el8.6.0+14874+64 509 kB/s | 51 kB 00:00 2023-12-02T01:24:24.060 INFO:teuthology.orchestra.run.smithi062.stdout:(10/19): podman-catatonit-3.0.1-9.module+el8.6. 6.3 MB/s | 322 kB 00:00 2023-12-02T01:24:24.067 INFO:teuthology.orchestra.run.smithi175.stdout:(14/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 21 MB/s | 6.4 MB 00:00 2023-12-02T01:24:24.102 INFO:teuthology.orchestra.run.smithi062.stdout:(11/19): yajl-2.1.0-10.el8.x86_64.rpm 982 kB/s | 41 kB 00:00 2023-12-02T01:24:24.167 INFO:teuthology.orchestra.run.smithi175.stdout:(15/19): buildah-1.19.9-3.module+el8.6.0+14874+ 23 MB/s | 6.8 MB 00:00 2023-12-02T01:24:24.180 INFO:teuthology.orchestra.run.smithi072.stdout:(15/19): containernetworking-plugins-0.9.1-1.mo 19 MB/s | 19 MB 00:00 2023-12-02T01:24:24.193 INFO:teuthology.orchestra.run.smithi062.stdout:(12/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 24 MB/s | 2.2 MB 00:00 2023-12-02T01:24:24.218 INFO:teuthology.orchestra.run.smithi175.stdout:(16/19): cockpit-podman-29-2.module+el8.6.0+148 7.1 MB/s | 1.1 MB 00:00 2023-12-02T01:24:24.238 INFO:teuthology.orchestra.run.smithi072.stdout:(16/19): cockpit-podman-29-2.module+el8.6.0+148 2.8 MB/s | 1.1 MB 00:00 2023-12-02T01:24:24.243 INFO:teuthology.orchestra.run.smithi175.stdout:(17/19): crun-0.18-3.module+el8.6.0+14874+64436 2.4 MB/s | 185 kB 00:00 2023-12-02T01:24:24.263 INFO:teuthology.orchestra.run.smithi072.stdout:(17/19): crun-0.18-3.module+el8.6.0+14874+64436 2.2 MB/s | 185 kB 00:00 2023-12-02T01:24:24.268 INFO:teuthology.orchestra.run.smithi175.stdout:(18/19): udica-0.2.4-1.module+el8.6.0+14874+644 1.0 MB/s | 51 kB 00:00 2023-12-02T01:24:24.289 INFO:teuthology.orchestra.run.smithi072.stdout:(18/19): udica-0.2.4-1.module+el8.6.0+14874+644 1.0 MB/s | 51 kB 00:00 2023-12-02T01:24:24.352 INFO:teuthology.orchestra.run.smithi062.stdout:(13/19): podman-3.0.1-9.module+el8.6.0+14874+64 21 MB/s | 11 MB 00:00 2023-12-02T01:24:24.423 INFO:teuthology.orchestra.run.smithi072.stdout:(19/19): buildah-1.19.9-3.module+el8.6.0+14874+ 8.8 MB/s | 6.8 MB 00:00 2023-12-02T01:24:24.423 INFO:teuthology.orchestra.run.smithi072.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:24:24.423 INFO:teuthology.orchestra.run.smithi072.stdout:Total 32 MB/s | 51 MB 00:01 2023-12-02T01:24:24.477 INFO:teuthology.orchestra.run.smithi175.stdout:(19/19): containernetworking-plugins-0.9.1-1.mo 19 MB/s | 19 MB 00:00 2023-12-02T01:24:24.477 INFO:teuthology.orchestra.run.smithi175.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:24:24.477 INFO:teuthology.orchestra.run.smithi175.stdout:Total 40 MB/s | 51 MB 00:01 2023-12-02T01:24:24.519 INFO:teuthology.orchestra.run.smithi062.stdout:(14/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 20 MB/s | 6.4 MB 00:00 2023-12-02T01:24:24.586 INFO:teuthology.orchestra.run.smithi062.stdout:(15/19): cockpit-podman-29-2.module+el8.6.0+148 16 MB/s | 1.1 MB 00:00 2023-12-02T01:24:24.695 INFO:teuthology.orchestra.run.smithi062.stdout:(16/19): buildah-1.19.9-3.module+el8.6.0+14874+ 20 MB/s | 6.8 MB 00:00 2023-12-02T01:24:24.720 INFO:teuthology.orchestra.run.smithi062.stdout:(17/19): crun-0.18-3.module+el8.6.0+14874+64436 1.4 MB/s | 185 kB 00:00 2023-12-02T01:24:24.770 INFO:teuthology.orchestra.run.smithi062.stdout:(18/19): udica-0.2.4-1.module+el8.6.0+14874+644 674 kB/s | 51 kB 00:00 2023-12-02T01:24:24.914 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction check 2023-12-02T01:24:24.950 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction check 2023-12-02T01:24:24.955 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction check succeeded. 2023-12-02T01:24:24.955 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction test 2023-12-02T01:24:24.962 INFO:teuthology.orchestra.run.smithi062.stdout:(19/19): containernetworking-plugins-0.9.1-1.mo 19 MB/s | 19 MB 00:00 2023-12-02T01:24:24.962 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:24:24.963 INFO:teuthology.orchestra.run.smithi062.stdout:Total 38 MB/s | 51 MB 00:01 2023-12-02T01:24:24.993 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction check succeeded. 2023-12-02T01:24:24.993 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction test 2023-12-02T01:24:25.366 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction test succeeded. 2023-12-02T01:24:25.370 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction 2023-12-02T01:24:25.430 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction test succeeded. 2023-12-02T01:24:25.434 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction 2023-12-02T01:24:25.457 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2023-12-02T01:24:25.503 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2023-12-02T01:24:25.503 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2023-12-02T01:24:25.966 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2023-12-02T01:24:25.971 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2023-12-02T01:24:26.536 INFO:teuthology.orchestra.run.smithi072.stdout: Preparing : 1/1 2023-12-02T01:24:26.595 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-12-02T01:24:26.612 INFO:teuthology.orchestra.run.smithi175.stdout: Preparing : 1/1 2023-12-02T01:24:26.662 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-12-02T01:24:26.784 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T01:24:26.794 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T01:24:26.814 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:26.834 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T01:24:26.843 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T01:24:26.860 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:26.993 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:27.051 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:27.166 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2023-12-02T01:24:27.226 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-12-02T01:24:27.399 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T01:24:27.410 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T01:24:27.430 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:27.599 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:44.112 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:44.391 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:45.597 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T01:24:45.884 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-12-02T01:24:46.144 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-12-02T01:24:46.209 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-12-02T01:24:46.373 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-12-02T01:24:46.462 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-12-02T01:24:46.562 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-12-02T01:24:46.670 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-12-02T01:24:46.780 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-12-02T01:24:46.781 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-12-02T01:24:46.781 INFO:teuthology.orchestra.run.smithi175.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-12-02T01:24:46.781 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:24:46.847 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-12-02T01:24:47.106 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-12-02T01:24:47.106 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-12-02T01:24:47.106 INFO:teuthology.orchestra.run.smithi072.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-12-02T01:24:47.106 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:24:47.464 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-12-02T01:24:47.587 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-12-02T01:24:47.679 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-12-02T01:24:47.839 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-12-02T01:24:47.914 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-12-02T01:24:47.936 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-12-02T01:24:48.078 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-12-02T01:24:48.232 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-12-02T01:24:48.298 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-12-02T01:24:48.298 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-12-02T01:24:48.298 INFO:teuthology.orchestra.run.smithi062.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-12-02T01:24:48.298 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:24:49.089 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-12-02T01:24:49.291 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-12-02T01:24:49.323 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-12-02T01:24:49.616 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-12-02T01:24:49.968 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-12-02T01:24:50.005 INFO:teuthology.orchestra.run.smithi175.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-12-02T01:24:50.251 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-12-02T01:24:50.288 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-12-02T01:24:50.630 INFO:teuthology.orchestra.run.smithi072.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-12-02T01:24:50.817 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-12-02T01:24:50.919 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-12-02T01:24:51.023 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-12-02T01:24:51.119 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-12-02T01:24:51.509 INFO:teuthology.orchestra.run.smithi062.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-12-02T01:24:51.657 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-12-02T01:24:51.787 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-12-02T01:24:51.805 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-12-02T01:24:52.037 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-12-02T01:24:52.237 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-12-02T01:24:52.400 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-12-02T01:24:52.463 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-12-02T01:24:52.571 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-12-02T01:24:52.594 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-12-02T01:24:52.594 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T01:24:52.669 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-12-02T01:24:52.879 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-12-02T01:24:52.942 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T01:24:53.089 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-12-02T01:24:53.124 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-12-02T01:24:53.124 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T01:24:53.204 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-12-02T01:24:53.204 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T01:24:53.320 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-12-02T01:24:53.330 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T01:24:53.463 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T01:24:53.513 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T01:24:53.546 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-12-02T01:24:53.639 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-12-02T01:24:53.688 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-12-02T01:24:53.688 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T01:24:53.722 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-12-02T01:24:53.789 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-12-02T01:24:53.874 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T01:24:53.938 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-12-02T01:24:53.979 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-12-02T01:24:54.015 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T01:24:54.063 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-12-02T01:24:54.064 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T01:24:54.130 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-12-02T01:24:54.187 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-12-02T01:24:54.254 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-12-02T01:24:54.373 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-12-02T01:24:54.394 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T01:24:54.431 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-12-02T01:24:54.431 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:54.560 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-12-02T01:24:54.560 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T01:24:54.562 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-12-02T01:24:54.588 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:54.715 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-12-02T01:24:54.773 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T01:24:54.865 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-12-02T01:24:54.905 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T01:24:55.033 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-12-02T01:24:55.033 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:55.056 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-12-02T01:24:55.115 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-12-02T01:24:55.231 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-12-02T01:24:55.248 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:55.393 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-12-02T01:24:55.533 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:55.533 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-12-02T01:24:55.533 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-12-02T01:24:55.533 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-12-02T01:24:55.533 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-12-02T01:24:55.533 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-12-02T01:24:55.533 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-12-02T01:24:55.534 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-12-02T01:24:55.534 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-12-02T01:24:55.534 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-12-02T01:24:55.534 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-12-02T01:24:55.534 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-12-02T01:24:55.534 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-12-02T01:24:55.535 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-12-02T01:24:55.535 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-12-02T01:24:55.535 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T01:24:55.536 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-12-02T01:24:55.537 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-12-02T01:24:55.537 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-12-02T01:24:55.537 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-12-02T01:24:55.537 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-12-02T01:24:55.537 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-12-02T01:24:55.555 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-12-02T01:24:55.688 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-12-02T01:24:55.785 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-12-02T01:24:55.830 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-12-02T01:24:55.831 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:56.013 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-12-02T01:24:56.172 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-12-02T01:24:56.173 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T01:24:56.174 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-12-02T01:24:56.174 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-12-02T01:24:56.174 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-12-02T01:24:56.174 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-12-02T01:24:56.174 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-12-02T01:24:56.175 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-12-02T01:24:56.553 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-12-02T01:24:56.958 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T01:24:56.958 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-12-02T01:24:56.958 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-12-02T01:24:56.958 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-12-02T01:24:56.958 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-12-02T01:24:56.958 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-12-02T01:24:56.958 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-12-02T01:24:56.959 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-12-02T01:24:56.960 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-12-02T01:24:56.983 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-12-02T01:24:56.984 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:02:27 ago on Sat 02 Dec 2023 01:22:29 AM UTC. 2023-12-02T01:24:57.528 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-12-02T01:24:57.528 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:02:09 ago on Sat 02 Dec 2023 01:22:48 AM UTC. 2023-12-02T01:24:58.310 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-12-02T01:24:58.310 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:02:17 ago on Sat 02 Dec 2023 01:22:40 AM UTC. 2023-12-02T01:24:59.373 INFO:teuthology.orchestra.run.smithi175.stdout:Installed products updated. 2023-12-02T01:24:59.573 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:24:59.573 INFO:teuthology.orchestra.run.smithi175.stdout:Downgraded: 2023-12-02T01:24:59.573 INFO:teuthology.orchestra.run.smithi175.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.573 INFO:teuthology.orchestra.run.smithi175.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:24:59.573 INFO:teuthology.orchestra.run.smithi175.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.573 INFO:teuthology.orchestra.run.smithi175.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout:Installed: 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.574 INFO:teuthology.orchestra.run.smithi175.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.575 INFO:teuthology.orchestra.run.smithi175.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:24:59.575 INFO:teuthology.orchestra.run.smithi175.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:24:59.575 INFO:teuthology.orchestra.run.smithi175.stdout: yajl-2.1.0-10.el8.x86_64 2023-12-02T01:24:59.575 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:24:59.575 INFO:teuthology.orchestra.run.smithi175.stdout:Complete! 2023-12-02T01:24:59.769 DEBUG:teuthology.parallel:result is None 2023-12-02T01:24:59.977 INFO:teuthology.orchestra.run.smithi072.stdout:Installed products updated. 2023-12-02T01:25:00.172 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:25:00.172 INFO:teuthology.orchestra.run.smithi072.stdout:Downgraded: 2023-12-02T01:25:00.172 INFO:teuthology.orchestra.run.smithi072.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.172 INFO:teuthology.orchestra.run.smithi072.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:25:00.172 INFO:teuthology.orchestra.run.smithi072.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.172 INFO:teuthology.orchestra.run.smithi072.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.172 INFO:teuthology.orchestra.run.smithi072.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout:Installed: 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:25:00.173 INFO:teuthology.orchestra.run.smithi072.stdout: yajl-2.1.0-10.el8.x86_64 2023-12-02T01:25:00.174 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:25:00.174 INFO:teuthology.orchestra.run.smithi072.stdout:Complete! 2023-12-02T01:25:00.364 DEBUG:teuthology.parallel:result is None 2023-12-02T01:25:00.890 INFO:teuthology.orchestra.run.smithi062.stdout:Installed products updated. 2023-12-02T01:25:01.107 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout:Downgraded: 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:25:01.108 INFO:teuthology.orchestra.run.smithi062.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: yajl-2.1.0-10.el8.x86_64 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:25:01.109 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2023-12-02T01:25:01.325 DEBUG:teuthology.parallel:result is None 2023-12-02T01:25:01.325 INFO:teuthology.run_tasks:Running task install... 2023-12-02T01:25:01.334 DEBUG:teuthology.task.install:project ceph 2023-12-02T01:25:01.334 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7'}} 2023-12-02T01:25:01.334 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7'} 2023-12-02T01:25:01.334 INFO:teuthology.task.install:Using flavor: default 2023-12-02T01:25:01.340 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2023-12-02T01:25:01.340 INFO:teuthology.task.install:extra packages: [] 2023-12-02T01:25:01.340 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7', 'tag': None, 'wait_for_package': False} 2023-12-02T01:25:01.341 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=bed7681480ccb0192b91a35e691658867e1e96b7 2023-12-02T01:25:01.342 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7', 'tag': None, 'wait_for_package': False} 2023-12-02T01:25:01.343 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=bed7681480ccb0192b91a35e691658867e1e96b7 2023-12-02T01:25:01.344 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7', 'tag': None, 'wait_for_package': False} 2023-12-02T01:25:01.344 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=bed7681480ccb0192b91a35e691658867e1e96b7 2023-12-02T01:25:01.496 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/ 2023-12-02T01:25:01.496 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7631.gbed76814 2023-12-02T01:25:01.573 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/ 2023-12-02T01:25:01.573 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7631.gbed76814 2023-12-02T01:25:01.577 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/ 2023-12-02T01:25:01.578 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7631.gbed76814 2023-12-02T01:25:01.676 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-12-02T01:25:01.676 DEBUG:teuthology.orchestra.run.smithi072:> set -ex 2023-12-02T01:25:01.676 DEBUG:teuthology.orchestra.run.smithi072:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-12-02T01:25:01.682 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-12-02T01:25:01.682 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2023-12-02T01:25:01.682 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-12-02T01:25:01.711 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2023-12-02T01:25:01.711 DEBUG:teuthology.orchestra.run.smithi072:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/bed7681480ccb0192b91a35e691658867e1e96b7/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-12-02T01:25:01.712 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2023-12-02T01:25:01.712 DEBUG:teuthology.orchestra.run.smithi062:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/bed7681480ccb0192b91a35e691658867e1e96b7/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-12-02T01:25:01.739 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-12-02T01:25:01.739 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2023-12-02T01:25:01.739 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-12-02T01:25:01.771 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2023-12-02T01:25:01.772 DEBUG:teuthology.orchestra.run.smithi175:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/bed7681480ccb0192b91a35e691658867e1e96b7/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-12-02T01:25:01.782 DEBUG:teuthology.orchestra.run.smithi072:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2023-12-02T01:25:01.783 DEBUG:teuthology.orchestra.run.smithi062:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2023-12-02T01:25:01.843 DEBUG:teuthology.orchestra.run.smithi175:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2023-12-02T01:25:01.861 DEBUG:teuthology.orchestra.run.smithi062:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2023-12-02T01:25:01.862 DEBUG:teuthology.orchestra.run.smithi072:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2023-12-02T01:25:01.924 DEBUG:teuthology.orchestra.run.smithi175:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2023-12-02T01:25:01.927 INFO:teuthology.orchestra.run.smithi062.stdout:check_obsoletes = 1 2023-12-02T01:25:01.928 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum clean all 2023-12-02T01:25:01.931 INFO:teuthology.orchestra.run.smithi072.stdout:check_obsoletes = 1 2023-12-02T01:25:01.932 DEBUG:teuthology.orchestra.run.smithi072:> sudo yum clean all 2023-12-02T01:25:01.993 INFO:teuthology.orchestra.run.smithi175.stdout:check_obsoletes = 1 2023-12-02T01:25:01.994 DEBUG:teuthology.orchestra.run.smithi175:> sudo yum clean all 2023-12-02T01:25:02.307 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:25:02.318 INFO:teuthology.orchestra.run.smithi062.stdout:Updating Subscription Management repositories. 2023-12-02T01:25:02.367 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:25:02.628 INFO:teuthology.orchestra.run.smithi062.stdout:44 files removed 2023-12-02T01:25:02.633 INFO:teuthology.orchestra.run.smithi072.stdout:44 files removed 2023-12-02T01:25:02.642 INFO:teuthology.orchestra.run.smithi175.stdout:44 files removed 2023-12-02T01:25:02.676 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-radosgw 2023-12-02T01:25:02.679 DEBUG:teuthology.orchestra.run.smithi072:> sudo yum -y install ceph-radosgw 2023-12-02T01:25:02.689 DEBUG:teuthology.orchestra.run.smithi175:> sudo yum -y install ceph-radosgw 2023-12-02T01:25:03.013 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:25:03.019 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:25:03.026 INFO:teuthology.orchestra.run.smithi062.stdout:Updating Subscription Management repositories. 2023-12-02T01:25:03.868 INFO:teuthology.orchestra.run.smithi072.stdout:ceph packages for x86_64 175 kB/s | 81 kB 00:00 2023-12-02T01:25:03.919 INFO:teuthology.orchestra.run.smithi062.stdout:ceph packages for x86_64 169 kB/s | 81 kB 00:00 2023-12-02T01:25:03.919 INFO:teuthology.orchestra.run.smithi175.stdout:ceph packages for x86_64 162 kB/s | 81 kB 00:00 2023-12-02T01:25:04.295 INFO:teuthology.orchestra.run.smithi062.stdout:ceph noarch packages 28 kB/s | 9.5 kB 00:00 2023-12-02T01:25:04.394 INFO:teuthology.orchestra.run.smithi072.stdout:ceph noarch packages 19 kB/s | 9.5 kB 00:00 2023-12-02T01:25:04.403 INFO:teuthology.orchestra.run.smithi175.stdout:ceph noarch packages 21 kB/s | 9.5 kB 00:00 2023-12-02T01:25:04.554 INFO:teuthology.orchestra.run.smithi062.stdout:ceph source packages 6.4 kB/s | 1.5 kB 00:00 2023-12-02T01:25:04.689 INFO:teuthology.orchestra.run.smithi072.stdout:ceph source packages 5.5 kB/s | 1.5 kB 00:00 2023-12-02T01:25:04.696 INFO:teuthology.orchestra.run.smithi175.stdout:ceph source packages 5.5 kB/s | 1.5 kB 00:00 2023-12-02T01:25:04.737 INFO:teuthology.orchestra.run.smithi062.stdout:Copr repo for python3-asyncssh owned by ceph 22 kB/s | 3.5 kB 00:00 2023-12-02T01:25:04.840 INFO:teuthology.orchestra.run.smithi072.stdout:Copr repo for python3-asyncssh owned by ceph 27 kB/s | 3.5 kB 00:00 2023-12-02T01:25:04.846 INFO:teuthology.orchestra.run.smithi175.stdout:Copr repo for python3-asyncssh owned by ceph 26 kB/s | 3.5 kB 00:00 2023-12-02T01:25:05.942 INFO:teuthology.orchestra.run.smithi072.stdout:Extra Packages for Enterprise Linux 15 MB/s | 16 MB 00:01 2023-12-02T01:25:08.638 INFO:teuthology.orchestra.run.smithi062.stdout:Extra Packages for Enterprise Linux 4.1 MB/s | 16 MB 00:03 2023-12-02T01:25:09.493 INFO:teuthology.orchestra.run.smithi072.stdout:lab-extras 397 kB/s | 24 kB 00:00 2023-12-02T01:25:09.541 INFO:teuthology.orchestra.run.smithi175.stdout:Extra Packages for Enterprise Linux 3.4 MB/s | 16 MB 00:04 2023-12-02T01:25:10.773 INFO:teuthology.orchestra.run.smithi072.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 44 MB/s | 53 MB 00:01 2023-12-02T01:25:12.447 INFO:teuthology.orchestra.run.smithi062.stdout:lab-extras 184 kB/s | 24 kB 00:00 2023-12-02T01:25:13.072 INFO:teuthology.orchestra.run.smithi175.stdout:lab-extras 402 kB/s | 24 kB 00:00 2023-12-02T01:25:13.415 INFO:teuthology.orchestra.run.smithi062.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 59 MB/s | 53 MB 00:00 2023-12-02T01:25:13.932 INFO:teuthology.orchestra.run.smithi175.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 60 MB/s | 47 MB 00:00 2023-12-02T01:25:19.151 INFO:teuthology.orchestra.run.smithi072.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 41 MB/s | 47 MB 00:01 2023-12-02T01:25:21.857 INFO:teuthology.orchestra.run.smithi175.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 64 MB/s | 53 MB 00:00 2023-12-02T01:25:22.266 INFO:teuthology.orchestra.run.smithi062.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 43 MB/s | 47 MB 00:01 2023-12-02T01:25:30.129 INFO:teuthology.orchestra.run.smithi072.stdout:Dependencies resolved. 2023-12-02T01:25:30.134 INFO:teuthology.orchestra.run.smithi072.stdout:==================================================================================================== 2023-12-02T01:25:30.134 INFO:teuthology.orchestra.run.smithi072.stdout: Package Arch Version Repository Size 2023-12-02T01:25:30.134 INFO:teuthology.orchestra.run.smithi072.stdout:==================================================================================================== 2023-12-02T01:25:30.134 INFO:teuthology.orchestra.run.smithi072.stdout:Installing: 2023-12-02T01:25:30.134 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-radosgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 14 M 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout:Upgrading: 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: librados2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.8 M 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: librbd1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.7 M 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout:Installing dependencies: 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-base x86_64 2:18.0.0-7631.gbed76814.el8 ceph 5.4 M 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 23 M 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-selinux x86_64 2:18.0.0-7631.gbed76814.el8 ceph 24 k 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: libcephfs2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 839 k 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-12-02T01:25:30.135 INFO:teuthology.orchestra.run.smithi072.stdout: libradosstriper1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 517 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: librgw2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 6.9 M 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: python3-ceph-argparse x86_64 2:18.0.0-7631.gbed76814.el8 ceph 45 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: python3-ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 128 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: python3-cephfs x86_64 2:18.0.0-7631.gbed76814.el8 ceph 197 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: python3-rados x86_64 2:18.0.0-7631.gbed76814.el8 ceph 371 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: python3-rbd x86_64 2:18.0.0-7631.gbed76814.el8 ceph 365 k 2023-12-02T01:25:30.136 INFO:teuthology.orchestra.run.smithi072.stdout: python3-rgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 107 k 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction Summary 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout:==================================================================================================== 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout:Install 21 Packages 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout:Upgrade 2 Packages 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout:Total download size: 62 M 2023-12-02T01:25:30.137 INFO:teuthology.orchestra.run.smithi072.stdout:Downloading Packages: 2023-12-02T01:25:32.448 INFO:teuthology.orchestra.run.smithi072.stdout:(1/23): ceph-common-18.0.0-7631.gbed76814.el8.x 11 MB/s | 23 MB 00:02 2023-12-02T01:25:32.490 INFO:teuthology.orchestra.run.smithi072.stdout:(2/23): ceph-selinux-18.0.0-7631.gbed76814.el8. 587 kB/s | 24 kB 00:00 2023-12-02T01:25:32.582 INFO:teuthology.orchestra.run.smithi072.stdout:(3/23): libcephfs2-18.0.0-7631.gbed76814.el8.x8 8.9 MB/s | 839 kB 00:00 2023-12-02T01:25:32.649 INFO:teuthology.orchestra.run.smithi072.stdout:(4/23): libradosstriper1-18.0.0-7631.gbed76814. 7.6 MB/s | 517 kB 00:00 2023-12-02T01:25:33.065 INFO:teuthology.orchestra.run.smithi175.stdout:Dependencies resolved. 2023-12-02T01:25:33.067 INFO:teuthology.orchestra.run.smithi175.stdout:==================================================================================================== 2023-12-02T01:25:33.067 INFO:teuthology.orchestra.run.smithi175.stdout: Package Arch Version Repository Size 2023-12-02T01:25:33.068 INFO:teuthology.orchestra.run.smithi175.stdout:==================================================================================================== 2023-12-02T01:25:33.068 INFO:teuthology.orchestra.run.smithi175.stdout:Installing: 2023-12-02T01:25:33.068 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-radosgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 14 M 2023-12-02T01:25:33.068 INFO:teuthology.orchestra.run.smithi175.stdout:Upgrading: 2023-12-02T01:25:33.068 INFO:teuthology.orchestra.run.smithi175.stdout: librados2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.8 M 2023-12-02T01:25:33.068 INFO:teuthology.orchestra.run.smithi175.stdout: librbd1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.7 M 2023-12-02T01:25:33.069 INFO:teuthology.orchestra.run.smithi175.stdout:Installing dependencies: 2023-12-02T01:25:33.069 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-base x86_64 2:18.0.0-7631.gbed76814.el8 ceph 5.4 M 2023-12-02T01:25:33.069 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 23 M 2023-12-02T01:25:33.069 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-selinux x86_64 2:18.0.0-7631.gbed76814.el8 ceph 24 k 2023-12-02T01:25:33.069 INFO:teuthology.orchestra.run.smithi175.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-12-02T01:25:33.069 INFO:teuthology.orchestra.run.smithi175.stdout: libcephfs2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 839 k 2023-12-02T01:25:33.069 INFO:teuthology.orchestra.run.smithi175.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-12-02T01:25:33.070 INFO:teuthology.orchestra.run.smithi175.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-12-02T01:25:33.070 INFO:teuthology.orchestra.run.smithi175.stdout: libradosstriper1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 517 k 2023-12-02T01:25:33.070 INFO:teuthology.orchestra.run.smithi175.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-12-02T01:25:33.070 INFO:teuthology.orchestra.run.smithi175.stdout: librgw2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 6.9 M 2023-12-02T01:25:33.070 INFO:teuthology.orchestra.run.smithi175.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-12-02T01:25:33.070 INFO:teuthology.orchestra.run.smithi175.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-12-02T01:25:33.070 INFO:teuthology.orchestra.run.smithi175.stdout: python3-ceph-argparse x86_64 2:18.0.0-7631.gbed76814.el8 ceph 45 k 2023-12-02T01:25:33.070 INFO:teuthology.orchestra.run.smithi175.stdout: python3-ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 128 k 2023-12-02T01:25:33.071 INFO:teuthology.orchestra.run.smithi175.stdout: python3-cephfs x86_64 2:18.0.0-7631.gbed76814.el8 ceph 197 k 2023-12-02T01:25:33.071 INFO:teuthology.orchestra.run.smithi175.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-12-02T01:25:33.071 INFO:teuthology.orchestra.run.smithi175.stdout: python3-rados x86_64 2:18.0.0-7631.gbed76814.el8 ceph 371 k 2023-12-02T01:25:33.071 INFO:teuthology.orchestra.run.smithi175.stdout: python3-rbd x86_64 2:18.0.0-7631.gbed76814.el8 ceph 365 k 2023-12-02T01:25:33.071 INFO:teuthology.orchestra.run.smithi175.stdout: python3-rgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 107 k 2023-12-02T01:25:33.071 INFO:teuthology.orchestra.run.smithi175.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-12-02T01:25:33.072 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:25:33.072 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction Summary 2023-12-02T01:25:33.072 INFO:teuthology.orchestra.run.smithi175.stdout:==================================================================================================== 2023-12-02T01:25:33.072 INFO:teuthology.orchestra.run.smithi175.stdout:Install 21 Packages 2023-12-02T01:25:33.072 INFO:teuthology.orchestra.run.smithi175.stdout:Upgrade 2 Packages 2023-12-02T01:25:33.072 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:25:33.073 INFO:teuthology.orchestra.run.smithi175.stdout:Total download size: 62 M 2023-12-02T01:25:33.073 INFO:teuthology.orchestra.run.smithi175.stdout:Downloading Packages: 2023-12-02T01:25:33.117 INFO:teuthology.orchestra.run.smithi072.stdout:(5/23): librgw2-18.0.0-7631.gbed76814.el8.x86_6 15 MB/s | 6.9 MB 00:00 2023-12-02T01:25:33.158 INFO:teuthology.orchestra.run.smithi072.stdout:(6/23): python3-ceph-argparse-18.0.0-7631.gbed7 1.1 MB/s | 45 kB 00:00 2023-12-02T01:25:33.209 INFO:teuthology.orchestra.run.smithi072.stdout:(7/23): python3-ceph-common-18.0.0-7631.gbed768 2.5 MB/s | 128 kB 00:00 2023-12-02T01:25:33.268 INFO:teuthology.orchestra.run.smithi072.stdout:(8/23): python3-cephfs-18.0.0-7631.gbed76814.el 3.3 MB/s | 197 kB 00:00 2023-12-02T01:25:33.335 INFO:teuthology.orchestra.run.smithi072.stdout:(9/23): python3-rados-18.0.0-7631.gbed76814.el8 5.4 MB/s | 371 kB 00:00 2023-12-02T01:25:33.410 INFO:teuthology.orchestra.run.smithi072.stdout:(10/23): python3-rbd-18.0.0-7631.gbed76814.el8. 4.8 MB/s | 365 kB 00:00 2023-12-02T01:25:33.453 INFO:teuthology.orchestra.run.smithi072.stdout:(11/23): python3-rgw-18.0.0-7631.gbed76814.el8. 2.5 MB/s | 107 kB 00:00 2023-12-02T01:25:33.977 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2023-12-02T01:25:33.979 INFO:teuthology.orchestra.run.smithi062.stdout:==================================================================================================== 2023-12-02T01:25:33.979 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout:==================================================================================================== 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-radosgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 14 M 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout:Upgrading: 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: librados2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.8 M 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: librbd1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.7 M 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-base x86_64 2:18.0.0-7631.gbed76814.el8 ceph 5.4 M 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 23 M 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-selinux x86_64 2:18.0.0-7631.gbed76814.el8 ceph 24 k 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: libcephfs2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 839 k 2023-12-02T01:25:33.980 INFO:teuthology.orchestra.run.smithi062.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: libradosstriper1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 517 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: librgw2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 6.9 M 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ceph-argparse x86_64 2:18.0.0-7631.gbed76814.el8 ceph 45 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 128 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cephfs x86_64 2:18.0.0-7631.gbed76814.el8 ceph 197 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rados x86_64 2:18.0.0-7631.gbed76814.el8 ceph 371 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rbd x86_64 2:18.0.0-7631.gbed76814.el8 ceph 365 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 107 k 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-12-02T01:25:33.981 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:25:33.982 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2023-12-02T01:25:33.982 INFO:teuthology.orchestra.run.smithi062.stdout:==================================================================================================== 2023-12-02T01:25:33.982 INFO:teuthology.orchestra.run.smithi062.stdout:Install 21 Packages 2023-12-02T01:25:33.982 INFO:teuthology.orchestra.run.smithi062.stdout:Upgrade 2 Packages 2023-12-02T01:25:33.982 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:25:33.982 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 62 M 2023-12-02T01:25:33.983 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2023-12-02T01:25:34.012 INFO:teuthology.orchestra.run.smithi072.stdout:(12/23): gperftools-libs-2.7-9.el8.x86_64.rpm 548 kB/s | 306 kB 00:00 2023-12-02T01:25:34.189 INFO:teuthology.orchestra.run.smithi072.stdout:(13/23): liboath-2.6.2-3.el8.x86_64.rpm 333 kB/s | 59 kB 00:00 2023-12-02T01:25:34.306 INFO:teuthology.orchestra.run.smithi072.stdout:(14/23): libunwind-1.3.1-3.el8.x86_64.rpm 642 kB/s | 75 kB 00:00 2023-12-02T01:25:34.615 INFO:teuthology.orchestra.run.smithi072.stdout:(15/23): ceph-radosgw-18.0.0-7631.gbed76814.el8 3.3 MB/s | 14 MB 00:04 2023-12-02T01:25:34.724 INFO:teuthology.orchestra.run.smithi072.stdout:(16/23): ceph-base-18.0.0-7631.gbed76814.el8.x8 1.2 MB/s | 5.4 MB 00:04 2023-12-02T01:25:34.783 INFO:teuthology.orchestra.run.smithi072.stdout:(17/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 280 kB/s | 47 kB 00:00 2023-12-02T01:25:34.809 INFO:teuthology.orchestra.run.smithi072.stdout:(18/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 3.2 MB/s | 259 kB 00:00 2023-12-02T01:25:34.834 INFO:teuthology.orchestra.run.smithi072.stdout:(19/23): python3-prettytable-0.7.2-14.el8.noarc 869 kB/s | 44 kB 00:00 2023-12-02T01:25:34.868 INFO:teuthology.orchestra.run.smithi072.stdout:(20/23): librdkafka-0.11.4-3.el8.x86_64.rpm 5.8 MB/s | 354 kB 00:00 2023-12-02T01:25:35.060 INFO:teuthology.orchestra.run.smithi072.stdout:(21/23): thrift-0.13.0-2.el8.x86_64.rpm 2.3 MB/s | 1.7 MB 00:00 2023-12-02T01:25:35.116 INFO:teuthology.orchestra.run.smithi175.stdout:(1/23): ceph-common-18.0.0-7631.gbed76814.el8.x 12 MB/s | 23 MB 00:01 2023-12-02T01:25:35.199 INFO:teuthology.orchestra.run.smithi175.stdout:(2/23): ceph-selinux-18.0.0-7631.gbed76814.el8. 294 kB/s | 24 kB 00:00 2023-12-02T01:25:35.524 INFO:teuthology.orchestra.run.smithi175.stdout:(3/23): libcephfs2-18.0.0-7631.gbed76814.el8.x8 2.5 MB/s | 839 kB 00:00 2023-12-02T01:25:35.635 INFO:teuthology.orchestra.run.smithi072.stdout:(22/23): librbd1-18.0.0-7631.gbed76814.el8.x86_ 4.8 MB/s | 3.7 MB 00:00 2023-12-02T01:25:35.666 INFO:teuthology.orchestra.run.smithi175.stdout:(4/23): libradosstriper1-18.0.0-7631.gbed76814. 3.6 MB/s | 517 kB 00:00 2023-12-02T01:25:36.300 INFO:teuthology.orchestra.run.smithi062.stdout:(1/23): ceph-radosgw-18.0.0-7631.gbed76814.el8. 6.6 MB/s | 14 MB 00:02 2023-12-02T01:25:36.367 INFO:teuthology.orchestra.run.smithi062.stdout:(2/23): ceph-selinux-18.0.0-7631.gbed76814.el8. 367 kB/s | 24 kB 00:00 2023-12-02T01:25:36.450 INFO:teuthology.orchestra.run.smithi175.stdout:(5/23): librgw2-18.0.0-7631.gbed76814.el8.x86_6 8.8 MB/s | 6.9 MB 00:00 2023-12-02T01:25:36.484 INFO:teuthology.orchestra.run.smithi062.stdout:(3/23): ceph-base-18.0.0-7631.gbed76814.el8.x86 2.4 MB/s | 5.4 MB 00:02 2023-12-02T01:25:36.492 INFO:teuthology.orchestra.run.smithi175.stdout:(6/23): python3-ceph-argparse-18.0.0-7631.gbed7 1.1 MB/s | 45 kB 00:00 2023-12-02T01:25:36.518 INFO:teuthology.orchestra.run.smithi062.stdout:(4/23): libcephfs2-18.0.0-7631.gbed76814.el8.x8 5.5 MB/s | 839 kB 00:00 2023-12-02T01:25:36.542 INFO:teuthology.orchestra.run.smithi175.stdout:(7/23): python3-ceph-common-18.0.0-7631.gbed768 2.5 MB/s | 128 kB 00:00 2023-12-02T01:25:36.609 INFO:teuthology.orchestra.run.smithi175.stdout:(8/23): python3-cephfs-18.0.0-7631.gbed76814.el 2.9 MB/s | 197 kB 00:00 2023-12-02T01:25:36.684 INFO:teuthology.orchestra.run.smithi175.stdout:(9/23): python3-rados-18.0.0-7631.gbed76814.el8 4.8 MB/s | 371 kB 00:00 2023-12-02T01:25:36.693 INFO:teuthology.orchestra.run.smithi062.stdout:(5/23): libradosstriper1-18.0.0-7631.gbed76814. 2.4 MB/s | 517 kB 00:00 2023-12-02T01:25:36.734 INFO:teuthology.orchestra.run.smithi175.stdout:(10/23): python3-rbd-18.0.0-7631.gbed76814.el8. 7.2 MB/s | 365 kB 00:00 2023-12-02T01:25:36.801 INFO:teuthology.orchestra.run.smithi175.stdout:(11/23): python3-rgw-18.0.0-7631.gbed76814.el8. 1.6 MB/s | 107 kB 00:00 2023-12-02T01:25:36.802 INFO:teuthology.orchestra.run.smithi062.stdout:(6/23): python3-ceph-argparse-18.0.0-7631.gbed7 413 kB/s | 45 kB 00:00 2023-12-02T01:25:36.893 INFO:teuthology.orchestra.run.smithi062.stdout:(7/23): python3-ceph-common-18.0.0-7631.gbed768 1.4 MB/s | 128 kB 00:00 2023-12-02T01:25:36.977 INFO:teuthology.orchestra.run.smithi062.stdout:(8/23): python3-cephfs-18.0.0-7631.gbed76814.el 2.3 MB/s | 197 kB 00:00 2023-12-02T01:25:37.119 INFO:teuthology.orchestra.run.smithi062.stdout:(9/23): librgw2-18.0.0-7631.gbed76814.el8.x86_6 12 MB/s | 6.9 MB 00:00 2023-12-02T01:25:37.144 INFO:teuthology.orchestra.run.smithi062.stdout:(10/23): python3-rados-18.0.0-7631.gbed76814.el 2.2 MB/s | 371 kB 00:00 2023-12-02T01:25:37.169 INFO:teuthology.orchestra.run.smithi062.stdout:(11/23): python3-rbd-18.0.0-7631.gbed76814.el8. 7.1 MB/s | 365 kB 00:00 2023-12-02T01:25:37.185 INFO:teuthology.orchestra.run.smithi175.stdout:(12/23): gperftools-libs-2.7-9.el8.x86_64.rpm 799 kB/s | 306 kB 00:00 2023-12-02T01:25:37.228 INFO:teuthology.orchestra.run.smithi062.stdout:(12/23): python3-rgw-18.0.0-7631.gbed76814.el8. 1.2 MB/s | 107 kB 00:00 2023-12-02T01:25:37.260 INFO:teuthology.orchestra.run.smithi175.stdout:(13/23): liboath-2.6.2-3.el8.x86_64.rpm 785 kB/s | 59 kB 00:00 2023-12-02T01:25:37.336 INFO:teuthology.orchestra.run.smithi175.stdout:(14/23): libunwind-1.3.1-3.el8.x86_64.rpm 1.0 MB/s | 75 kB 00:00 2023-12-02T01:25:37.420 INFO:teuthology.orchestra.run.smithi062.stdout:(13/23): liboath-2.6.2-3.el8.x86_64.rpm 315 kB/s | 59 kB 00:00 2023-12-02T01:25:37.462 INFO:teuthology.orchestra.run.smithi062.stdout:(14/23): gperftools-libs-2.7-9.el8.x86_64.rpm 1.0 MB/s | 306 kB 00:00 2023-12-02T01:25:37.503 INFO:teuthology.orchestra.run.smithi175.stdout:(15/23): ceph-base-18.0.0-7631.gbed76814.el8.x8 1.3 MB/s | 5.4 MB 00:04 2023-12-02T01:25:37.521 INFO:teuthology.orchestra.run.smithi062.stdout:(15/23): libunwind-1.3.1-3.el8.x86_64.rpm 748 kB/s | 75 kB 00:00 2023-12-02T01:25:37.561 INFO:teuthology.orchestra.run.smithi175.stdout:(16/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 4.4 MB/s | 259 kB 00:00 2023-12-02T01:25:37.571 INFO:teuthology.orchestra.run.smithi062.stdout:(16/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 942 kB/s | 47 kB 00:00 2023-12-02T01:25:37.603 INFO:teuthology.orchestra.run.smithi175.stdout:(17/23): python3-prettytable-0.7.2-14.el8.noarc 1.0 MB/s | 44 kB 00:00 2023-12-02T01:25:37.637 INFO:teuthology.orchestra.run.smithi062.stdout:(17/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 3.9 MB/s | 259 kB 00:00 2023-12-02T01:25:37.645 INFO:teuthology.orchestra.run.smithi175.stdout:(18/23): librdkafka-0.11.4-3.el8.x86_64.rpm 8.3 MB/s | 354 kB 00:00 2023-12-02T01:25:37.672 INFO:teuthology.orchestra.run.smithi062.stdout:(18/23): python3-prettytable-0.7.2-14.el8.noarc 1.3 MB/s | 44 kB 00:00 2023-12-02T01:25:37.687 INFO:teuthology.orchestra.run.smithi175.stdout:(19/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 1.1 MB/s | 47 kB 00:00 2023-12-02T01:25:37.705 INFO:teuthology.orchestra.run.smithi062.stdout:(19/23): librdkafka-0.11.4-3.el8.x86_64.rpm 10 MB/s | 354 kB 00:00 2023-12-02T01:25:37.897 INFO:teuthology.orchestra.run.smithi062.stdout:(20/23): thrift-0.13.0-2.el8.x86_64.rpm 4.0 MB/s | 1.7 MB 00:00 2023-12-02T01:25:38.053 INFO:teuthology.orchestra.run.smithi072.stdout:(23/23): librados2-18.0.0-7631.gbed76814.el8.x8 1.2 MB/s | 3.8 MB 00:03 2023-12-02T01:25:38.055 INFO:teuthology.orchestra.run.smithi072.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:25:38.055 INFO:teuthology.orchestra.run.smithi072.stdout:Total 7.8 MB/s | 62 MB 00:07 2023-12-02T01:25:38.101 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction check 2023-12-02T01:25:38.147 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction check succeeded. 2023-12-02T01:25:38.148 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction test 2023-12-02T01:25:38.248 INFO:teuthology.orchestra.run.smithi062.stdout:(21/23): librbd1-18.0.0-7631.gbed76814.el8.x86_ 11 MB/s | 3.7 MB 00:00 2023-12-02T01:25:38.321 INFO:teuthology.orchestra.run.smithi175.stdout:(20/23): thrift-0.13.0-2.el8.x86_64.rpm 1.8 MB/s | 1.7 MB 00:00 2023-12-02T01:25:38.477 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction test succeeded. 2023-12-02T01:25:38.480 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction 2023-12-02T01:25:38.529 INFO:teuthology.orchestra.run.smithi175.stdout:(21/23): ceph-radosgw-18.0.0-7631.gbed76814.el8 2.6 MB/s | 14 MB 00:05 2023-12-02T01:25:38.762 INFO:teuthology.orchestra.run.smithi175.stdout:(22/23): librbd1-18.0.0-7631.gbed76814.el8.x86_ 8.4 MB/s | 3.7 MB 00:00 2023-12-02T01:25:38.981 INFO:teuthology.orchestra.run.smithi062.stdout:(22/23): librados2-18.0.0-7631.gbed76814.el8.x8 3.0 MB/s | 3.8 MB 00:01 2023-12-02T01:25:39.624 INFO:teuthology.orchestra.run.smithi072.stdout: Preparing : 1/1 2023-12-02T01:25:39.679 INFO:teuthology.orchestra.run.smithi175.stdout:(23/23): librados2-18.0.0-7631.gbed76814.el8.x8 1.9 MB/s | 3.8 MB 00:01 2023-12-02T01:25:39.682 INFO:teuthology.orchestra.run.smithi175.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:25:39.682 INFO:teuthology.orchestra.run.smithi175.stdout:Total 9.3 MB/s | 62 MB 00:06 2023-12-02T01:25:39.732 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction check 2023-12-02T01:25:39.777 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction check succeeded. 2023-12-02T01:25:39.777 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction test 2023-12-02T01:25:39.865 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-12-02T01:25:40.023 INFO:teuthology.orchestra.run.smithi062.stdout:(23/23): ceph-common-18.0.0-7631.gbed76814.el8. 3.9 MB/s | 23 MB 00:05 2023-12-02T01:25:40.031 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:25:40.031 INFO:teuthology.orchestra.run.smithi062.stdout:Total 10 MB/s | 62 MB 00:06 2023-12-02T01:25:40.058 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T01:25:40.076 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2023-12-02T01:25:40.114 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction test succeeded. 2023-12-02T01:25:40.117 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction 2023-12-02T01:25:40.125 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2023-12-02T01:25:40.125 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2023-12-02T01:25:40.467 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T01:25:40.486 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2023-12-02T01:25:40.490 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2023-12-02T01:25:40.650 INFO:teuthology.orchestra.run.smithi072.stdout: Upgrading : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:25:40.749 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:25:40.939 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T01:25:41.188 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-12-02T01:25:41.300 INFO:teuthology.orchestra.run.smithi175.stdout: Preparing : 1/1 2023-12-02T01:25:41.367 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T01:25:41.550 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-12-02T01:25:41.723 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2023-12-02T01:25:41.728 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T01:25:41.792 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T01:25:41.904 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-12-02T01:25:42.042 INFO:teuthology.orchestra.run.smithi072.stdout: Upgrading : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:25:42.130 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:25:42.139 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T01:25:42.184 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T01:25:42.300 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 8/25 2023-12-02T01:25:42.353 INFO:teuthology.orchestra.run.smithi175.stdout: Upgrading : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:25:42.366 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 8/25 2023-12-02T01:25:42.446 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:25:42.561 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T01:25:42.659 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T01:25:42.872 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-12-02T01:25:42.981 INFO:teuthology.orchestra.run.smithi062.stdout: Upgrading : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:25:43.084 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:25:43.095 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T01:25:43.152 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 9/25 2023-12-02T01:25:43.262 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T01:25:43.333 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:25:43.403 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:25:43.490 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-12-02T01:25:43.511 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T01:25:43.536 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 11/25 2023-12-02T01:25:43.648 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T01:25:43.685 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T01:25:43.761 INFO:teuthology.orchestra.run.smithi175.stdout: Upgrading : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:25:43.827 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:25:43.876 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T01:25:44.026 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 8/25 2023-12-02T01:25:44.069 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 14/25 2023-12-02T01:25:44.122 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T01:25:44.211 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 9/25 2023-12-02T01:25:44.233 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T01:25:44.303 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T01:25:44.339 INFO:teuthology.orchestra.run.smithi062.stdout: Upgrading : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:25:44.416 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:25:44.434 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-12-02T01:25:44.606 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 8/25 2023-12-02T01:25:44.651 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-12-02T01:25:44.655 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 8/25 2023-12-02T01:25:44.896 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 9/25 2023-12-02T01:25:44.908 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-12-02T01:25:45.069 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:25:45.091 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 19/25 2023-12-02T01:25:45.123 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:25:45.255 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 11/25 2023-12-02T01:25:45.463 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T01:25:45.480 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 9/25 2023-12-02T01:25:45.639 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:25:45.671 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T01:25:45.709 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:25:45.826 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 11/25 2023-12-02T01:25:45.906 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 14/25 2023-12-02T01:25:46.017 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T01:25:46.044 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T01:25:46.127 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T01:25:46.209 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T01:25:46.270 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-12-02T01:25:46.412 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 14/25 2023-12-02T01:25:46.547 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T01:25:46.621 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T01:25:46.733 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-12-02T01:25:46.746 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-12-02T01:25:46.925 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-12-02T01:25:47.007 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-12-02T01:25:47.144 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-12-02T01:25:47.169 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 19/25 2023-12-02T01:25:47.322 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 19/25 2023-12-02T01:25:48.828 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:49.075 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:49.663 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:49.947 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T01:25:50.023 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T01:25:50.216 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:25:50.990 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:51.219 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:51.310 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:51.564 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:51.800 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:52.187 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T01:25:52.354 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T01:25:52.451 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T01:25:52.454 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T01:25:52.519 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T01:25:52.618 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:25:52.647 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:26:10.428 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:26:10.428 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /sys 2023-12-02T01:26:10.428 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /proc 2023-12-02T01:26:10.428 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /dev 2023-12-02T01:26:10.428 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /run 2023-12-02T01:26:10.428 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /mnt 2023-12-02T01:26:10.429 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /var/tmp 2023-12-02T01:26:10.429 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /home 2023-12-02T01:26:10.429 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /tmp 2023-12-02T01:26:10.429 INFO:teuthology.orchestra.run.smithi072.stdout:skipping the directory /dev 2023-12-02T01:26:10.429 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /sys 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /proc 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /dev 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /run 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /mnt 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /var/tmp 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /home 2023-12-02T01:26:11.163 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /tmp 2023-12-02T01:26:11.164 INFO:teuthology.orchestra.run.smithi175.stdout:skipping the directory /dev 2023-12-02T01:26:11.164 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:26:11.886 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T01:26:11.907 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T01:26:11.907 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T01:26:11.984 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:26:11.985 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /sys 2023-12-02T01:26:11.985 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /proc 2023-12-02T01:26:11.985 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /dev 2023-12-02T01:26:11.985 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /run 2023-12-02T01:26:11.985 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /mnt 2023-12-02T01:26:11.985 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /var/tmp 2023-12-02T01:26:11.985 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /home 2023-12-02T01:26:11.985 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /tmp 2023-12-02T01:26:11.986 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /dev 2023-12-02T01:26:11.986 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:26:12.107 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T01:26:12.107 INFO:teuthology.orchestra.run.smithi072.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:12.567 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T01:26:12.588 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T01:26:12.589 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 1/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 5/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 6/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 8/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 9/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:26:12.703 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 11/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 18/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 19/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 20/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 21/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-12-02T01:26:12.704 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 24/25 2023-12-02T01:26:12.791 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T01:26:12.791 INFO:teuthology.orchestra.run.smithi175.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:13.423 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:13.423 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 1/25 2023-12-02T01:26:13.423 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 5/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 6/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 8/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 9/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 11/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-12-02T01:26:13.424 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-12-02T01:26:13.425 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 18/25 2023-12-02T01:26:13.425 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 19/25 2023-12-02T01:26:13.425 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 20/25 2023-12-02T01:26:13.425 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 21/25 2023-12-02T01:26:13.425 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:26:13.425 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-12-02T01:26:13.425 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 24/25 2023-12-02T01:26:13.449 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T01:26:13.471 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T01:26:13.471 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T01:26:13.696 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T01:26:13.696 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:14.069 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:14.070 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:00:56 ago on Sat 02 Dec 2023 01:25:18 AM UTC. 2023-12-02T01:26:14.330 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 1/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 5/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 6/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 8/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 9/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 11/25 2023-12-02T01:26:14.331 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 18/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 19/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 20/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 21/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-12-02T01:26:14.332 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 24/25 2023-12-02T01:26:14.794 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:14.794 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:00:53 ago on Sat 02 Dec 2023 01:25:21 AM UTC. 2023-12-02T01:26:15.773 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T01:26:15.773 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:00:54 ago on Sat 02 Dec 2023 01:25:21 AM UTC. 2023-12-02T01:26:16.428 INFO:teuthology.orchestra.run.smithi072.stdout:Installed products updated. 2023-12-02T01:26:16.619 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:26:16.619 INFO:teuthology.orchestra.run.smithi072.stdout:Upgraded: 2023-12-02T01:26:16.619 INFO:teuthology.orchestra.run.smithi072.stdout: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.619 INFO:teuthology.orchestra.run.smithi072.stdout: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.619 INFO:teuthology.orchestra.run.smithi072.stdout:Installed: 2023-12-02T01:26:16.619 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.619 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.619 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: liboath-2.6.2-3.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: libunwind-1.3.1-3.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.620 INFO:teuthology.orchestra.run.smithi072.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-12-02T01:26:16.621 INFO:teuthology.orchestra.run.smithi072.stdout: python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.621 INFO:teuthology.orchestra.run.smithi072.stdout: python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.621 INFO:teuthology.orchestra.run.smithi072.stdout: python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:16.621 INFO:teuthology.orchestra.run.smithi072.stdout: thrift-0.13.0-2.el8.x86_64 2023-12-02T01:26:16.621 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:26:16.621 INFO:teuthology.orchestra.run.smithi072.stdout:Complete! 2023-12-02T01:26:16.784 DEBUG:teuthology.orchestra.run.smithi072:> sudo yum -y install ceph-test 2023-12-02T01:26:17.111 INFO:teuthology.orchestra.run.smithi175.stdout:Installed products updated. 2023-12-02T01:26:17.133 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:26:17.296 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:26:17.297 INFO:teuthology.orchestra.run.smithi175.stdout:Upgraded: 2023-12-02T01:26:17.297 INFO:teuthology.orchestra.run.smithi175.stdout: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.297 INFO:teuthology.orchestra.run.smithi175.stdout: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.297 INFO:teuthology.orchestra.run.smithi175.stdout:Installed: 2023-12-02T01:26:17.297 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.297 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.297 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.298 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.298 INFO:teuthology.orchestra.run.smithi175.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-12-02T01:26:17.298 INFO:teuthology.orchestra.run.smithi175.stdout: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.298 INFO:teuthology.orchestra.run.smithi175.stdout: liboath-2.6.2-3.el8.x86_64 2023-12-02T01:26:17.298 INFO:teuthology.orchestra.run.smithi175.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-12-02T01:26:17.298 INFO:teuthology.orchestra.run.smithi175.stdout: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.298 INFO:teuthology.orchestra.run.smithi175.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-12-02T01:26:17.299 INFO:teuthology.orchestra.run.smithi175.stdout: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.299 INFO:teuthology.orchestra.run.smithi175.stdout: libunwind-1.3.1-3.el8.x86_64 2023-12-02T01:26:17.299 INFO:teuthology.orchestra.run.smithi175.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-12-02T01:26:17.299 INFO:teuthology.orchestra.run.smithi175.stdout: python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.299 INFO:teuthology.orchestra.run.smithi175.stdout: python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.299 INFO:teuthology.orchestra.run.smithi175.stdout: python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.300 INFO:teuthology.orchestra.run.smithi175.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-12-02T01:26:17.300 INFO:teuthology.orchestra.run.smithi175.stdout: python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.300 INFO:teuthology.orchestra.run.smithi175.stdout: python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.300 INFO:teuthology.orchestra.run.smithi175.stdout: python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:17.300 INFO:teuthology.orchestra.run.smithi175.stdout: thrift-0.13.0-2.el8.x86_64 2023-12-02T01:26:17.300 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:26:17.301 INFO:teuthology.orchestra.run.smithi175.stdout:Complete! 2023-12-02T01:26:17.484 DEBUG:teuthology.orchestra.run.smithi175:> sudo yum -y install ceph-test 2023-12-02T01:26:17.831 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:26:17.931 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:00:59 ago on Sat 02 Dec 2023 01:25:18 AM UTC. 2023-12-02T01:26:18.322 INFO:teuthology.orchestra.run.smithi062.stdout:Installed products updated. 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout:Upgraded: 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.529 INFO:teuthology.orchestra.run.smithi062.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: liboath-2.6.2-3.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: libunwind-1.3.1-3.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.530 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.531 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:18.531 INFO:teuthology.orchestra.run.smithi062.stdout: thrift-0.13.0-2.el8.x86_64 2023-12-02T01:26:18.531 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:26:18.531 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2023-12-02T01:26:18.678 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:00:57 ago on Sat 02 Dec 2023 01:25:21 AM UTC. 2023-12-02T01:26:18.700 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-test 2023-12-02T01:26:19.067 INFO:teuthology.orchestra.run.smithi062.stdout:Updating Subscription Management repositories. 2023-12-02T01:26:19.316 INFO:teuthology.orchestra.run.smithi072.stdout:Dependencies resolved. 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout:============================================================================================ 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout: Package Arch Version Repository Size 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout:============================================================================================ 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout:Installing: 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-test x86_64 2:18.0.0-7631.gbed76814.el8 ceph 49 M 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout:Installing dependencies: 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout: libcephsqlite x86_64 2:18.0.0-7631.gbed76814.el8 ceph 183 k 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-12-02T01:26:19.318 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:26:19.319 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction Summary 2023-12-02T01:26:19.319 INFO:teuthology.orchestra.run.smithi072.stdout:============================================================================================ 2023-12-02T01:26:19.319 INFO:teuthology.orchestra.run.smithi072.stdout:Install 6 Packages 2023-12-02T01:26:19.319 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:26:19.319 INFO:teuthology.orchestra.run.smithi072.stdout:Total download size: 50 M 2023-12-02T01:26:19.319 INFO:teuthology.orchestra.run.smithi072.stdout:Installed size: 223 M 2023-12-02T01:26:19.319 INFO:teuthology.orchestra.run.smithi072.stdout:Downloading Packages: 2023-12-02T01:26:19.365 INFO:teuthology.orchestra.run.smithi072.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 1.5 MB/s | 70 kB 00:00 2023-12-02T01:26:19.442 INFO:teuthology.orchestra.run.smithi072.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 4.1 MB/s | 323 kB 00:00 2023-12-02T01:26:19.501 INFO:teuthology.orchestra.run.smithi072.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 3.2 MB/s | 187 kB 00:00 2023-12-02T01:26:19.551 INFO:teuthology.orchestra.run.smithi072.stdout:(4/6): jq-1.6-3.el8.x86_64.rpm 4.0 MB/s | 202 kB 00:00 2023-12-02T01:26:19.750 INFO:teuthology.orchestra.run.smithi072.stdout:(5/6): libcephsqlite-18.0.0-7631.gbed76814.el8. 425 kB/s | 183 kB 00:00 2023-12-02T01:26:19.914 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:00:58 ago on Sat 02 Dec 2023 01:25:21 AM UTC. 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout:Dependencies resolved. 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout:============================================================================================ 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout: Package Arch Version Repository Size 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout:============================================================================================ 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout:Installing: 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-test x86_64 2:18.0.0-7631.gbed76814.el8 ceph 49 M 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout:Installing dependencies: 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout: libcephsqlite x86_64 2:18.0.0-7631.gbed76814.el8 ceph 183 k 2023-12-02T01:26:20.114 INFO:teuthology.orchestra.run.smithi175.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction Summary 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout:============================================================================================ 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout:Install 6 Packages 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout:Total download size: 50 M 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout:Installed size: 223 M 2023-12-02T01:26:20.115 INFO:teuthology.orchestra.run.smithi175.stdout:Downloading Packages: 2023-12-02T01:26:20.172 INFO:teuthology.orchestra.run.smithi175.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 1.2 MB/s | 70 kB 00:00 2023-12-02T01:26:20.239 INFO:teuthology.orchestra.run.smithi175.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 5.1 MB/s | 323 kB 00:00 2023-12-02T01:26:20.281 INFO:teuthology.orchestra.run.smithi175.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 4.4 MB/s | 187 kB 00:00 2023-12-02T01:26:20.322 INFO:teuthology.orchestra.run.smithi175.stdout:(4/6): jq-1.6-3.el8.x86_64.rpm 4.8 MB/s | 202 kB 00:00 2023-12-02T01:26:20.364 INFO:teuthology.orchestra.run.smithi175.stdout:(5/6): libcephsqlite-18.0.0-7631.gbed76814.el8. 734 kB/s | 183 kB 00:00 2023-12-02T01:26:21.393 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2023-12-02T01:26:21.394 INFO:teuthology.orchestra.run.smithi062.stdout:============================================================================================ 2023-12-02T01:26:21.394 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2023-12-02T01:26:21.394 INFO:teuthology.orchestra.run.smithi062.stdout:============================================================================================ 2023-12-02T01:26:21.394 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2023-12-02T01:26:21.394 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-test x86_64 2:18.0.0-7631.gbed76814.el8 ceph 49 M 2023-12-02T01:26:21.394 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout: libcephsqlite x86_64 2:18.0.0-7631.gbed76814.el8 ceph 183 k 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout:============================================================================================ 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout:Install 6 Packages 2023-12-02T01:26:21.395 INFO:teuthology.orchestra.run.smithi062.stdout: 2023-12-02T01:26:21.396 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 50 M 2023-12-02T01:26:21.396 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 223 M 2023-12-02T01:26:21.396 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2023-12-02T01:26:21.444 INFO:teuthology.orchestra.run.smithi062.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 1.4 MB/s | 70 kB 00:00 2023-12-02T01:26:21.503 INFO:teuthology.orchestra.run.smithi062.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 5.4 MB/s | 323 kB 00:00 2023-12-02T01:26:21.545 INFO:teuthology.orchestra.run.smithi062.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 4.4 MB/s | 187 kB 00:00 2023-12-02T01:26:21.587 INFO:teuthology.orchestra.run.smithi062.stdout:(4/6): jq-1.6-3.el8.x86_64.rpm 4.7 MB/s | 202 kB 00:00 2023-12-02T01:26:21.903 INFO:teuthology.orchestra.run.smithi062.stdout:(5/6): libcephsqlite-18.0.0-7631.gbed76814.el8. 361 kB/s | 183 kB 00:00 2023-12-02T01:26:26.947 INFO:teuthology.orchestra.run.smithi175.stdout:(6/6): ceph-test-18.0.0-7631.gbed76814.el8.x86_ 7.2 MB/s | 49 MB 00:06 2023-12-02T01:26:26.949 INFO:teuthology.orchestra.run.smithi175.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:26:26.949 INFO:teuthology.orchestra.run.smithi175.stdout:Total 7.4 MB/s | 50 MB 00:06 2023-12-02T01:26:26.987 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction check 2023-12-02T01:26:27.008 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction check succeeded. 2023-12-02T01:26:27.009 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction test 2023-12-02T01:26:27.280 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction test succeeded. 2023-12-02T01:26:27.283 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction 2023-12-02T01:26:27.766 INFO:teuthology.orchestra.run.smithi175.stdout: Preparing : 1/1 2023-12-02T01:26:27.894 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T01:26:27.962 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T01:26:28.190 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-12-02T01:26:28.320 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-12-02T01:26:28.484 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-12-02T01:26:28.661 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T01:26:29.593 INFO:teuthology.orchestra.run.smithi072.stdout:(6/6): ceph-test-18.0.0-7631.gbed76814.el8.x86_ 4.8 MB/s | 49 MB 00:10 2023-12-02T01:26:29.594 INFO:teuthology.orchestra.run.smithi072.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:26:29.595 INFO:teuthology.orchestra.run.smithi072.stdout:Total 4.9 MB/s | 50 MB 00:10 2023-12-02T01:26:29.632 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction check 2023-12-02T01:26:29.653 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction check succeeded. 2023-12-02T01:26:29.653 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction test 2023-12-02T01:26:29.924 INFO:teuthology.orchestra.run.smithi072.stdout:Transaction test succeeded. 2023-12-02T01:26:29.928 INFO:teuthology.orchestra.run.smithi072.stdout:Running transaction 2023-12-02T01:26:30.376 INFO:teuthology.orchestra.run.smithi072.stdout: Preparing : 1/1 2023-12-02T01:26:30.519 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T01:26:30.607 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T01:26:30.806 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-12-02T01:26:30.969 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-12-02T01:26:31.151 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-12-02T01:26:31.293 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T01:26:33.397 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T01:26:33.682 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T01:26:33.914 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T01:26:33.914 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 1/6 2023-12-02T01:26:33.914 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2/6 2023-12-02T01:26:33.914 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-12-02T01:26:33.914 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-12-02T01:26:33.914 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-12-02T01:26:35.043 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-12-02T01:26:35.043 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:01:14 ago on Sat 02 Dec 2023 01:25:21 AM UTC. 2023-12-02T01:26:36.028 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T01:26:36.265 INFO:teuthology.orchestra.run.smithi072.stdout: Installing : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T01:26:36.494 INFO:teuthology.orchestra.run.smithi072.stdout: Running scriptlet: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T01:26:36.495 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 1/6 2023-12-02T01:26:36.495 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2/6 2023-12-02T01:26:36.495 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-12-02T01:26:36.495 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-12-02T01:26:36.495 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-12-02T01:26:37.431 INFO:teuthology.orchestra.run.smithi175.stdout:Installed products updated. 2023-12-02T01:26:37.577 INFO:teuthology.orchestra.run.smithi072.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-12-02T01:26:37.577 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:01:19 ago on Sat 02 Dec 2023 01:25:18 AM UTC. 2023-12-02T01:26:37.612 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:26:37.612 INFO:teuthology.orchestra.run.smithi175.stdout:Installed: 2023-12-02T01:26:37.612 INFO:teuthology.orchestra.run.smithi175.stdout: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:37.612 INFO:teuthology.orchestra.run.smithi175.stdout: jq-1.6-3.el8.x86_64 2023-12-02T01:26:37.612 INFO:teuthology.orchestra.run.smithi175.stdout: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:37.612 INFO:teuthology.orchestra.run.smithi175.stdout: oniguruma-6.8.2-2.el8.x86_64 2023-12-02T01:26:37.612 INFO:teuthology.orchestra.run.smithi175.stdout: socat-1.7.4.1-1.el8.x86_64 2023-12-02T01:26:37.612 INFO:teuthology.orchestra.run.smithi175.stdout: xmlstarlet-1.6.1-20.el8.x86_64 2023-12-02T01:26:37.613 INFO:teuthology.orchestra.run.smithi175.stdout: 2023-12-02T01:26:37.613 INFO:teuthology.orchestra.run.smithi175.stdout:Complete! 2023-12-02T01:26:37.752 DEBUG:teuthology.orchestra.run.smithi175:> sudo yum -y install ceph 2023-12-02T01:26:38.088 INFO:teuthology.orchestra.run.smithi175.stdout:Updating Subscription Management repositories. 2023-12-02T01:26:38.899 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:01:17 ago on Sat 02 Dec 2023 01:25:21 AM UTC. 2023-12-02T01:26:38.952 INFO:teuthology.orchestra.run.smithi062.stdout:(6/6): ceph-test-18.0.0-7631.gbed76814.el8.x86_ 2.8 MB/s | 49 MB 00:17 2023-12-02T01:26:38.954 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2023-12-02T01:26:38.955 INFO:teuthology.orchestra.run.smithi062.stdout:Total 2.9 MB/s | 50 MB 00:17 2023-12-02T01:26:38.993 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2023-12-02T01:26:39.017 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2023-12-02T01:26:39.017 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2023-12-02T01:26:39.305 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2023-12-02T01:26:39.308 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2023-12-02T01:26:39.774 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2023-12-02T01:26:39.898 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T01:26:39.917 INFO:teuthology.orchestra.run.smithi072.stdout:Installed products updated. 2023-12-02T01:26:39.990 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T01:26:40.098 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout:Installed: 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout: jq-1.6-3.el8.x86_64 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout: oniguruma-6.8.2-2.el8.x86_64 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout: socat-1.7.4.1-1.el8.x86_64 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout: xmlstarlet-1.6.1-20.el8.x86_64 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout: 2023-12-02T01:26:40.099 INFO:teuthology.orchestra.run.smithi072.stdout:Complete! 2023-12-02T01:26:40.221 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-12-02T01:26:40.242 DEBUG:teuthology.orchestra.run.smithi072:> sudo yum -y install ceph 2023-12-02T01:26:40.278 INFO:teuthology.orchestra.run.smithi175.stderr:Error: 2023-12-02T01:26:40.279 INFO:teuthology.orchestra.run.smithi175.stderr: Problem: conflicting requests 2023-12-02T01:26:40.279 INFO:teuthology.orchestra.run.smithi175.stderr: - nothing provides lua-devel needed by ceph-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:40.279 INFO:teuthology.orchestra.run.smithi175.stdout:(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) 2023-12-02T01:26:40.361 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:26:40.361 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 283, in _update_package_list_and_install _retry_if_failures_are_recoverable(remote, File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 155, in _retry_if_failures_are_recoverable return remote.run(args=args, stderr=stderr, stdout=stdout) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi175 with status 1: 'sudo yum -y install ceph' 2023-12-02T01:26:40.363 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 622, 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_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 283, in _update_package_list_and_install _retry_if_failures_are_recoverable(remote, File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 155, in _retry_if_failures_are_recoverable return remote.run(args=args, stderr=stderr, stdout=stdout) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi175 with status 1: 'sudo yum -y install ceph' 2023-12-02T01:26:40.436 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=d86ba09850ac4eb18b2ff6bc1b3de9ff Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 622, 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_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 283, in _update_package_list_and_install _retry_if_failures_are_recoverable(remote, File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 155, in _retry_if_failures_are_recoverable return remote.run(args=args, stderr=stderr, stdout=stdout) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi175 with status 1: 'sudo yum -y install ceph' 2023-12-02T01:26:40.440 DEBUG:teuthology.run_tasks:Unwinding manager install 2023-12-02T01:26:40.450 DEBUG:teuthology.run_tasks:Unwinding manager clock 2023-12-02T01:26:40.475 INFO:teuthology.task.clock:Checking final clock skew... 2023-12-02T01:26:40.476 DEBUG:teuthology.orchestra.run.smithi062:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T01:26:40.491 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-12-02T01:26:40.499 DEBUG:teuthology.orchestra.run.smithi072:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T01:26:40.502 DEBUG:teuthology.orchestra.run.smithi175:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T01:26:40.507 INFO:teuthology.orchestra.run.smithi062.stderr:bash: ntpq: command not found 2023-12-02T01:26:40.510 INFO:teuthology.orchestra.run.smithi062.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T01:26:40.511 INFO:teuthology.orchestra.run.smithi062.stdout:=============================================================================== 2023-12-02T01:26:40.511 INFO:teuthology.orchestra.run.smithi062.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 12 +1058us[+1006us] +/- 99ms 2023-12-02T01:26:40.511 INFO:teuthology.orchestra.run.smithi062.stdout:^* hv02.front.sepia.ceph.com 3 6 77 12 -188us[ -241us] +/- 75ms 2023-12-02T01:26:40.511 INFO:teuthology.orchestra.run.smithi062.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 11 -617us[ -617us] +/- 70ms 2023-12-02T01:26:40.511 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:26:40.515 INFO:teuthology.orchestra.run.smithi072.stderr:bash: ntpq: command not found 2023-12-02T01:26:40.518 INFO:teuthology.orchestra.run.smithi175.stderr:bash: ntpq: command not found 2023-12-02T01:26:40.518 INFO:teuthology.orchestra.run.smithi072.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T01:26:40.518 INFO:teuthology.orchestra.run.smithi072.stdout:=============================================================================== 2023-12-02T01:26:40.519 INFO:teuthology.orchestra.run.smithi072.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 12 +1055us[+1060us] +/- 99ms 2023-12-02T01:26:40.519 INFO:teuthology.orchestra.run.smithi072.stdout:^* hv02.front.sepia.ceph.com 3 6 77 12 -187us[ -182us] +/- 75ms 2023-12-02T01:26:40.519 INFO:teuthology.orchestra.run.smithi072.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 12 -623us[ -623us] +/- 70ms 2023-12-02T01:26:40.519 INFO:teuthology.orchestra.run.smithi072.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:26:40.522 INFO:teuthology.orchestra.run.smithi175.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T01:26:40.522 INFO:teuthology.orchestra.run.smithi175.stdout:=============================================================================== 2023-12-02T01:26:40.522 INFO:teuthology.orchestra.run.smithi175.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 11 +1046us[+1046us] +/- 99ms 2023-12-02T01:26:40.522 INFO:teuthology.orchestra.run.smithi175.stdout:^* hv02.front.sepia.ceph.com 3 6 77 11 -200us[ -175us] +/- 75ms 2023-12-02T01:26:40.522 INFO:teuthology.orchestra.run.smithi175.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 11 -632us[ -632us] +/- 70ms 2023-12-02T01:26:40.522 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T01:26:40.523 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2023-12-02T01:26:40.683 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2023-12-02T01:26:40.684 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2023-12-02T01:26:40.851 DEBUG:teuthology.orchestra.run.smithi062:> 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-12-02T01:26:40.853 INFO:teuthology.orchestra.run.smithi072.stdout:Updating Subscription Management repositories. 2023-12-02T01:26:40.853 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-12-02T01:26:40.853 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T01:26:40.961 DEBUG:teuthology.orchestra.run.smithi072:> 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-12-02T01:26:41.057 DEBUG:teuthology.orchestra.run.smithi175:> 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-12-02T01:26:41.160 DEBUG:teuthology.orchestra.run.smithi062:> 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-12-02T01:26:41.191 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:26:41.191 DEBUG:teuthology.orchestra.run.smithi072:> 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-12-02T01:26:41.223 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:26:41.223 DEBUG:teuthology.orchestra.run.smithi175:> 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-12-02T01:26:41.254 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:26:41.255 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2023-12-02T01:26:41.264 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2023-12-02T01:26:41.319 INFO:teuthology.task.internal:Duration was 697.331415 seconds 2023-12-02T01:26:41.319 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2023-12-02T01:26:41.509 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2023-12-02T01:26:41.510 DEBUG:teuthology.orchestra.run.smithi062:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-02T01:26:41.513 INFO:teuthology.orchestra.run.smithi072.stdout:Last metadata expiration check: 0:01:23 ago on Sat 02 Dec 2023 01:25:18 AM UTC. 2023-12-02T01:26:41.515 DEBUG:teuthology.orchestra.run.smithi072:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-02T01:26:41.518 DEBUG:teuthology.orchestra.run.smithi175:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-02T01:26:41.560 INFO:teuthology.orchestra.run.smithi072.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T01:26:41.560 INFO:teuthology.orchestra.run.smithi062.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T01:26:41.564 INFO:teuthology.orchestra.run.smithi175.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T01:26:41.978 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2023-12-02T01:26:41.978 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi062.front.sepia.ceph.com 2023-12-02T01:26:41.979 DEBUG:teuthology.orchestra.run.smithi062:> 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-12-02T01:26:42.002 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi072.front.sepia.ceph.com 2023-12-02T01:26:42.003 DEBUG:teuthology.orchestra.run.smithi072:> 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-12-02T01:26:42.030 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi175.front.sepia.ceph.com 2023-12-02T01:26:42.030 DEBUG:teuthology.orchestra.run.smithi175:> 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-12-02T01:26:42.052 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2023-12-02T01:26:42.053 DEBUG:teuthology.orchestra.run.smithi062:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-02T01:26:42.055 DEBUG:teuthology.orchestra.run.smithi072:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-02T01:26:42.072 DEBUG:teuthology.orchestra.run.smithi175:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-02T01:26:42.133 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2023-12-02T01:26:42.134 DEBUG:teuthology.orchestra.run.smithi062:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-02T01:26:42.136 DEBUG:teuthology.orchestra.run.smithi072:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-02T01:26:42.150 DEBUG:teuthology.orchestra.run.smithi175:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-02T01:26:42.255 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2023-12-02T01:26:42.264 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2023-12-02T01:26:42.265 DEBUG:teuthology.orchestra.run.smithi062:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-02T01:26:42.321 DEBUG:teuthology.orchestra.run.smithi072:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-02T01:26:42.358 DEBUG:teuthology.orchestra.run.smithi175:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-02T01:26:42.395 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2023-12-02T01:26:42.405 DEBUG:teuthology.orchestra.run.smithi062:> 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-12-02T01:26:42.408 DEBUG:teuthology.orchestra.run.smithi072:> 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-12-02T01:26:42.411 DEBUG:teuthology.orchestra.run.smithi175:> 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-12-02T01:26:42.432 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern = core 2023-12-02T01:26:42.434 INFO:teuthology.orchestra.run.smithi072.stdout:kernel.core_pattern = core 2023-12-02T01:26:42.462 INFO:teuthology.orchestra.run.smithi175.stdout:kernel.core_pattern = core 2023-12-02T01:26:42.477 DEBUG:teuthology.orchestra.run.smithi062:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-02T01:26:42.507 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:26:42.507 DEBUG:teuthology.orchestra.run.smithi072:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-02T01:26:42.522 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:26:42.522 DEBUG:teuthology.orchestra.run.smithi175:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-02T01:26:42.538 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:26:42.538 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2023-12-02T01:26:42.556 INFO:teuthology.task.internal:Transferring archived files... 2023-12-02T01:26:42.557 DEBUG:teuthology.misc:Transferring archived files from smithi062:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683/remote/smithi062 2023-12-02T01:26:42.558 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-02T01:26:42.607 DEBUG:teuthology.misc:Transferring archived files from smithi072:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683/remote/smithi072 2023-12-02T01:26:42.608 DEBUG:teuthology.orchestra.run.smithi072:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-02T01:26:42.665 DEBUG:teuthology.misc:Transferring archived files from smithi175:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683/remote/smithi175 2023-12-02T01:26:42.666 DEBUG:teuthology.orchestra.run.smithi175:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-02T01:26:42.713 INFO:teuthology.task.internal:Removing archive directory... 2023-12-02T01:26:42.713 DEBUG:teuthology.orchestra.run.smithi062:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-02T01:26:42.715 DEBUG:teuthology.orchestra.run.smithi072:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-02T01:26:42.717 DEBUG:teuthology.orchestra.run.smithi175:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-02T01:26:42.765 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2023-12-02T01:26:42.774 INFO:teuthology.task.internal:Not uploading archives. 2023-12-02T01:26:42.774 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2023-12-02T01:26:42.783 INFO:teuthology.task.internal:Tidying up after the test... 2023-12-02T01:26:42.784 DEBUG:teuthology.orchestra.run.smithi062:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-02T01:26:42.786 DEBUG:teuthology.orchestra.run.smithi072:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-02T01:26:42.788 DEBUG:teuthology.orchestra.run.smithi175:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-02T01:26:42.800 INFO:teuthology.orchestra.run.smithi062.stdout: 262307 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 2 01:26 /home/ubuntu/cephtest 2023-12-02T01:26:42.802 INFO:teuthology.orchestra.run.smithi072.stdout: 262320 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 2 01:26 /home/ubuntu/cephtest 2023-12-02T01:26:42.821 INFO:teuthology.orchestra.run.smithi175.stdout: 262307 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 2 01:26 /home/ubuntu/cephtest 2023-12-02T01:26:42.822 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2023-12-02T01:26:42.833 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2023-12-02T01:26:42.996 INFO:teuthology.nuke:Checking targets against current locks 2023-12-02T01:26:43.000 INFO:teuthology.orchestra.run.smithi072.stderr:Error: 2023-12-02T01:26:43.001 INFO:teuthology.orchestra.run.smithi072.stderr: Problem: conflicting requests 2023-12-02T01:26:43.001 INFO:teuthology.orchestra.run.smithi072.stderr: - nothing provides lua-devel needed by ceph-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T01:26:43.001 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T01:26:43.002 INFO:teuthology.orchestra.run.smithi072.stdout:(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) 2023-12-02T01:26:43.025 DEBUG:teuthology.nuke:shortname: smithi062 2023-12-02T01:26:43.025 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-02T01:26:43.053 DEBUG:teuthology.nuke:shortname: smithi072 2023-12-02T01:26:43.053 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-02T01:26:43.058 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi062.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683', '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-12-02 01:09:04.875952', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T01:26:43.074 DEBUG:teuthology.nuke:shortname: smithi175 2023-12-02T01:26:43.074 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-02T01:26:43.082 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi072.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683', '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-12-02 01:09:04.877687', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T01:26:43.092 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi175.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_17:58:18-rados-main-distro-default-smithi/7474683', '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-12-02 01:09:04.878855', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T01:26:43.110 INFO:teuthology.orchestra.console.smithi062:Power off 2023-12-02T01:26:43.110 DEBUG:teuthology.orchestra.console.smithi062:pexpect command: ipmitool -H smithi062.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-02T01:26:43.137 DEBUG:teuthology.orchestra.console.smithi062:power off output: Chassis Power Control: Down/Off 2023-12-02T01:26:43.137 DEBUG:teuthology.orchestra.console.smithi062:pexpect command: ipmitool -H smithi062.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:43.158 INFO:teuthology.orchestra.console.smithi072:Power off 2023-12-02T01:26:43.158 DEBUG:teuthology.orchestra.console.smithi072:pexpect command: ipmitool -H smithi072.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-02T01:26:43.174 INFO:teuthology.orchestra.console.smithi175:Power off 2023-12-02T01:26:43.174 DEBUG:teuthology.orchestra.console.smithi175:pexpect command: ipmitool -H smithi175.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-02T01:26:43.183 DEBUG:teuthology.orchestra.console.smithi062:check power output: Chassis Power is on 2023-12-02T01:26:43.183 DEBUG:teuthology.orchestra.console.smithi072:power off output: Chassis Power Control: Down/Off 2023-12-02T01:26:43.183 DEBUG:teuthology.orchestra.console.smithi072:pexpect command: ipmitool -H smithi072.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:43.197 DEBUG:teuthology.orchestra.console.smithi175:power off output: Chassis Power Control: Down/Off 2023-12-02T01:26:43.197 DEBUG:teuthology.orchestra.console.smithi175:pexpect command: ipmitool -H smithi175.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:43.209 DEBUG:teuthology.orchestra.console.smithi072:check power output: Chassis Power is on 2023-12-02T01:26:43.220 DEBUG:teuthology.orchestra.console.smithi175:check power output: Chassis Power is on 2023-12-02T01:26:45.784 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T01:26:46.037 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T01:26:46.266 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T01:26:46.266 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 1/6 2023-12-02T01:26:46.266 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2/6 2023-12-02T01:26:46.266 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-12-02T01:26:46.267 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-12-02T01:26:46.267 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-12-02T01:26:46.391 DEBUG:teuthology.orchestra.run:got remote process result: None 2023-12-02T01:26:46.391 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-12-02T01:26:47.185 DEBUG:teuthology.orchestra.console.smithi062:pexpect command: ipmitool -H smithi062.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:47.210 DEBUG:teuthology.orchestra.console.smithi072:pexpect command: ipmitool -H smithi072.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:47.221 DEBUG:teuthology.orchestra.console.smithi175:pexpect command: ipmitool -H smithi175.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:47.295 DEBUG:teuthology.orchestra.console.smithi062:check power output: Chassis Power is on 2023-12-02T01:26:47.320 DEBUG:teuthology.orchestra.console.smithi072:check power output: Chassis Power is on 2023-12-02T01:26:47.331 DEBUG:teuthology.orchestra.console.smithi175:check power output: Chassis Power is on 2023-12-02T01:26:51.299 DEBUG:teuthology.orchestra.console.smithi062:pexpect command: ipmitool -H smithi062.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:51.321 DEBUG:teuthology.orchestra.console.smithi072:pexpect command: ipmitool -H smithi072.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:51.331 DEBUG:teuthology.orchestra.console.smithi175:pexpect command: ipmitool -H smithi175.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T01:26:51.412 DEBUG:teuthology.orchestra.console.smithi062:check power output: Chassis Power is off 2023-12-02T01:26:51.432 DEBUG:teuthology.orchestra.console.smithi072:check power output: Chassis Power is off 2023-12-02T01:26:51.443 DEBUG:teuthology.orchestra.console.smithi175:check power output: Chassis Power is off 2023-12-02T01:26:51.513 INFO:teuthology.orchestra.console.smithi062:Power off completed 2023-12-02T01:26:51.533 INFO:teuthology.orchestra.console.smithi072:Power off completed 2023-12-02T01:26:51.544 INFO:teuthology.orchestra.console.smithi175:Power off completed 2023-12-02T01:26:51.649 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/classic task/test_host_drain} duration: 697.3314146995544 failure_reason: 'Command failed on smithi175 with status 1: ''sudo yum -y install ceph''' flavor: default owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=d86ba09850ac4eb18b2ff6bc1b3de9ff status: fail success: false 2023-12-02T01:26:51.649 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-12-02T01:26:51.743 INFO:teuthology.run:FAIL