2023-11-25T09:58:18.447 INFO:root:teuthology version: 0.0.1.dev205+g2442239 2023-11-25T09:58:18.447 DEBUG:teuthology.run:Teuthology command: teuthology --owner scheduled_yuriw@teuthology --name yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi --verbose --description orch/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/classic task/test_host_drain} --archive /home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660 -- /home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660/orig.config.yaml 2023-11-25T09:58:18.479 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-11-25T09:58:18.560 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660 branch: main description: orch/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: '7466660' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2023-11-24_21:25:11-orch-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: ec928368edcc5fc71884a56fd9fd821b148f4e30 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: ec928368edcc5fc71884a56fd9fd821b148f4e30 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: ec928368edcc5fc71884a56fd9fd821b148f4e30 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: 1518 sha1: ec928368edcc5fc71884a56fd9fd821b148f4e30 sleep_before_teardown: 0 subset: 111/120000 suite: orch suite_branch: main suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_ec928368edcc5fc71884a56fd9fd821b148f4e30/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: ec928368edcc5fc71884a56fd9fd821b148f4e30 targets: smithi046.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= smithi116.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= smithi179.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: 2442239d2653456406c25ae0c71b689c8f2657b6 timestamp: 2023-11-24_21:25:11 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.232157 2023-11-25T09:58:18.560 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_ec928368edcc5fc71884a56fd9fd821b148f4e30/qa; will attempt to use it 2023-11-25T09:58:18.561 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_ec928368edcc5fc71884a56fd9fd821b148f4e30/qa/tasks 2023-11-25T09:58:18.561 INFO:teuthology.run_tasks:Running task internal.check_packages... 2023-11-25T09:58:18.563 INFO:teuthology.task.internal:Checking packages... 2023-11-25T09:58:18.586 INFO:teuthology.task.internal:Checking packages for os_type 'rhel', flavor 'default' and ceph hash 'ec928368edcc5fc71884a56fd9fd821b148f4e30' 2023-11-25T09:58:18.586 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2023-11-25T09:58:18.587 INFO:teuthology.packaging:ref: None 2023-11-25T09:58:18.587 INFO:teuthology.packaging:tag: None 2023-11-25T09:58:18.587 INFO:teuthology.packaging:branch: main 2023-11-25T09:58:18.587 INFO:teuthology.packaging:sha1: ec928368edcc5fc71884a56fd9fd821b148f4e30 2023-11-25T09:58:18.587 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=main 2023-11-25T09:58:18.950 INFO:teuthology.task.internal:Found packages for ceph version 18.0.0-7506.gec928368 2023-11-25T09:58:18.951 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2023-11-25T09:58:18.957 INFO:teuthology.task.internal:no buildpackages task found 2023-11-25T09:58:18.958 INFO:teuthology.run_tasks:Running task internal.save_config... 2023-11-25T09:58:19.020 INFO:teuthology.task.internal:Saving configuration 2023-11-25T09:58:19.039 INFO:teuthology.run_tasks:Running task internal.check_lock... 2023-11-25T09:58:19.077 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-11-25T09:58:19.102 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi046.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660', '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-11-25 09:53:09.958314', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-11-25T09:58:19.121 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi116.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660', '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-11-25 09:53:09.956670', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-11-25T09:58:19.145 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi179.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660', '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-11-25 09:53:09.959435', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-11-25T09:58:19.145 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2023-11-25T09:58:19.152 INFO:teuthology.task.internal:roles: ubuntu@smithi046.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2023-11-25T09:58:19.152 INFO:teuthology.task.internal:roles: ubuntu@smithi116.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2023-11-25T09:58:19.152 INFO:teuthology.task.internal:roles: ubuntu@smithi179.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2023-11-25T09:58:19.152 INFO:teuthology.run_tasks:Running task console_log... 2023-11-25T09:58:19.286 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f492dedeb80>, signals=[15]) 2023-11-25T09:58:19.287 INFO:teuthology.run_tasks:Running task internal.connect... 2023-11-25T09:58:19.293 INFO:teuthology.task.internal:Opening connections... 2023-11-25T09:58:19.293 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi046.front.sepia.ceph.com 2023-11-25T09:58:19.295 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi046.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-25T09:58:19.364 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi116.front.sepia.ceph.com 2023-11-25T09:58:19.365 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi116.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-25T09:58:19.432 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi179.front.sepia.ceph.com 2023-11-25T09:58:19.432 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi179.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-25T09:58:19.499 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2023-11-25T09:58:19.506 DEBUG:teuthology.orchestra.run.smithi046:> uname -m 2023-11-25T09:58:19.528 INFO:teuthology.orchestra.run.smithi046.stdout:x86_64 2023-11-25T09:58:19.529 DEBUG:teuthology.orchestra.run.smithi046:> cat /etc/os-release 2023-11-25T09:58:19.589 INFO:teuthology.orchestra.run.smithi046.stdout:NAME="Red Hat Enterprise Linux" 2023-11-25T09:58:19.589 INFO:teuthology.orchestra.run.smithi046.stdout:VERSION="8.6 (Ootpa)" 2023-11-25T09:58:19.589 INFO:teuthology.orchestra.run.smithi046.stdout:ID="rhel" 2023-11-25T09:58:19.589 INFO:teuthology.orchestra.run.smithi046.stdout:ID_LIKE="fedora" 2023-11-25T09:58:19.589 INFO:teuthology.orchestra.run.smithi046.stdout:VERSION_ID="8.6" 2023-11-25T09:58:19.589 INFO:teuthology.orchestra.run.smithi046.stdout:PLATFORM_ID="platform:el8" 2023-11-25T09:58:19.589 INFO:teuthology.orchestra.run.smithi046.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:ANSI_COLOR="0;31" 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:HOME_URL="https://www.redhat.com/" 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-11-25T09:58:19.590 INFO:teuthology.orchestra.run.smithi046.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-11-25T09:58:19.591 INFO:teuthology.lock.ops:Updating smithi046.front.sepia.ceph.com on lock server 2023-11-25T09:58:19.612 DEBUG:teuthology.orchestra.run.smithi116:> uname -m 2023-11-25T09:58:19.632 INFO:teuthology.orchestra.run.smithi116.stdout:x86_64 2023-11-25T09:58:19.632 DEBUG:teuthology.orchestra.run.smithi116:> cat /etc/os-release 2023-11-25T09:58:19.692 INFO:teuthology.orchestra.run.smithi116.stdout:NAME="Red Hat Enterprise Linux" 2023-11-25T09:58:19.692 INFO:teuthology.orchestra.run.smithi116.stdout:VERSION="8.6 (Ootpa)" 2023-11-25T09:58:19.692 INFO:teuthology.orchestra.run.smithi116.stdout:ID="rhel" 2023-11-25T09:58:19.692 INFO:teuthology.orchestra.run.smithi116.stdout:ID_LIKE="fedora" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:VERSION_ID="8.6" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:PLATFORM_ID="platform:el8" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:ANSI_COLOR="0;31" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:HOME_URL="https://www.redhat.com/" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-11-25T09:58:19.693 INFO:teuthology.orchestra.run.smithi116.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-11-25T09:58:19.694 INFO:teuthology.orchestra.run.smithi116.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-11-25T09:58:19.694 INFO:teuthology.orchestra.run.smithi116.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-11-25T09:58:19.694 INFO:teuthology.lock.ops:Updating smithi116.front.sepia.ceph.com on lock server 2023-11-25T09:58:19.721 DEBUG:teuthology.orchestra.run.smithi179:> uname -m 2023-11-25T09:58:19.742 INFO:teuthology.orchestra.run.smithi179.stdout:x86_64 2023-11-25T09:58:19.742 DEBUG:teuthology.orchestra.run.smithi179:> cat /etc/os-release 2023-11-25T09:58:19.801 INFO:teuthology.orchestra.run.smithi179.stdout:NAME="Red Hat Enterprise Linux" 2023-11-25T09:58:19.801 INFO:teuthology.orchestra.run.smithi179.stdout:VERSION="8.6 (Ootpa)" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:ID="rhel" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:ID_LIKE="fedora" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:VERSION_ID="8.6" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:PLATFORM_ID="platform:el8" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:ANSI_COLOR="0;31" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:HOME_URL="https://www.redhat.com/" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-11-25T09:58:19.802 INFO:teuthology.orchestra.run.smithi179.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-11-25T09:58:19.803 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T09:58:19.803 INFO:teuthology.orchestra.run.smithi179.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-11-25T09:58:19.803 INFO:teuthology.orchestra.run.smithi179.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-11-25T09:58:19.803 INFO:teuthology.orchestra.run.smithi179.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-11-25T09:58:19.803 INFO:teuthology.orchestra.run.smithi179.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-11-25T09:58:19.803 INFO:teuthology.lock.ops:Updating smithi179.front.sepia.ceph.com on lock server 2023-11-25T09:58:19.829 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2023-11-25T09:58:19.838 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2023-11-25T09:58:19.901 INFO:teuthology.task.internal:Checking for old test directory... 2023-11-25T09:58:19.901 DEBUG:teuthology.orchestra.run.smithi046:> test '!' -e /home/ubuntu/cephtest 2023-11-25T09:58:19.904 DEBUG:teuthology.orchestra.run.smithi116:> test '!' -e /home/ubuntu/cephtest 2023-11-25T09:58:19.908 DEBUG:teuthology.orchestra.run.smithi179:> test '!' -e /home/ubuntu/cephtest 2023-11-25T09:58:19.927 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2023-11-25T09:58:20.072 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2023-11-25T09:58:20.072 DEBUG:teuthology.orchestra.run.smithi046:> test -z $(ls -A /var/lib/ceph) 2023-11-25T09:58:20.074 DEBUG:teuthology.orchestra.run.smithi116:> test -z $(ls -A /var/lib/ceph) 2023-11-25T09:58:20.076 DEBUG:teuthology.orchestra.run.smithi179:> test -z $(ls -A /var/lib/ceph) 2023-11-25T09:58:20.125 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2023-11-25T09:58:20.201 INFO:teuthology.run_tasks:Running task kernel... 2023-11-25T09:58:20.215 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2023-11-25T09:58:20.215 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-11-25T09:58:20.216 DEBUG:teuthology.orchestra.run.smithi046:> test -f /run/.containerenv -o -f /.dockerenv 2023-11-25T09:58:20.216 DEBUG:teuthology.orchestra.run.smithi116:> test -f /run/.containerenv -o -f /.dockerenv 2023-11-25T09:58:20.217 DEBUG:teuthology.orchestra.run.smithi179:> test -f /run/.containerenv -o -f /.dockerenv 2023-11-25T09:58:20.235 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T09:58:20.236 DEBUG:teuthology.orchestra.run.smithi116:> uname -r 2023-11-25T09:58:20.236 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T09:58:20.237 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T09:58:20.238 DEBUG:teuthology.orchestra.run.smithi046:> uname -r 2023-11-25T09:58:20.238 DEBUG:teuthology.orchestra.run.smithi179:> uname -r 2023-11-25T09:58:20.295 INFO:teuthology.orchestra.run.smithi116.stdout:4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:20.295 INFO:teuthology.task.kernel:Running kernel on smithi116: 4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:20.296 DEBUG:teuthology.orchestra.run.smithi116:> sudo yum install -y kernel 2023-11-25T09:58:20.297 INFO:teuthology.orchestra.run.smithi179.stdout:4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:20.297 INFO:teuthology.task.kernel:Running kernel on smithi179: 4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:20.298 DEBUG:teuthology.orchestra.run.smithi179:> sudo yum install -y kernel 2023-11-25T09:58:20.299 INFO:teuthology.orchestra.run.smithi046.stdout:4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:20.299 INFO:teuthology.task.kernel:Running kernel on smithi046: 4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:20.299 DEBUG:teuthology.orchestra.run.smithi046:> sudo yum install -y kernel 2023-11-25T09:58:21.453 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:21.453 INFO:teuthology.orchestra.run.smithi179.stdout:Unable to read consumer identity 2023-11-25T09:58:21.539 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:21.539 INFO:teuthology.orchestra.run.smithi116.stdout:Unable to read consumer identity 2023-11-25T09:58:21.569 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:21.570 INFO:teuthology.orchestra.run.smithi046.stdout:Unable to read consumer identity 2023-11-25T09:58:22.927 INFO:teuthology.orchestra.run.smithi179.stdout:Copr repo for python3-asyncssh owned by ceph 21 kB/s | 3.5 kB 00:00 2023-11-25T09:58:22.995 INFO:teuthology.orchestra.run.smithi116.stdout:Copr repo for python3-asyncssh owned by ceph 21 kB/s | 3.5 kB 00:00 2023-11-25T09:58:23.035 INFO:teuthology.orchestra.run.smithi046.stdout:Copr repo for python3-asyncssh owned by ceph 18 kB/s | 3.5 kB 00:00 2023-11-25T09:58:23.877 INFO:teuthology.orchestra.run.smithi179.stdout:Extra Packages for Enterprise Linux 17 MB/s | 16 MB 00:00 2023-11-25T09:58:24.396 INFO:teuthology.orchestra.run.smithi116.stdout:Extra Packages for Enterprise Linux 12 MB/s | 16 MB 00:01 2023-11-25T09:58:24.553 INFO:teuthology.orchestra.run.smithi046.stdout:Extra Packages for Enterprise Linux 11 MB/s | 16 MB 00:01 2023-11-25T09:58:27.353 INFO:teuthology.orchestra.run.smithi179.stdout:lab-extras 444 kB/s | 24 kB 00:00 2023-11-25T09:58:27.951 INFO:teuthology.orchestra.run.smithi116.stdout:lab-extras 296 kB/s | 24 kB 00:00 2023-11-25T09:58:28.019 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:00:01 ago on Sat 25 Nov 2023 09:58:27 AM UTC. 2023-11-25T09:58:28.072 INFO:teuthology.orchestra.run.smithi179.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-11-25T09:58:28.131 INFO:teuthology.orchestra.run.smithi179.stdout:Dependencies resolved. 2023-11-25T09:58:28.132 INFO:teuthology.orchestra.run.smithi179.stdout:Nothing to do. 2023-11-25T09:58:28.132 INFO:teuthology.orchestra.run.smithi179.stdout:Complete! 2023-11-25T09:58:28.203 INFO:teuthology.orchestra.run.smithi046.stdout:lab-extras 510 kB/s | 24 kB 00:00 2023-11-25T09:58:28.241 DEBUG:teuthology.orchestra.run.smithi179:> echo no | sudo yum reinstall kernel || true 2023-11-25T09:58:28.571 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:28.572 INFO:teuthology.orchestra.run.smithi179.stdout:Unable to read consumer identity 2023-11-25T09:58:28.665 INFO:teuthology.orchestra.run.smithi116.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-11-25T09:58:28.725 INFO:teuthology.orchestra.run.smithi116.stdout:Dependencies resolved. 2023-11-25T09:58:28.726 INFO:teuthology.orchestra.run.smithi116.stdout:Nothing to do. 2023-11-25T09:58:28.726 INFO:teuthology.orchestra.run.smithi116.stdout:Complete! 2023-11-25T09:58:28.847 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:00:01 ago on Sat 25 Nov 2023 09:58:27 AM UTC. 2023-11-25T09:58:28.854 DEBUG:teuthology.orchestra.run.smithi116:> echo no | sudo yum reinstall kernel || true 2023-11-25T09:58:28.888 INFO:teuthology.orchestra.run.smithi179.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-11-25T09:58:28.905 INFO:teuthology.orchestra.run.smithi046.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-11-25T09:58:28.924 INFO:teuthology.orchestra.run.smithi179.stderr:Error: No packages marked for reinstall. 2023-11-25T09:58:28.966 INFO:teuthology.orchestra.run.smithi046.stdout:Dependencies resolved. 2023-11-25T09:58:28.967 INFO:teuthology.orchestra.run.smithi046.stdout:Nothing to do. 2023-11-25T09:58:28.967 INFO:teuthology.orchestra.run.smithi046.stdout:Complete! 2023-11-25T09:58:28.970 DEBUG:teuthology.orchestra.run.smithi179:> sudo yum reinstall -y kernel || true 2023-11-25T09:58:29.119 DEBUG:teuthology.orchestra.run.smithi046:> echo no | sudo yum reinstall kernel || true 2023-11-25T09:58:29.184 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:29.184 INFO:teuthology.orchestra.run.smithi116.stdout:Unable to read consumer identity 2023-11-25T09:58:29.298 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:29.298 INFO:teuthology.orchestra.run.smithi179.stdout:Unable to read consumer identity 2023-11-25T09:58:29.449 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:00:02 ago on Sat 25 Nov 2023 09:58:27 AM UTC. 2023-11-25T09:58:29.471 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:29.471 INFO:teuthology.orchestra.run.smithi046.stdout:Unable to read consumer identity 2023-11-25T09:58:29.489 INFO:teuthology.orchestra.run.smithi116.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-11-25T09:58:29.525 INFO:teuthology.orchestra.run.smithi116.stderr:Error: No packages marked for reinstall. 2023-11-25T09:58:29.558 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:00:02 ago on Sat 25 Nov 2023 09:58:27 AM UTC. 2023-11-25T09:58:29.570 DEBUG:teuthology.orchestra.run.smithi116:> sudo yum reinstall -y kernel || true 2023-11-25T09:58:29.598 INFO:teuthology.orchestra.run.smithi179.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-11-25T09:58:29.620 INFO:teuthology.orchestra.run.smithi179.stderr:Error: No packages marked for reinstall. 2023-11-25T09:58:29.668 DEBUG:teuthology.orchestra.run.smithi179:> rpm -q kernel | sort -rV | head -n 1 2023-11-25T09:58:29.748 INFO:teuthology.orchestra.run.smithi179.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:29.748 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:29.749 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-11-25T09:58:29.749 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2023-11-25T09:58:29.749 DEBUG:teuthology.orchestra.run.smithi179:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-11-25T09:58:29.749 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:00:01 ago on Sat 25 Nov 2023 09:58:28 AM UTC. 2023-11-25T09:58:29.784 INFO:teuthology.orchestra.run.smithi179.stdout:ttyS1 2023-11-25T09:58:29.793 INFO:teuthology.orchestra.run.smithi046.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-11-25T09:58:29.796 DEBUG:teuthology.parallel:result is None 2023-11-25T09:58:29.838 INFO:teuthology.orchestra.run.smithi046.stderr:Error: No packages marked for reinstall. 2023-11-25T09:58:29.886 DEBUG:teuthology.orchestra.run.smithi046:> sudo yum reinstall -y kernel || true 2023-11-25T09:58:29.899 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:29.899 INFO:teuthology.orchestra.run.smithi116.stdout:Unable to read consumer identity 2023-11-25T09:58:30.161 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:00:03 ago on Sat 25 Nov 2023 09:58:27 AM UTC. 2023-11-25T09:58:30.201 INFO:teuthology.orchestra.run.smithi116.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-11-25T09:58:30.233 INFO:teuthology.orchestra.run.smithi116.stderr:Error: No packages marked for reinstall. 2023-11-25T09:58:30.234 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T09:58:30.234 INFO:teuthology.orchestra.run.smithi046.stdout:Unable to read consumer identity 2023-11-25T09:58:30.280 DEBUG:teuthology.orchestra.run.smithi116:> rpm -q kernel | sort -rV | head -n 1 2023-11-25T09:58:30.360 INFO:teuthology.orchestra.run.smithi116.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:30.360 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:30.360 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-11-25T09:58:30.360 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2023-11-25T09:58:30.361 DEBUG:teuthology.orchestra.run.smithi116:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-11-25T09:58:30.387 INFO:teuthology.orchestra.run.smithi116.stdout:ttyS1 2023-11-25T09:58:30.402 DEBUG:teuthology.parallel:result is None 2023-11-25T09:58:30.514 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:00:02 ago on Sat 25 Nov 2023 09:58:28 AM UTC. 2023-11-25T09:58:30.558 INFO:teuthology.orchestra.run.smithi046.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-11-25T09:58:30.591 INFO:teuthology.orchestra.run.smithi046.stderr:Error: No packages marked for reinstall. 2023-11-25T09:58:30.638 DEBUG:teuthology.orchestra.run.smithi046:> rpm -q kernel | sort -rV | head -n 1 2023-11-25T09:58:30.720 INFO:teuthology.orchestra.run.smithi046.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:30.721 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-11-25T09:58:30.721 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-11-25T09:58:30.721 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2023-11-25T09:58:30.721 DEBUG:teuthology.orchestra.run.smithi046:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-11-25T09:58:30.747 INFO:teuthology.orchestra.run.smithi046.stdout:ttyS1 2023-11-25T09:58:30.768 DEBUG:teuthology.parallel:result is None 2023-11-25T09:58:30.768 INFO:teuthology.run_tasks:Running task internal.base... 2023-11-25T09:58:30.776 INFO:teuthology.task.internal:Creating test directory... 2023-11-25T09:58:30.777 DEBUG:teuthology.orchestra.run.smithi046:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-11-25T09:58:30.811 DEBUG:teuthology.orchestra.run.smithi116:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-11-25T09:58:30.813 DEBUG:teuthology.orchestra.run.smithi179:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-11-25T09:58:30.834 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2023-11-25T09:58:30.842 INFO:teuthology.run_tasks:Running task internal.archive... 2023-11-25T09:58:30.915 INFO:teuthology.task.internal:Creating archive directory... 2023-11-25T09:58:30.915 DEBUG:teuthology.orchestra.run.smithi046:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-11-25T09:58:30.917 DEBUG:teuthology.orchestra.run.smithi116:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-11-25T09:58:30.919 DEBUG:teuthology.orchestra.run.smithi179:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-11-25T09:58:30.949 INFO:teuthology.run_tasks:Running task internal.coredump... 2023-11-25T09:58:30.956 INFO:teuthology.task.internal:Enabling coredump saving... 2023-11-25T09:58:30.957 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T09:58:30.983 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T09:58:30.987 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T09:58:31.009 INFO:teuthology.orchestra.run.smithi046.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-25T09:58:31.018 INFO:teuthology.orchestra.run.smithi116.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-25T09:58:31.019 INFO:teuthology.orchestra.run.smithi179.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-25T09:58:31.019 INFO:teuthology.orchestra.run.smithi046.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-25T09:58:31.028 INFO:teuthology.orchestra.run.smithi116.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-25T09:58:31.031 INFO:teuthology.orchestra.run.smithi179.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-25T09:58:31.032 INFO:teuthology.run_tasks:Running task internal.sudo... 2023-11-25T09:58:31.040 INFO:teuthology.task.internal:Configuring sudo... 2023-11-25T09:58:31.040 DEBUG:teuthology.orchestra.run.smithi046:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-11-25T09:58:31.063 DEBUG:teuthology.orchestra.run.smithi116:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-11-25T09:58:31.072 DEBUG:teuthology.orchestra.run.smithi179:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-11-25T09:58:31.102 INFO:teuthology.run_tasks:Running task internal.syslog... 2023-11-25T09:58:31.110 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2023-11-25T09:58:31.110 DEBUG:teuthology.orchestra.run.smithi046:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-11-25T09:58:31.131 DEBUG:teuthology.orchestra.run.smithi116:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-11-25T09:58:31.139 DEBUG:teuthology.orchestra.run.smithi179:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-11-25T09:58:31.160 DEBUG:teuthology.orchestra.run.smithi046:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-25T09:58:31.230 DEBUG:teuthology.orchestra.run.smithi046:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-25T09:58:31.290 DEBUG:teuthology.orchestra.run.smithi046:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-25T09:58:31.336 DEBUG:teuthology.orchestra.run.smithi046:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-25T09:58:31.376 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2023-11-25T09:58:31.376 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-11-25T09:58:31.466 DEBUG:teuthology.orchestra.run.smithi116:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-25T09:58:31.510 DEBUG:teuthology.orchestra.run.smithi116:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-25T09:58:31.561 DEBUG:teuthology.orchestra.run.smithi116:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-25T09:58:31.645 DEBUG:teuthology.orchestra.run.smithi116:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-25T09:58:31.687 DEBUG:teuthology.orchestra.run.smithi116:> set -ex 2023-11-25T09:58:31.687 DEBUG:teuthology.orchestra.run.smithi116:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-11-25T09:58:31.755 DEBUG:teuthology.orchestra.run.smithi179:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-25T09:58:31.803 DEBUG:teuthology.orchestra.run.smithi179:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-25T09:58:31.860 DEBUG:teuthology.orchestra.run.smithi179:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-25T09:58:31.943 DEBUG:teuthology.orchestra.run.smithi179:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-25T09:58:31.988 DEBUG:teuthology.orchestra.run.smithi179:> set -ex 2023-11-25T09:58:31.989 DEBUG:teuthology.orchestra.run.smithi179:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-11-25T09:58:32.057 DEBUG:teuthology.orchestra.run.smithi046:> sudo service rsyslog restart 2023-11-25T09:58:32.060 DEBUG:teuthology.orchestra.run.smithi116:> sudo service rsyslog restart 2023-11-25T09:58:32.063 DEBUG:teuthology.orchestra.run.smithi179:> sudo service rsyslog restart 2023-11-25T09:58:32.126 INFO:teuthology.orchestra.run.smithi046.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-25T09:58:32.129 INFO:teuthology.orchestra.run.smithi116.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-25T09:58:32.157 INFO:teuthology.orchestra.run.smithi179.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-25T09:58:32.524 INFO:teuthology.run_tasks:Running task internal.timer... 2023-11-25T09:58:32.533 INFO:teuthology.task.internal:Starting timer... 2023-11-25T09:58:32.533 INFO:teuthology.run_tasks:Running task pcp... 2023-11-25T09:58:32.544 INFO:teuthology.run_tasks:Running task selinux... 2023-11-25T09:58:32.553 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2023-11-25T09:58:32.553 DEBUG:teuthology.orchestra.run.smithi046:> sudo service auditd rotate 2023-11-25T09:58:32.616 INFO:teuthology.orchestra.run.smithi046.stdout:Rotating logs: 2023-11-25T09:58:32.618 DEBUG:teuthology.orchestra.run.smithi116:> sudo service auditd rotate 2023-11-25T09:58:32.686 INFO:teuthology.orchestra.run.smithi116.stdout:Rotating logs: 2023-11-25T09:58:32.688 DEBUG:teuthology.orchestra.run.smithi179:> sudo service auditd rotate 2023-11-25T09:58:32.754 INFO:teuthology.orchestra.run.smithi179.stdout:Rotating logs: 2023-11-25T09:58:32.756 DEBUG:teuthology.task.selinux:Getting current SELinux state 2023-11-25T09:58:32.756 DEBUG:teuthology.orchestra.run.smithi046:> /usr/sbin/getenforce 2023-11-25T09:58:32.786 INFO:teuthology.orchestra.run.smithi046.stdout:Permissive 2023-11-25T09:58:32.786 DEBUG:teuthology.orchestra.run.smithi116:> /usr/sbin/getenforce 2023-11-25T09:58:32.821 INFO:teuthology.orchestra.run.smithi116.stdout:Permissive 2023-11-25T09:58:32.821 DEBUG:teuthology.orchestra.run.smithi179:> /usr/sbin/getenforce 2023-11-25T09:58:32.844 INFO:teuthology.orchestra.run.smithi179.stdout:Permissive 2023-11-25T09:58:32.844 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi046.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi116.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi179.front.sepia.ceph.com': 'permissive'} 2023-11-25T09:58:32.844 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T09:58:32.872 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T09:58:32.872 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T09:58:32.900 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T09:58:32.901 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T09:58:32.928 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T09:58:32.929 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2023-11-25T09:58:32.929 DEBUG:teuthology.orchestra.run.smithi046:> sudo /usr/sbin/setenforce permissive 2023-11-25T09:58:32.958 DEBUG:teuthology.orchestra.run.smithi116:> sudo /usr/sbin/setenforce permissive 2023-11-25T09:58:32.985 DEBUG:teuthology.orchestra.run.smithi179:> sudo /usr/sbin/setenforce permissive 2023-11-25T09:58:33.012 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2023-11-25T09:58:33.024 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2023-11-25T09:58:33.030 INFO:teuthology.repo_utils:Fetching main from origin 2023-11-25T09:58:33.151 INFO:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2023-11-25T09:58:33.174 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-11-25T09:58:33.175 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi046.front.sepia.ceph.com,smithi116.front.sepia.ceph.com,smithi179.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2023-11-25T10:07:41.071 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi046.front.sepia.ceph.com'), Remote(name='ubuntu@smithi116.front.sepia.ceph.com'), Remote(name='ubuntu@smithi179.front.sepia.ceph.com')] 2023-11-25T10:07:41.072 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi046.front.sepia.ceph.com' 2023-11-25T10:07:41.073 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi046.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-25T10:07:41.141 DEBUG:teuthology.orchestra.run.smithi046:> true 2023-11-25T10:07:41.208 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi046.front.sepia.ceph.com' 2023-11-25T10:07:41.208 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi116.front.sepia.ceph.com' 2023-11-25T10:07:41.209 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi116.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-25T10:07:41.277 DEBUG:teuthology.orchestra.run.smithi116:> true 2023-11-25T10:07:41.343 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi116.front.sepia.ceph.com' 2023-11-25T10:07:41.344 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi179.front.sepia.ceph.com' 2023-11-25T10:07:41.344 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi179.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-25T10:07:41.412 DEBUG:teuthology.orchestra.run.smithi179:> true 2023-11-25T10:07:41.482 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi179.front.sepia.ceph.com' 2023-11-25T10:07:41.482 INFO:teuthology.run_tasks:Running task clock... 2023-11-25T10:07:41.493 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2023-11-25T10:07:41.493 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-11-25T10:07:41.494 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T10:07:41.496 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-11-25T10:07:41.496 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T10:07:41.498 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-11-25T10:07:41.498 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T10:07:41.529 INFO:teuthology.orchestra.run.smithi116.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-11-25T10:07:41.529 INFO:teuthology.orchestra.run.smithi046.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-11-25T10:07:41.544 INFO:teuthology.orchestra.run.smithi116.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-11-25T10:07:41.546 INFO:teuthology.orchestra.run.smithi046.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-11-25T10:07:41.553 INFO:teuthology.orchestra.run.smithi179.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-11-25T10:07:41.568 INFO:teuthology.orchestra.run.smithi179.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-11-25T10:07:41.611 INFO:teuthology.orchestra.run.smithi116.stderr:sudo: ntpd: command not found 2023-11-25T10:07:41.621 INFO:teuthology.orchestra.run.smithi046.stderr:sudo: ntpd: command not found 2023-11-25T10:07:41.623 INFO:teuthology.orchestra.run.smithi116.stdout:506 Cannot talk to daemon 2023-11-25T10:07:41.634 INFO:teuthology.orchestra.run.smithi046.stdout:506 Cannot talk to daemon 2023-11-25T10:07:41.638 INFO:teuthology.orchestra.run.smithi116.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-11-25T10:07:41.647 INFO:teuthology.orchestra.run.smithi179.stderr:sudo: ntpd: command not found 2023-11-25T10:07:41.649 INFO:teuthology.orchestra.run.smithi046.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-11-25T10:07:41.651 INFO:teuthology.orchestra.run.smithi116.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-11-25T10:07:41.659 INFO:teuthology.orchestra.run.smithi179.stdout:506 Cannot talk to daemon 2023-11-25T10:07:41.665 INFO:teuthology.orchestra.run.smithi046.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-11-25T10:07:41.673 INFO:teuthology.orchestra.run.smithi179.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-11-25T10:07:41.687 INFO:teuthology.orchestra.run.smithi179.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-11-25T10:07:41.718 INFO:teuthology.orchestra.run.smithi116.stderr:bash: ntpq: command not found 2023-11-25T10:07:41.721 INFO:teuthology.orchestra.run.smithi116.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-25T10:07:41.721 INFO:teuthology.orchestra.run.smithi116.stdout:=============================================================================== 2023-11-25T10:07:41.721 INFO:teuthology.orchestra.run.smithi116.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.722 INFO:teuthology.orchestra.run.smithi116.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.722 INFO:teuthology.orchestra.run.smithi116.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.722 INFO:teuthology.orchestra.run.smithi116.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.745 INFO:teuthology.orchestra.run.smithi046.stderr:bash: ntpq: command not found 2023-11-25T10:07:41.748 INFO:teuthology.orchestra.run.smithi046.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-25T10:07:41.748 INFO:teuthology.orchestra.run.smithi046.stdout:=============================================================================== 2023-11-25T10:07:41.748 INFO:teuthology.orchestra.run.smithi046.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.748 INFO:teuthology.orchestra.run.smithi046.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.748 INFO:teuthology.orchestra.run.smithi046.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.748 INFO:teuthology.orchestra.run.smithi046.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.756 INFO:teuthology.orchestra.run.smithi179.stderr:bash: ntpq: command not found 2023-11-25T10:07:41.760 INFO:teuthology.orchestra.run.smithi179.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-25T10:07:41.760 INFO:teuthology.orchestra.run.smithi179.stdout:=============================================================================== 2023-11-25T10:07:41.760 INFO:teuthology.orchestra.run.smithi179.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.760 INFO:teuthology.orchestra.run.smithi179.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.760 INFO:teuthology.orchestra.run.smithi179.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.760 INFO:teuthology.orchestra.run.smithi179.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:07:41.760 INFO:teuthology.run_tasks:Running task pexec... 2023-11-25T10:07:41.769 INFO:teuthology.task.pexec:Executing custom commands... 2023-11-25T10:07:41.770 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi046.front.sepia.ceph.com 2023-11-25T10:07:41.770 DEBUG:teuthology.orchestra.run.smithi046:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-11-25T10:07:41.770 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi116.front.sepia.ceph.com 2023-11-25T10:07:41.770 DEBUG:teuthology.orchestra.run.smithi116:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-11-25T10:07:41.771 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi179.front.sepia.ceph.com 2023-11-25T10:07:41.771 DEBUG:teuthology.orchestra.run.smithi179:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-11-25T10:07:42.141 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T10:07:42.173 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T10:07:42.181 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T10:07:42.965 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:01:40 ago on Sat 25 Nov 2023 10:06:02 AM UTC. 2023-11-25T10:07:42.987 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:01:43 ago on Sat 25 Nov 2023 10:05:59 AM UTC. 2023-11-25T10:07:43.032 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:01:28 ago on Sat 25 Nov 2023 10:06:14 AM UTC. 2023-11-25T10:07:44.707 INFO:teuthology.orchestra.run.smithi179.stdout:Dependencies resolved. 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout:================================================================================ 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout: Package Architecture Version Repository Size 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout:================================================================================ 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout:Resetting modules: 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout: container-tools 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction Summary 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout:================================================================================ 2023-11-25T10:07:44.709 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:07:44.841 INFO:teuthology.orchestra.run.smithi116.stdout:Dependencies resolved. 2023-11-25T10:07:44.842 INFO:teuthology.orchestra.run.smithi116.stdout:================================================================================ 2023-11-25T10:07:44.843 INFO:teuthology.orchestra.run.smithi116.stdout: Package Architecture Version Repository Size 2023-11-25T10:07:44.843 INFO:teuthology.orchestra.run.smithi116.stdout:================================================================================ 2023-11-25T10:07:44.843 INFO:teuthology.orchestra.run.smithi116.stdout:Resetting modules: 2023-11-25T10:07:44.843 INFO:teuthology.orchestra.run.smithi116.stdout: container-tools 2023-11-25T10:07:44.843 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:07:44.843 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction Summary 2023-11-25T10:07:44.843 INFO:teuthology.orchestra.run.smithi116.stdout:================================================================================ 2023-11-25T10:07:44.843 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:07:45.011 INFO:teuthology.orchestra.run.smithi046.stdout:Dependencies resolved. 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout:================================================================================ 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout: Package Architecture Version Repository Size 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout:================================================================================ 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout:Resetting modules: 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout: container-tools 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction Summary 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout:================================================================================ 2023-11-25T10:07:45.013 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:07:45.660 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:01:46 ago on Sat 25 Nov 2023 10:05:59 AM UTC. 2023-11-25T10:07:45.830 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:01:43 ago on Sat 25 Nov 2023 10:06:02 AM UTC. 2023-11-25T10:07:46.015 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:01:31 ago on Sat 25 Nov 2023 10:06:14 AM UTC. 2023-11-25T10:07:48.249 INFO:teuthology.orchestra.run.smithi179.stdout:Complete! 2023-11-25T10:07:48.696 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T10:07:49.029 INFO:teuthology.orchestra.run.smithi116.stdout:Complete! 2023-11-25T10:07:49.230 INFO:teuthology.orchestra.run.smithi046.stdout:Complete! 2023-11-25T10:07:49.491 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T10:07:49.510 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:01:50 ago on Sat 25 Nov 2023 10:05:59 AM UTC. 2023-11-25T10:07:49.708 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T10:07:50.325 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:01:47 ago on Sat 25 Nov 2023 10:06:02 AM UTC. 2023-11-25T10:07:50.921 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:01:36 ago on Sat 25 Nov 2023 10:06:14 AM UTC. 2023-11-25T10:07:51.349 INFO:teuthology.orchestra.run.smithi179.stdout:Dependencies resolved. 2023-11-25T10:07:51.443 INFO:teuthology.orchestra.run.smithi179.stdout:========================================================================================================================== 2023-11-25T10:07:51.443 INFO:teuthology.orchestra.run.smithi179.stdout: Package Arch Version Repository Size 2023-11-25T10:07:51.444 INFO:teuthology.orchestra.run.smithi179.stdout:========================================================================================================================== 2023-11-25T10:07:51.444 INFO:teuthology.orchestra.run.smithi179.stdout:Installing group/module packages: 2023-11-25T10:07:51.444 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.444 INFO:teuthology.orchestra.run.smithi179.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-11-25T10:07:51.444 INFO:teuthology.orchestra.run.smithi179.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-11-25T10:07:51.444 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.445 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.445 INFO:teuthology.orchestra.run.smithi179.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-11-25T10:07:51.445 INFO:teuthology.orchestra.run.smithi179.stdout:Installing dependencies: 2023-11-25T10:07:51.445 INFO:teuthology.orchestra.run.smithi179.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-11-25T10:07:51.445 INFO:teuthology.orchestra.run.smithi179.stdout:Downgrading: 2023-11-25T10:07:51.445 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.445 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.446 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.446 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.446 INFO:teuthology.orchestra.run.smithi179.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-11-25T10:07:51.446 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.446 INFO:teuthology.orchestra.run.smithi179.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-11-25T10:07:51.447 INFO:teuthology.orchestra.run.smithi179.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-11-25T10:07:51.447 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.447 INFO:teuthology.orchestra.run.smithi179.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-11-25T10:07:51.447 INFO:teuthology.orchestra.run.smithi179.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-11-25T10:07:51.447 INFO:teuthology.orchestra.run.smithi179.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-11-25T10:07:51.447 INFO:teuthology.orchestra.run.smithi179.stdout:Installing module profiles: 2023-11-25T10:07:51.447 INFO:teuthology.orchestra.run.smithi179.stdout: container-tools/common 2023-11-25T10:07:51.447 INFO:teuthology.orchestra.run.smithi179.stdout:Enabling module streams: 2023-11-25T10:07:51.448 INFO:teuthology.orchestra.run.smithi179.stdout: container-tools 3.0 2023-11-25T10:07:51.448 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:07:51.448 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction Summary 2023-11-25T10:07:51.448 INFO:teuthology.orchestra.run.smithi179.stdout:========================================================================================================================== 2023-11-25T10:07:51.448 INFO:teuthology.orchestra.run.smithi179.stdout:Install 7 Packages 2023-11-25T10:07:51.448 INFO:teuthology.orchestra.run.smithi179.stdout:Downgrade 12 Packages 2023-11-25T10:07:51.449 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:07:51.449 INFO:teuthology.orchestra.run.smithi179.stdout:Total download size: 51 M 2023-11-25T10:07:51.449 INFO:teuthology.orchestra.run.smithi179.stdout:Downloading Packages: 2023-11-25T10:07:51.571 INFO:teuthology.orchestra.run.smithi179.stdout:(1/19): container-selinux-2.178.0-2.module+el8. 428 kB/s | 53 kB 00:00 2023-11-25T10:07:51.680 INFO:teuthology.orchestra.run.smithi179.stdout:(2/19): containers-common-1.2.4-1.module+el8.6. 392 kB/s | 91 kB 00:00 2023-11-25T10:07:51.696 INFO:teuthology.orchestra.run.smithi179.stdout:(3/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 206 kB/s | 51 kB 00:00 2023-11-25T10:07:51.838 INFO:teuthology.orchestra.run.smithi179.stdout:(4/19): criu-3.15-1.module+el8.6.0+14874+644362 1.9 MB/s | 511 kB 00:00 2023-11-25T10:07:51.889 INFO:teuthology.orchestra.run.smithi179.stdout:(5/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 331 kB/s | 69 kB 00:00 2023-11-25T10:07:51.972 INFO:teuthology.orchestra.run.smithi179.stdout:(6/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 10 MB/s | 2.9 MB 00:00 2023-11-25T10:07:52.020 INFO:teuthology.orchestra.run.smithi116.stdout:Dependencies resolved. 2023-11-25T10:07:52.031 INFO:teuthology.orchestra.run.smithi179.stdout:(7/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 374 kB/s | 72 kB 00:00 2023-11-25T10:07:52.056 INFO:teuthology.orchestra.run.smithi179.stdout:(8/19): podman-docker-3.0.1-9.module+el8.6.0+14 668 kB/s | 56 kB 00:00 2023-11-25T10:07:52.114 INFO:teuthology.orchestra.run.smithi116.stdout:========================================================================================================================== 2023-11-25T10:07:52.114 INFO:teuthology.orchestra.run.smithi116.stdout: Package Arch Version Repository Size 2023-11-25T10:07:52.114 INFO:teuthology.orchestra.run.smithi116.stdout:========================================================================================================================== 2023-11-25T10:07:52.114 INFO:teuthology.orchestra.run.smithi116.stdout:Installing group/module packages: 2023-11-25T10:07:52.114 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.stdout:Installing dependencies: 2023-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.stdout:Downgrading: 2023-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.115 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.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-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.stdout:Installing module profiles: 2023-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.stdout: container-tools/common 2023-11-25T10:07:52.116 INFO:teuthology.orchestra.run.smithi116.stdout:Enabling module streams: 2023-11-25T10:07:52.117 INFO:teuthology.orchestra.run.smithi116.stdout: container-tools 3.0 2023-11-25T10:07:52.117 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:07:52.117 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction Summary 2023-11-25T10:07:52.117 INFO:teuthology.orchestra.run.smithi116.stdout:========================================================================================================================== 2023-11-25T10:07:52.117 INFO:teuthology.orchestra.run.smithi116.stdout:Install 7 Packages 2023-11-25T10:07:52.117 INFO:teuthology.orchestra.run.smithi116.stdout:Downgrade 12 Packages 2023-11-25T10:07:52.117 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:07:52.118 INFO:teuthology.orchestra.run.smithi116.stdout:Total download size: 51 M 2023-11-25T10:07:52.118 INFO:teuthology.orchestra.run.smithi116.stdout:Downloading Packages: 2023-11-25T10:07:52.298 INFO:teuthology.orchestra.run.smithi179.stdout:(9/19): podman-3.0.1-9.module+el8.6.0+14874+644 27 MB/s | 11 MB 00:00 2023-11-25T10:07:52.299 INFO:teuthology.orchestra.run.smithi116.stdout:(1/19): container-selinux-2.178.0-2.module+el8. 292 kB/s | 53 kB 00:00 2023-11-25T10:07:52.391 INFO:teuthology.orchestra.run.smithi116.stdout:(2/19): containers-common-1.2.4-1.module+el8.6. 334 kB/s | 91 kB 00:00 2023-11-25T10:07:52.424 INFO:teuthology.orchestra.run.smithi116.stdout:(3/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 167 kB/s | 51 kB 00:00 2023-11-25T10:07:52.432 INFO:teuthology.orchestra.run.smithi179.stdout:(10/19): conmon-2.0.26-1.module+el8.6.0+14874+6 127 kB/s | 51 kB 00:00 2023-11-25T10:07:52.457 INFO:teuthology.orchestra.run.smithi179.stdout:(11/19): podman-catatonit-3.0.1-9.module+el8.6. 2.0 MB/s | 322 kB 00:00 2023-11-25T10:07:52.458 INFO:teuthology.orchestra.run.smithi116.stdout:(4/19): criu-3.15-1.module+el8.6.0+14874+644362 3.1 MB/s | 511 kB 00:00 2023-11-25T10:07:52.491 INFO:teuthology.orchestra.run.smithi116.stdout:(5/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 687 kB/s | 69 kB 00:00 2023-11-25T10:07:52.608 INFO:teuthology.orchestra.run.smithi116.stdout:(6/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 16 MB/s | 2.9 MB 00:00 2023-11-25T10:07:52.633 INFO:teuthology.orchestra.run.smithi116.stdout:(7/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 410 kB/s | 72 kB 00:00 2023-11-25T10:07:52.658 INFO:teuthology.orchestra.run.smithi179.stdout:(12/19): containernetworking-plugins-0.9.1-1.mo 31 MB/s | 19 MB 00:00 2023-11-25T10:07:52.708 INFO:teuthology.orchestra.run.smithi179.stdout:(13/19): yajl-2.1.0-10.el8.x86_64.rpm 148 kB/s | 41 kB 00:00 2023-11-25T10:07:52.751 INFO:teuthology.orchestra.run.smithi116.stdout:(8/19): conmon-2.0.26-1.module+el8.6.0+14874+64 437 kB/s | 51 kB 00:00 2023-11-25T10:07:52.783 INFO:teuthology.orchestra.run.smithi179.stdout:(14/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 6.7 MB/s | 2.2 MB 00:00 2023-11-25T10:07:52.867 INFO:teuthology.orchestra.run.smithi046.stdout:Dependencies resolved. 2023-11-25T10:07:52.909 INFO:teuthology.orchestra.run.smithi116.stdout:(9/19): podman-3.0.1-9.module+el8.6.0+14874+644 26 MB/s | 11 MB 00:00 2023-11-25T10:07:52.934 INFO:teuthology.orchestra.run.smithi116.stdout:(10/19): podman-docker-3.0.1-9.module+el8.6.0+1 172 kB/s | 56 kB 00:00 2023-11-25T10:07:52.967 INFO:teuthology.orchestra.run.smithi046.stdout:========================================================================================================================== 2023-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.stdout: Package Arch Version Repository Size 2023-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.stdout:========================================================================================================================== 2023-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.stdout:Installing group/module packages: 2023-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.968 INFO:teuthology.orchestra.run.smithi046.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.stdout:Installing dependencies: 2023-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.stdout:Downgrading: 2023-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-11-25T10:07:52.969 INFO:teuthology.orchestra.run.smithi046.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.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-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout:Installing module profiles: 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout: container-tools/common 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout:Enabling module streams: 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout: container-tools 3.0 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction Summary 2023-11-25T10:07:52.970 INFO:teuthology.orchestra.run.smithi046.stdout:========================================================================================================================== 2023-11-25T10:07:52.971 INFO:teuthology.orchestra.run.smithi046.stdout:Install 7 Packages 2023-11-25T10:07:52.971 INFO:teuthology.orchestra.run.smithi046.stdout:Downgrade 12 Packages 2023-11-25T10:07:52.971 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:07:52.971 INFO:teuthology.orchestra.run.smithi046.stdout:Total download size: 51 M 2023-11-25T10:07:52.971 INFO:teuthology.orchestra.run.smithi046.stdout:Downloading Packages: 2023-11-25T10:07:53.000 INFO:teuthology.orchestra.run.smithi179.stdout:(15/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 19 MB/s | 6.4 MB 00:00 2023-11-25T10:07:53.035 INFO:teuthology.orchestra.run.smithi116.stdout:(11/19): podman-catatonit-3.0.1-9.module+el8.6. 2.5 MB/s | 322 kB 00:00 2023-11-25T10:07:53.042 INFO:teuthology.orchestra.run.smithi179.stdout:(16/19): cockpit-podman-29-2.module+el8.6.0+148 4.1 MB/s | 1.1 MB 00:00 2023-11-25T10:07:53.093 INFO:teuthology.orchestra.run.smithi116.stdout:(12/19): yajl-2.1.0-10.el8.x86_64.rpm 257 kB/s | 41 kB 00:00 2023-11-25T10:07:53.167 INFO:teuthology.orchestra.run.smithi179.stdout:(17/19): buildah-1.19.9-3.module+el8.6.0+14874+ 15 MB/s | 6.8 MB 00:00 2023-11-25T10:07:53.169 INFO:teuthology.orchestra.run.smithi046.stdout:(1/19): containers-common-1.2.4-1.module+el8.6. 462 kB/s | 91 kB 00:00 2023-11-25T10:07:53.194 INFO:teuthology.orchestra.run.smithi046.stdout:(2/19): container-selinux-2.178.0-2.module+el8. 238 kB/s | 53 kB 00:00 2023-11-25T10:07:53.210 INFO:teuthology.orchestra.run.smithi116.stdout:(13/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 12 MB/s | 2.2 MB 00:00 2023-11-25T10:07:53.253 INFO:teuthology.orchestra.run.smithi046.stdout:(3/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 182 kB/s | 51 kB 00:00 2023-11-25T10:07:53.301 INFO:teuthology.orchestra.run.smithi179.stdout:(18/19): crun-0.18-3.module+el8.6.0+14874+64436 616 kB/s | 185 kB 00:00 2023-11-25T10:07:53.303 INFO:teuthology.orchestra.run.smithi046.stdout:(4/19): criu-3.15-1.module+el8.6.0+14874+644362 3.7 MB/s | 511 kB 00:00 2023-11-25T10:07:53.362 INFO:teuthology.orchestra.run.smithi046.stdout:(5/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 413 kB/s | 69 kB 00:00 2023-11-25T10:07:53.376 INFO:teuthology.orchestra.run.smithi179.stdout:(19/19): udica-0.2.4-1.module+el8.6.0+14874+644 151 kB/s | 51 kB 00:00 2023-11-25T10:07:53.377 INFO:teuthology.orchestra.run.smithi179.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:07:53.377 INFO:teuthology.orchestra.run.smithi179.stdout:Total 26 MB/s | 51 MB 00:01 2023-11-25T10:07:53.444 INFO:teuthology.orchestra.run.smithi116.stdout:(14/19): containernetworking-plugins-0.9.1-1.mo 27 MB/s | 19 MB 00:00 2023-11-25T10:07:53.462 INFO:teuthology.orchestra.run.smithi046.stdout:(6/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 454 kB/s | 72 kB 00:00 2023-11-25T10:07:53.521 INFO:teuthology.orchestra.run.smithi046.stdout:(7/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 11 MB/s | 2.9 MB 00:00 2023-11-25T10:07:53.594 INFO:teuthology.orchestra.run.smithi116.stdout:(15/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 13 MB/s | 6.4 MB 00:00 2023-11-25T10:07:53.596 INFO:teuthology.orchestra.run.smithi046.stdout:(8/19): podman-docker-3.0.1-9.module+el8.6.0+14 419 kB/s | 56 kB 00:00 2023-11-25T10:07:53.686 INFO:teuthology.orchestra.run.smithi116.stdout:(16/19): buildah-1.19.9-3.module+el8.6.0+14874+ 14 MB/s | 6.8 MB 00:00 2023-11-25T10:07:53.696 INFO:teuthology.orchestra.run.smithi046.stdout:(9/19): conmon-2.0.26-1.module+el8.6.0+14874+64 291 kB/s | 51 kB 00:00 2023-11-25T10:07:53.728 INFO:teuthology.orchestra.run.smithi116.stdout:(17/19): cockpit-podman-29-2.module+el8.6.0+148 3.8 MB/s | 1.1 MB 00:00 2023-11-25T10:07:53.753 INFO:teuthology.orchestra.run.smithi116.stdout:(18/19): crun-0.18-3.module+el8.6.0+14874+64436 1.1 MB/s | 185 kB 00:00 2023-11-25T10:07:53.812 INFO:teuthology.orchestra.run.smithi116.stdout:(19/19): udica-0.2.4-1.module+el8.6.0+14874+644 404 kB/s | 51 kB 00:00 2023-11-25T10:07:53.812 INFO:teuthology.orchestra.run.smithi116.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:07:53.812 INFO:teuthology.orchestra.run.smithi116.stdout:Total 30 MB/s | 51 MB 00:01 2023-11-25T10:07:53.846 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction check 2023-11-25T10:07:53.888 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction check succeeded. 2023-11-25T10:07:53.888 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction test 2023-11-25T10:07:53.946 INFO:teuthology.orchestra.run.smithi046.stdout:(10/19): podman-3.0.1-9.module+el8.6.0+14874+64 19 MB/s | 11 MB 00:00 2023-11-25T10:07:53.980 INFO:teuthology.orchestra.run.smithi046.stdout:(11/19): podman-catatonit-3.0.1-9.module+el8.6. 1.1 MB/s | 322 kB 00:00 2023-11-25T10:07:54.247 INFO:teuthology.orchestra.run.smithi046.stdout:(12/19): containernetworking-plugins-0.9.1-1.mo 29 MB/s | 19 MB 00:00 2023-11-25T10:07:54.272 INFO:teuthology.orchestra.run.smithi046.stdout:(13/19): yajl-2.1.0-10.el8.x86_64.rpm 125 kB/s | 41 kB 00:00 2023-11-25T10:07:54.289 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction check 2023-11-25T10:07:54.316 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction test succeeded. 2023-11-25T10:07:54.321 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction 2023-11-25T10:07:54.332 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction check succeeded. 2023-11-25T10:07:54.332 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction test 2023-11-25T10:07:54.339 INFO:teuthology.orchestra.run.smithi046.stdout:(14/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 6.1 MB/s | 2.2 MB 00:00 2023-11-25T10:07:54.539 INFO:teuthology.orchestra.run.smithi046.stdout:(15/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 22 MB/s | 6.4 MB 00:00 2023-11-25T10:07:54.615 INFO:teuthology.orchestra.run.smithi046.stdout:(16/19): buildah-1.19.9-3.module+el8.6.0+14874+ 20 MB/s | 6.8 MB 00:00 2023-11-25T10:07:54.640 INFO:teuthology.orchestra.run.smithi046.stdout:(17/19): crun-0.18-3.module+el8.6.0+14874+64436 1.8 MB/s | 185 kB 00:00 2023-11-25T10:07:54.673 INFO:teuthology.orchestra.run.smithi046.stdout:(18/19): cockpit-podman-29-2.module+el8.6.0+148 3.2 MB/s | 1.1 MB 00:00 2023-11-25T10:07:54.774 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction test succeeded. 2023-11-25T10:07:54.777 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction 2023-11-25T10:07:54.790 INFO:teuthology.orchestra.run.smithi046.stdout:(19/19): udica-0.2.4-1.module+el8.6.0+14874+644 288 kB/s | 51 kB 00:00 2023-11-25T10:07:54.791 INFO:teuthology.orchestra.run.smithi046.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:07:54.791 INFO:teuthology.orchestra.run.smithi046.stdout:Total 28 MB/s | 51 MB 00:01 2023-11-25T10:07:55.291 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction check 2023-11-25T10:07:55.338 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction check succeeded. 2023-11-25T10:07:55.338 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction test 2023-11-25T10:07:55.460 INFO:teuthology.orchestra.run.smithi179.stdout: Preparing : 1/1 2023-11-25T10:07:55.511 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-11-25T10:07:55.676 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-11-25T10:07:55.685 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-11-25T10:07:55.705 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:07:55.794 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction test succeeded. 2023-11-25T10:07:55.799 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction 2023-11-25T10:07:55.900 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:07:55.955 INFO:teuthology.orchestra.run.smithi116.stdout: Preparing : 1/1 2023-11-25T10:07:56.011 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-11-25T10:07:56.186 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-11-25T10:07:56.196 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-11-25T10:07:56.212 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:07:56.411 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:07:56.977 INFO:teuthology.orchestra.run.smithi046.stdout: Preparing : 1/1 2023-11-25T10:07:57.027 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-11-25T10:07:57.201 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-11-25T10:07:57.211 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-11-25T10:07:57.234 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:07:57.459 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:08:12.962 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:08:13.545 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:08:14.736 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-11-25T10:08:14.953 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-11-25T10:08:15.137 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-11-25T10:08:15.295 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-11-25T10:08:15.362 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-11-25T10:08:15.444 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-11-25T10:08:15.569 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-11-25T10:08:15.572 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-11-25T10:08:15.572 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-11-25T10:08:15.573 INFO:teuthology.orchestra.run.smithi179.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-11-25T10:08:15.573 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:08:15.763 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-11-25T10:08:15.969 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-11-25T10:08:16.192 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-11-25T10:08:16.192 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-11-25T10:08:16.192 INFO:teuthology.orchestra.run.smithi116.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-11-25T10:08:16.192 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:08:16.435 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-11-25T10:08:16.656 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-11-25T10:08:17.005 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-11-25T10:08:17.225 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-11-25T10:08:17.295 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-11-25T10:08:17.550 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-11-25T10:08:17.760 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-11-25T10:08:17.921 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-11-25T10:08:18.151 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-11-25T10:08:18.151 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-11-25T10:08:18.152 INFO:teuthology.orchestra.run.smithi046.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-11-25T10:08:18.152 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:08:18.186 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-11-25T10:08:18.492 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-11-25T10:08:18.698 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-11-25T10:08:18.881 INFO:teuthology.orchestra.run.smithi179.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-11-25T10:08:18.987 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-11-25T10:08:19.038 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-11-25T10:08:19.171 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-11-25T10:08:19.241 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-11-25T10:08:19.412 INFO:teuthology.orchestra.run.smithi116.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-11-25T10:08:19.740 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-11-25T10:08:19.897 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-11-25T10:08:20.477 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-11-25T10:08:20.615 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-11-25T10:08:20.793 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-11-25T10:08:20.821 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-11-25T10:08:21.036 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-11-25T10:08:21.072 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-11-25T10:08:21.192 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-11-25T10:08:21.214 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-11-25T10:08:21.337 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-11-25T10:08:21.337 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-11-25T10:08:21.415 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-11-25T10:08:21.452 INFO:teuthology.orchestra.run.smithi046.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-11-25T10:08:21.648 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-11-25T10:08:21.686 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-11-25T10:08:21.727 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-11-25T10:08:21.841 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-11-25T10:08:21.894 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-11-25T10:08:21.895 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-11-25T10:08:21.964 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-11-25T10:08:21.964 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-11-25T10:08:22.066 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-11-25T10:08:22.198 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-11-25T10:08:22.271 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-11-25T10:08:22.382 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-11-25T10:08:22.454 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-11-25T10:08:22.454 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-11-25T10:08:22.470 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-11-25T10:08:22.540 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-11-25T10:08:22.642 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-11-25T10:08:22.702 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-11-25T10:08:22.758 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-11-25T10:08:22.848 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-11-25T10:08:22.901 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-11-25T10:08:23.006 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-11-25T10:08:23.075 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-11-25T10:08:23.146 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-11-25T10:08:23.147 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:23.236 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-11-25T10:08:23.245 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-11-25T10:08:23.330 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:23.366 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-11-25T10:08:23.457 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-11-25T10:08:23.516 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-11-25T10:08:23.666 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-11-25T10:08:23.666 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:23.807 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-11-25T10:08:23.824 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:23.877 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-11-25T10:08:23.998 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-11-25T10:08:24.122 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-11-25T10:08:24.123 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-11-25T10:08:24.257 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:24.257 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-11-25T10:08:24.258 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-11-25T10:08:24.259 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-11-25T10:08:24.260 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-11-25T10:08:24.260 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-11-25T10:08:24.260 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-11-25T10:08:24.260 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-11-25T10:08:24.260 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-11-25T10:08:24.260 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-11-25T10:08:24.348 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-11-25T10:08:24.429 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-11-25T10:08:24.612 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-11-25T10:08:24.612 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-11-25T10:08:24.758 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:24.758 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-11-25T10:08:24.758 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-11-25T10:08:24.759 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-11-25T10:08:24.760 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-11-25T10:08:24.761 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-11-25T10:08:24.761 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-11-25T10:08:24.761 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-11-25T10:08:24.761 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-11-25T10:08:24.761 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-11-25T10:08:24.761 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-11-25T10:08:24.761 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-11-25T10:08:24.762 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-11-25T10:08:24.762 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-11-25T10:08:24.881 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-11-25T10:08:25.057 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-11-25T10:08:25.198 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-11-25T10:08:25.345 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-11-25T10:08:25.499 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-11-25T10:08:25.614 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-11-25T10:08:25.692 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-11-25T10:08:25.692 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:02:26 ago on Sat 25 Nov 2023 10:05:59 AM UTC. 2023-11-25T10:08:25.781 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-11-25T10:08:25.782 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:25.939 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:26.128 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-11-25T10:08:26.128 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:02:23 ago on Sat 25 Nov 2023 10:06:02 AM UTC. 2023-11-25T10:08:26.488 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-11-25T10:08:26.897 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-11-25T10:08:26.897 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-11-25T10:08:26.897 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-11-25T10:08:26.897 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-11-25T10:08:26.897 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-11-25T10:08:26.898 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-11-25T10:08:26.899 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-11-25T10:08:26.900 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-11-25T10:08:26.900 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-11-25T10:08:26.900 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-11-25T10:08:26.900 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-11-25T10:08:26.900 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-11-25T10:08:26.900 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-11-25T10:08:28.284 INFO:teuthology.orchestra.run.smithi179.stdout:Installed products updated. 2023-11-25T10:08:28.336 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-11-25T10:08:28.336 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:02:13 ago on Sat 25 Nov 2023 10:06:14 AM UTC. 2023-11-25T10:08:28.481 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:08:28.481 INFO:teuthology.orchestra.run.smithi179.stdout:Downgraded: 2023-11-25T10:08:28.481 INFO:teuthology.orchestra.run.smithi179.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.481 INFO:teuthology.orchestra.run.smithi179.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:28.481 INFO:teuthology.orchestra.run.smithi179.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.481 INFO:teuthology.orchestra.run.smithi179.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.481 INFO:teuthology.orchestra.run.smithi179.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout:Installed: 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:28.482 INFO:teuthology.orchestra.run.smithi179.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.483 INFO:teuthology.orchestra.run.smithi179.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.483 INFO:teuthology.orchestra.run.smithi179.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.483 INFO:teuthology.orchestra.run.smithi179.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:28.483 INFO:teuthology.orchestra.run.smithi179.stdout: yajl-2.1.0-10.el8.x86_64 2023-11-25T10:08:28.483 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:08:28.483 INFO:teuthology.orchestra.run.smithi179.stdout:Complete! 2023-11-25T10:08:28.546 INFO:teuthology.orchestra.run.smithi116.stdout:Installed products updated. 2023-11-25T10:08:28.664 DEBUG:teuthology.parallel:result is None 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout:Downgraded: 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.741 INFO:teuthology.orchestra.run.smithi116.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout:Installed: 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:28.742 INFO:teuthology.orchestra.run.smithi116.stdout: yajl-2.1.0-10.el8.x86_64 2023-11-25T10:08:28.743 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:08:28.743 INFO:teuthology.orchestra.run.smithi116.stdout:Complete! 2023-11-25T10:08:28.955 DEBUG:teuthology.parallel:result is None 2023-11-25T10:08:30.896 INFO:teuthology.orchestra.run.smithi046.stdout:Installed products updated. 2023-11-25T10:08:31.112 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:08:31.112 INFO:teuthology.orchestra.run.smithi046.stdout:Downgraded: 2023-11-25T10:08:31.112 INFO:teuthology.orchestra.run.smithi046.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.112 INFO:teuthology.orchestra.run.smithi046.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:31.112 INFO:teuthology.orchestra.run.smithi046.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout:Installed: 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.113 INFO:teuthology.orchestra.run.smithi046.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:31.114 INFO:teuthology.orchestra.run.smithi046.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.114 INFO:teuthology.orchestra.run.smithi046.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.114 INFO:teuthology.orchestra.run.smithi046.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-11-25T10:08:31.114 INFO:teuthology.orchestra.run.smithi046.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-11-25T10:08:31.114 INFO:teuthology.orchestra.run.smithi046.stdout: yajl-2.1.0-10.el8.x86_64 2023-11-25T10:08:31.114 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:08:31.114 INFO:teuthology.orchestra.run.smithi046.stdout:Complete! 2023-11-25T10:08:31.302 DEBUG:teuthology.parallel:result is None 2023-11-25T10:08:31.302 INFO:teuthology.run_tasks:Running task install... 2023-11-25T10:08:31.311 DEBUG:teuthology.task.install:project ceph 2023-11-25T10:08:31.311 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'ec928368edcc5fc71884a56fd9fd821b148f4e30'}} 2023-11-25T10:08:31.311 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'ec928368edcc5fc71884a56fd9fd821b148f4e30'} 2023-11-25T10:08:31.312 INFO:teuthology.task.install:Using flavor: default 2023-11-25T10:08:31.317 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-11-25T10:08:31.317 INFO:teuthology.task.install:extra packages: [] 2023-11-25T10:08:31.318 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': 'ec928368edcc5fc71884a56fd9fd821b148f4e30', 'tag': None, 'wait_for_package': False} 2023-11-25T10:08:31.318 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=ec928368edcc5fc71884a56fd9fd821b148f4e30 2023-11-25T10:08:31.320 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': 'ec928368edcc5fc71884a56fd9fd821b148f4e30', 'tag': None, 'wait_for_package': False} 2023-11-25T10:08:31.320 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=ec928368edcc5fc71884a56fd9fd821b148f4e30 2023-11-25T10:08:31.321 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': 'ec928368edcc5fc71884a56fd9fd821b148f4e30', 'tag': None, 'wait_for_package': False} 2023-11-25T10:08:31.321 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=ec928368edcc5fc71884a56fd9fd821b148f4e30 2023-11-25T10:08:31.460 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/ 2023-11-25T10:08:31.460 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7506.gec928368 2023-11-25T10:08:31.471 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/ 2023-11-25T10:08:31.472 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7506.gec928368 2023-11-25T10:08:31.530 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/ 2023-11-25T10:08:31.530 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7506.gec928368 2023-11-25T10:08:31.598 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-11-25T10:08:31.598 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2023-11-25T10:08:31.598 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-11-25T10:08:31.626 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-11-25T10:08:31.626 DEBUG:teuthology.orchestra.run.smithi046:> 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/ec928368edcc5fc71884a56fd9fd821b148f4e30/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-11-25T10:08:31.639 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-11-25T10:08:31.639 DEBUG:teuthology.orchestra.run.smithi116:> set -ex 2023-11-25T10:08:31.640 DEBUG:teuthology.orchestra.run.smithi116:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-11-25T10:08:31.674 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-11-25T10:08:31.674 DEBUG:teuthology.orchestra.run.smithi116:> 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/ec928368edcc5fc71884a56fd9fd821b148f4e30/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-11-25T10:08:31.695 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T10:08:31.698 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/main/ec928368edcc5fc71884a56fd9fd821b148f4e30/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-11-25T10:08:31.698 DEBUG:teuthology.orchestra.run.smithi179:> set -ex 2023-11-25T10:08:31.698 DEBUG:teuthology.orchestra.run.smithi179:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-11-25T10:08:31.733 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-11-25T10:08:31.733 DEBUG:teuthology.orchestra.run.smithi179:> 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/ec928368edcc5fc71884a56fd9fd821b148f4e30/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-11-25T10:08:31.745 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T10:08:31.773 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T10:08:31.804 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T10:08:31.826 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T10:08:31.839 INFO:teuthology.orchestra.run.smithi046.stdout:check_obsoletes = 1 2023-11-25T10:08:31.841 DEBUG:teuthology.orchestra.run.smithi046:> sudo yum clean all 2023-11-25T10:08:31.885 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T10:08:31.894 INFO:teuthology.orchestra.run.smithi116.stdout:check_obsoletes = 1 2023-11-25T10:08:31.896 DEBUG:teuthology.orchestra.run.smithi116:> sudo yum clean all 2023-11-25T10:08:31.953 INFO:teuthology.orchestra.run.smithi179.stdout:check_obsoletes = 1 2023-11-25T10:08:31.955 DEBUG:teuthology.orchestra.run.smithi179:> sudo yum clean all 2023-11-25T10:08:32.233 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T10:08:32.272 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T10:08:32.327 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T10:08:32.586 INFO:teuthology.orchestra.run.smithi046.stdout:44 files removed 2023-11-25T10:08:32.609 INFO:teuthology.orchestra.run.smithi116.stdout:44 files removed 2023-11-25T10:08:32.635 DEBUG:teuthology.orchestra.run.smithi046:> sudo yum -y install ceph-radosgw 2023-11-25T10:08:32.655 DEBUG:teuthology.orchestra.run.smithi116:> sudo yum -y install ceph-radosgw 2023-11-25T10:08:32.676 INFO:teuthology.orchestra.run.smithi179.stdout:44 files removed 2023-11-25T10:08:32.724 DEBUG:teuthology.orchestra.run.smithi179:> sudo yum -y install ceph-radosgw 2023-11-25T10:08:32.984 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T10:08:32.987 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T10:08:33.055 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T10:08:33.796 INFO:teuthology.orchestra.run.smithi116.stdout:ceph packages for x86_64 221 kB/s | 81 kB 00:00 2023-11-25T10:08:33.822 INFO:teuthology.orchestra.run.smithi179.stdout:ceph packages for x86_64 276 kB/s | 81 kB 00:00 2023-11-25T10:08:33.841 INFO:teuthology.orchestra.run.smithi046.stdout:ceph packages for x86_64 203 kB/s | 81 kB 00:00 2023-11-25T10:08:34.167 INFO:teuthology.orchestra.run.smithi046.stdout:ceph noarch packages 33 kB/s | 9.5 kB 00:00 2023-11-25T10:08:34.197 INFO:teuthology.orchestra.run.smithi116.stdout:ceph noarch packages 26 kB/s | 9.5 kB 00:00 2023-11-25T10:08:34.256 INFO:teuthology.orchestra.run.smithi179.stdout:ceph noarch packages 24 kB/s | 9.5 kB 00:00 2023-11-25T10:08:34.434 INFO:teuthology.orchestra.run.smithi046.stdout:ceph source packages 6.1 kB/s | 1.5 kB 00:00 2023-11-25T10:08:34.627 INFO:teuthology.orchestra.run.smithi046.stdout:Copr repo for python3-asyncssh owned by ceph 20 kB/s | 3.5 kB 00:00 2023-11-25T10:08:34.740 INFO:teuthology.orchestra.run.smithi179.stdout:ceph source packages 3.2 kB/s | 1.5 kB 00:00 2023-11-25T10:08:34.742 INFO:teuthology.orchestra.run.smithi116.stdout:ceph source packages 2.8 kB/s | 1.5 kB 00:00 2023-11-25T10:08:34.940 INFO:teuthology.orchestra.run.smithi116.stdout:Copr repo for python3-asyncssh owned by ceph 19 kB/s | 3.5 kB 00:00 2023-11-25T10:08:34.941 INFO:teuthology.orchestra.run.smithi179.stdout:Copr repo for python3-asyncssh owned by ceph 19 kB/s | 3.5 kB 00:00 2023-11-25T10:08:35.586 INFO:teuthology.orchestra.run.smithi046.stdout:Extra Packages for Enterprise Linux 17 MB/s | 16 MB 00:00 2023-11-25T10:08:37.549 INFO:teuthology.orchestra.run.smithi116.stdout:Extra Packages for Enterprise Linux 6.2 MB/s | 16 MB 00:02 2023-11-25T10:08:39.286 INFO:teuthology.orchestra.run.smithi179.stdout:Extra Packages for Enterprise Linux 3.7 MB/s | 16 MB 00:04 2023-11-25T10:08:39.419 INFO:teuthology.orchestra.run.smithi046.stdout:lab-extras 412 kB/s | 24 kB 00:00 2023-11-25T10:08:40.379 INFO:teuthology.orchestra.run.smithi046.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 54 MB/s | 47 MB 00:00 2023-11-25T10:08:41.075 INFO:teuthology.orchestra.run.smithi116.stdout:lab-extras 601 kB/s | 24 kB 00:00 2023-11-25T10:08:41.984 INFO:teuthology.orchestra.run.smithi116.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 63 MB/s | 53 MB 00:00 2023-11-25T10:08:42.800 INFO:teuthology.orchestra.run.smithi179.stdout:lab-extras 392 kB/s | 24 kB 00:00 2023-11-25T10:08:43.753 INFO:teuthology.orchestra.run.smithi179.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 54 MB/s | 47 MB 00:00 2023-11-25T10:08:48.997 INFO:teuthology.orchestra.run.smithi046.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 62 MB/s | 53 MB 00:00 2023-11-25T10:08:50.344 INFO:teuthology.orchestra.run.smithi116.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 53 MB/s | 47 MB 00:00 2023-11-25T10:08:51.604 INFO:teuthology.orchestra.run.smithi179.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 61 MB/s | 53 MB 00:00 2023-11-25T10:09:01.229 INFO:teuthology.orchestra.run.smithi046.stdout:Dependencies resolved. 2023-11-25T10:09:01.231 INFO:teuthology.orchestra.run.smithi046.stdout:==================================================================================================== 2023-11-25T10:09:01.231 INFO:teuthology.orchestra.run.smithi046.stdout: Package Arch Version Repository Size 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout:==================================================================================================== 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout:Installing: 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-radosgw x86_64 2:18.0.0-7506.gec928368.el8 ceph 14 M 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout:Upgrading: 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout: librados2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 3.8 M 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout: librbd1 x86_64 2:18.0.0-7506.gec928368.el8 ceph 3.7 M 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout:Installing dependencies: 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-base x86_64 2:18.0.0-7506.gec928368.el8 ceph 5.4 M 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-common x86_64 2:18.0.0-7506.gec928368.el8 ceph 23 M 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-selinux x86_64 2:18.0.0-7506.gec928368.el8 ceph 24 k 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-11-25T10:09:01.232 INFO:teuthology.orchestra.run.smithi046.stdout: libcephfs2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 841 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: libradosstriper1 x86_64 2:18.0.0-7506.gec928368.el8 ceph 517 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: librgw2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 6.9 M 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: python3-ceph-argparse x86_64 2:18.0.0-7506.gec928368.el8 ceph 45 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: python3-ceph-common x86_64 2:18.0.0-7506.gec928368.el8 ceph 129 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: python3-cephfs x86_64 2:18.0.0-7506.gec928368.el8 ceph 197 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-11-25T10:09:01.233 INFO:teuthology.orchestra.run.smithi046.stdout: python3-rados x86_64 2:18.0.0-7506.gec928368.el8 ceph 371 k 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout: python3-rbd x86_64 2:18.0.0-7506.gec928368.el8 ceph 365 k 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout: python3-rgw x86_64 2:18.0.0-7506.gec928368.el8 ceph 107 k 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction Summary 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout:==================================================================================================== 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout:Install 21 Packages 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout:Upgrade 2 Packages 2023-11-25T10:09:01.234 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:09:01.235 INFO:teuthology.orchestra.run.smithi046.stdout:Total download size: 62 M 2023-11-25T10:09:01.235 INFO:teuthology.orchestra.run.smithi046.stdout:Downloading Packages: 2023-11-25T10:09:01.332 INFO:teuthology.orchestra.run.smithi116.stdout:Dependencies resolved. 2023-11-25T10:09:01.335 INFO:teuthology.orchestra.run.smithi116.stdout:==================================================================================================== 2023-11-25T10:09:01.335 INFO:teuthology.orchestra.run.smithi116.stdout: Package Arch Version Repository Size 2023-11-25T10:09:01.335 INFO:teuthology.orchestra.run.smithi116.stdout:==================================================================================================== 2023-11-25T10:09:01.335 INFO:teuthology.orchestra.run.smithi116.stdout:Installing: 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-radosgw x86_64 2:18.0.0-7506.gec928368.el8 ceph 14 M 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout:Upgrading: 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: librados2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 3.8 M 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: librbd1 x86_64 2:18.0.0-7506.gec928368.el8 ceph 3.7 M 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout:Installing dependencies: 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-base x86_64 2:18.0.0-7506.gec928368.el8 ceph 5.4 M 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-common x86_64 2:18.0.0-7506.gec928368.el8 ceph 23 M 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-selinux x86_64 2:18.0.0-7506.gec928368.el8 ceph 24 k 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: libcephfs2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 841 k 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-11-25T10:09:01.336 INFO:teuthology.orchestra.run.smithi116.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: libradosstriper1 x86_64 2:18.0.0-7506.gec928368.el8 ceph 517 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: librgw2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 6.9 M 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: python3-ceph-argparse x86_64 2:18.0.0-7506.gec928368.el8 ceph 45 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: python3-ceph-common x86_64 2:18.0.0-7506.gec928368.el8 ceph 129 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: python3-cephfs x86_64 2:18.0.0-7506.gec928368.el8 ceph 197 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: python3-rados x86_64 2:18.0.0-7506.gec928368.el8 ceph 371 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: python3-rbd x86_64 2:18.0.0-7506.gec928368.el8 ceph 365 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: python3-rgw x86_64 2:18.0.0-7506.gec928368.el8 ceph 107 k 2023-11-25T10:09:01.337 INFO:teuthology.orchestra.run.smithi116.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-11-25T10:09:01.338 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:01.338 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction Summary 2023-11-25T10:09:01.338 INFO:teuthology.orchestra.run.smithi116.stdout:==================================================================================================== 2023-11-25T10:09:01.338 INFO:teuthology.orchestra.run.smithi116.stdout:Install 21 Packages 2023-11-25T10:09:01.338 INFO:teuthology.orchestra.run.smithi116.stdout:Upgrade 2 Packages 2023-11-25T10:09:01.338 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:01.338 INFO:teuthology.orchestra.run.smithi116.stdout:Total download size: 62 M 2023-11-25T10:09:01.338 INFO:teuthology.orchestra.run.smithi116.stdout:Downloading Packages: 2023-11-25T10:09:02.169 INFO:teuthology.orchestra.run.smithi116.stdout:(1/23): ceph-base-18.0.0-7506.gec928368.el8.x86 6.7 MB/s | 5.4 MB 00:00 2023-11-25T10:09:02.228 INFO:teuthology.orchestra.run.smithi116.stdout:(2/23): ceph-selinux-18.0.0-7506.gec928368.el8. 418 kB/s | 24 kB 00:00 2023-11-25T10:09:02.412 INFO:teuthology.orchestra.run.smithi116.stdout:(3/23): libcephfs2-18.0.0-7506.gec928368.el8.x8 4.5 MB/s | 841 kB 00:00 2023-11-25T10:09:02.561 INFO:teuthology.orchestra.run.smithi116.stdout:(4/23): libradosstriper1-18.0.0-7506.gec928368. 3.4 MB/s | 517 kB 00:00 2023-11-25T10:09:02.670 INFO:teuthology.orchestra.run.smithi179.stdout:Dependencies resolved. 2023-11-25T10:09:02.672 INFO:teuthology.orchestra.run.smithi179.stdout:==================================================================================================== 2023-11-25T10:09:02.672 INFO:teuthology.orchestra.run.smithi179.stdout: Package Arch Version Repository Size 2023-11-25T10:09:02.672 INFO:teuthology.orchestra.run.smithi179.stdout:==================================================================================================== 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout:Installing: 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-radosgw x86_64 2:18.0.0-7506.gec928368.el8 ceph 14 M 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout:Upgrading: 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: librados2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 3.8 M 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: librbd1 x86_64 2:18.0.0-7506.gec928368.el8 ceph 3.7 M 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout:Installing dependencies: 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-base x86_64 2:18.0.0-7506.gec928368.el8 ceph 5.4 M 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-common x86_64 2:18.0.0-7506.gec928368.el8 ceph 23 M 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-selinux x86_64 2:18.0.0-7506.gec928368.el8 ceph 24 k 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: libcephfs2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 841 k 2023-11-25T10:09:02.673 INFO:teuthology.orchestra.run.smithi179.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: libradosstriper1 x86_64 2:18.0.0-7506.gec928368.el8 ceph 517 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: librgw2 x86_64 2:18.0.0-7506.gec928368.el8 ceph 6.9 M 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: python3-ceph-argparse x86_64 2:18.0.0-7506.gec928368.el8 ceph 45 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: python3-ceph-common x86_64 2:18.0.0-7506.gec928368.el8 ceph 129 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: python3-cephfs x86_64 2:18.0.0-7506.gec928368.el8 ceph 197 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: python3-rados x86_64 2:18.0.0-7506.gec928368.el8 ceph 371 k 2023-11-25T10:09:02.674 INFO:teuthology.orchestra.run.smithi179.stdout: python3-rbd x86_64 2:18.0.0-7506.gec928368.el8 ceph 365 k 2023-11-25T10:09:02.675 INFO:teuthology.orchestra.run.smithi179.stdout: python3-rgw x86_64 2:18.0.0-7506.gec928368.el8 ceph 107 k 2023-11-25T10:09:02.675 INFO:teuthology.orchestra.run.smithi179.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-11-25T10:09:02.675 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:09:02.675 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction Summary 2023-11-25T10:09:02.675 INFO:teuthology.orchestra.run.smithi179.stdout:==================================================================================================== 2023-11-25T10:09:02.675 INFO:teuthology.orchestra.run.smithi179.stdout:Install 21 Packages 2023-11-25T10:09:02.675 INFO:teuthology.orchestra.run.smithi179.stdout:Upgrade 2 Packages 2023-11-25T10:09:02.675 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:09:02.676 INFO:teuthology.orchestra.run.smithi179.stdout:Total download size: 62 M 2023-11-25T10:09:02.676 INFO:teuthology.orchestra.run.smithi179.stdout:Downloading Packages: 2023-11-25T10:09:03.348 INFO:teuthology.orchestra.run.smithi046.stdout:(1/23): ceph-base-18.0.0-7506.gec928368.el8.x86 3.0 MB/s | 5.4 MB 00:01 2023-11-25T10:09:03.465 INFO:teuthology.orchestra.run.smithi046.stdout:(2/23): ceph-selinux-18.0.0-7506.gec928368.el8. 209 kB/s | 24 kB 00:00 2023-11-25T10:09:03.690 INFO:teuthology.orchestra.run.smithi046.stdout:(3/23): libcephfs2-18.0.0-7506.gec928368.el8.x8 3.7 MB/s | 841 kB 00:00 2023-11-25T10:09:03.890 INFO:teuthology.orchestra.run.smithi046.stdout:(4/23): libradosstriper1-18.0.0-7506.gec928368. 2.5 MB/s | 517 kB 00:00 2023-11-25T10:09:03.995 INFO:teuthology.orchestra.run.smithi116.stdout:(5/23): librgw2-18.0.0-7506.gec928368.el8.x86_6 4.8 MB/s | 6.9 MB 00:01 2023-11-25T10:09:04.095 INFO:teuthology.orchestra.run.smithi116.stdout:(6/23): python3-ceph-argparse-18.0.0-7506.gec92 448 kB/s | 45 kB 00:00 2023-11-25T10:09:04.388 INFO:teuthology.orchestra.run.smithi116.stdout:(7/23): ceph-common-18.0.0-7506.gec928368.el8.x 7.5 MB/s | 23 MB 00:03 2023-11-25T10:09:04.412 INFO:teuthology.orchestra.run.smithi116.stdout:(8/23): python3-ceph-common-18.0.0-7506.gec9283 405 kB/s | 129 kB 00:00 2023-11-25T10:09:04.480 INFO:teuthology.orchestra.run.smithi116.stdout:(9/23): python3-cephfs-18.0.0-7506.gec928368.el 2.1 MB/s | 197 kB 00:00 2023-11-25T10:09:04.822 INFO:teuthology.orchestra.run.smithi116.stdout:(10/23): ceph-radosgw-18.0.0-7506.gec928368.el8 4.0 MB/s | 14 MB 00:03 2023-11-25T10:09:04.922 INFO:teuthology.orchestra.run.smithi116.stdout:(11/23): python3-rgw-18.0.0-7506.gec928368.el8. 1.0 MB/s | 107 kB 00:00 2023-11-25T10:09:04.947 INFO:teuthology.orchestra.run.smithi116.stdout:(12/23): python3-rbd-18.0.0-7506.gec928368.el8. 781 kB/s | 365 kB 00:00 2023-11-25T10:09:05.006 INFO:teuthology.orchestra.run.smithi116.stdout:(13/23): python3-rados-18.0.0-7506.gec928368.el 626 kB/s | 371 kB 00:00 2023-11-25T10:09:05.007 INFO:teuthology.orchestra.run.smithi046.stdout:(5/23): librgw2-18.0.0-7506.gec928368.el8.x86_6 6.2 MB/s | 6.9 MB 00:01 2023-11-25T10:09:05.083 INFO:teuthology.orchestra.run.smithi046.stdout:(6/23): python3-ceph-argparse-18.0.0-7506.gec92 599 kB/s | 45 kB 00:00 2023-11-25T10:09:05.148 INFO:teuthology.orchestra.run.smithi116.stdout:(14/23): liboath-2.6.2-3.el8.x86_64.rpm 294 kB/s | 59 kB 00:00 2023-11-25T10:09:05.174 INFO:teuthology.orchestra.run.smithi046.stdout:(7/23): python3-ceph-common-18.0.0-7506.gec9283 1.4 MB/s | 129 kB 00:00 2023-11-25T10:09:05.181 INFO:teuthology.orchestra.run.smithi116.stdout:(15/23): libunwind-1.3.1-3.el8.x86_64.rpm 429 kB/s | 75 kB 00:00 2023-11-25T10:09:05.232 INFO:teuthology.orchestra.run.smithi116.stdout:(16/23): gperftools-libs-2.7-9.el8.x86_64.rpm 989 kB/s | 306 kB 00:00 2023-11-25T10:09:05.257 INFO:teuthology.orchestra.run.smithi116.stdout:(17/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 625 kB/s | 47 kB 00:00 2023-11-25T10:09:05.275 INFO:teuthology.orchestra.run.smithi046.stdout:(8/23): python3-cephfs-18.0.0-7506.gec928368.el 1.9 MB/s | 197 kB 00:00 2023-11-25T10:09:05.324 INFO:teuthology.orchestra.run.smithi116.stdout:(18/23): python3-prettytable-0.7.2-14.el8.noarc 719 kB/s | 44 kB 00:00 2023-11-25T10:09:05.349 INFO:teuthology.orchestra.run.smithi116.stdout:(19/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 2.2 MB/s | 259 kB 00:00 2023-11-25T10:09:05.383 INFO:teuthology.orchestra.run.smithi116.stdout:(20/23): librdkafka-0.11.4-3.el8.x86_64.rpm 5.9 MB/s | 354 kB 00:00 2023-11-25T10:09:05.392 INFO:teuthology.orchestra.run.smithi046.stdout:(9/23): python3-rados-18.0.0-7506.gec928368.el8 3.1 MB/s | 371 kB 00:00 2023-11-25T10:09:05.458 INFO:teuthology.orchestra.run.smithi116.stdout:(21/23): thrift-0.13.0-2.el8.x86_64.rpm 5.6 MB/s | 1.7 MB 00:00 2023-11-25T10:09:05.517 INFO:teuthology.orchestra.run.smithi046.stdout:(10/23): python3-rbd-18.0.0-7506.gec928368.el8. 2.9 MB/s | 365 kB 00:00 2023-11-25T10:09:05.572 INFO:teuthology.orchestra.run.smithi179.stdout:(1/23): ceph-base-18.0.0-7506.gec928368.el8.x86 1.9 MB/s | 5.4 MB 00:02 2023-11-25T10:09:05.639 INFO:teuthology.orchestra.run.smithi179.stdout:(2/23): ceph-selinux-18.0.0-7506.gec928368.el8. 365 kB/s | 24 kB 00:00 2023-11-25T10:09:05.734 INFO:teuthology.orchestra.run.smithi046.stdout:(11/23): ceph-common-18.0.0-7506.gec928368.el8. 5.4 MB/s | 23 MB 00:04 2023-11-25T10:09:05.759 INFO:teuthology.orchestra.run.smithi046.stdout:(12/23): python3-rgw-18.0.0-7506.gec928368.el8. 440 kB/s | 107 kB 00:00 2023-11-25T10:09:05.881 INFO:teuthology.orchestra.run.smithi179.stdout:(3/23): libcephfs2-18.0.0-7506.gec928368.el8.x8 3.4 MB/s | 841 kB 00:00 2023-11-25T10:09:06.034 INFO:teuthology.orchestra.run.smithi046.stdout:(13/23): liboath-2.6.2-3.el8.x86_64.rpm 214 kB/s | 59 kB 00:00 2023-11-25T10:09:06.098 INFO:teuthology.orchestra.run.smithi179.stdout:(4/23): libradosstriper1-18.0.0-7506.gec928368. 2.3 MB/s | 517 kB 00:00 2023-11-25T10:09:06.118 INFO:teuthology.orchestra.run.smithi046.stdout:(14/23): gperftools-libs-2.7-9.el8.x86_64.rpm 798 kB/s | 306 kB 00:00 2023-11-25T10:09:06.143 INFO:teuthology.orchestra.run.smithi046.stdout:(15/23): libunwind-1.3.1-3.el8.x86_64.rpm 691 kB/s | 75 kB 00:00 2023-11-25T10:09:06.202 INFO:teuthology.orchestra.run.smithi046.stdout:(16/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 4.3 MB/s | 259 kB 00:00 2023-11-25T10:09:06.236 INFO:teuthology.orchestra.run.smithi046.stdout:(17/23): python3-prettytable-0.7.2-14.el8.noarc 1.3 MB/s | 44 kB 00:00 2023-11-25T10:09:06.278 INFO:teuthology.orchestra.run.smithi046.stdout:(18/23): librdkafka-0.11.4-3.el8.x86_64.rpm 8.4 MB/s | 354 kB 00:00 2023-11-25T10:09:06.311 INFO:teuthology.orchestra.run.smithi046.stdout:(19/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 1.4 MB/s | 47 kB 00:00 2023-11-25T10:09:06.381 INFO:teuthology.orchestra.run.smithi046.stdout:(20/23): thrift-0.13.0-2.el8.x86_64.rpm 6.6 MB/s | 1.7 MB 00:00 2023-11-25T10:09:06.531 INFO:teuthology.orchestra.run.smithi179.stdout:(5/23): ceph-common-18.0.0-7506.gec928368.el8.x 6.0 MB/s | 23 MB 00:03 2023-11-25T10:09:06.598 INFO:teuthology.orchestra.run.smithi179.stdout:(6/23): python3-ceph-argparse-18.0.0-7506.gec92 675 kB/s | 45 kB 00:00 2023-11-25T10:09:06.673 INFO:teuthology.orchestra.run.smithi179.stdout:(7/23): python3-ceph-common-18.0.0-7506.gec9283 1.7 MB/s | 129 kB 00:00 2023-11-25T10:09:06.757 INFO:teuthology.orchestra.run.smithi179.stdout:(8/23): python3-cephfs-18.0.0-7506.gec928368.el 2.3 MB/s | 197 kB 00:00 2023-11-25T10:09:06.849 INFO:teuthology.orchestra.run.smithi179.stdout:(9/23): python3-rados-18.0.0-7506.gec928368.el8 4.0 MB/s | 371 kB 00:00 2023-11-25T10:09:06.870 INFO:teuthology.orchestra.run.smithi046.stdout:(21/23): librbd1-18.0.0-7506.gec928368.el8.x86_ 7.6 MB/s | 3.7 MB 00:00 2023-11-25T10:09:06.916 INFO:teuthology.orchestra.run.smithi179.stdout:(10/23): python3-rbd-18.0.0-7506.gec928368.el8. 5.4 MB/s | 365 kB 00:00 2023-11-25T10:09:06.933 INFO:teuthology.orchestra.run.smithi116.stdout:(22/23): librbd1-18.0.0-7506.gec928368.el8.x86_ 2.4 MB/s | 3.7 MB 00:01 2023-11-25T10:09:06.958 INFO:teuthology.orchestra.run.smithi179.stdout:(11/23): python3-rgw-18.0.0-7506.gec928368.el8. 2.5 MB/s | 107 kB 00:00 2023-11-25T10:09:07.012 INFO:teuthology.orchestra.run.smithi046.stdout:(22/23): librados2-18.0.0-7506.gec928368.el8.x8 5.4 MB/s | 3.8 MB 00:00 2023-11-25T10:09:07.058 INFO:teuthology.orchestra.run.smithi116.stdout:(23/23): librados2-18.0.0-7506.gec928368.el8.x8 2.2 MB/s | 3.8 MB 00:01 2023-11-25T10:09:07.061 INFO:teuthology.orchestra.run.smithi116.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:09:07.061 INFO:teuthology.orchestra.run.smithi116.stdout:Total 11 MB/s | 62 MB 00:05 2023-11-25T10:09:07.110 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction check 2023-11-25T10:09:07.157 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction check succeeded. 2023-11-25T10:09:07.157 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction test 2023-11-25T10:09:07.496 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction test succeeded. 2023-11-25T10:09:07.500 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction 2023-11-25T10:09:07.517 INFO:teuthology.orchestra.run.smithi179.stdout:(12/23): librgw2-18.0.0-7506.gec928368.el8.x86_ 4.9 MB/s | 6.9 MB 00:01 2023-11-25T10:09:07.699 INFO:teuthology.orchestra.run.smithi179.stdout:(13/23): gperftools-libs-2.7-9.el8.x86_64.rpm 414 kB/s | 306 kB 00:00 2023-11-25T10:09:07.762 INFO:teuthology.orchestra.run.smithi046.stdout:(23/23): ceph-radosgw-18.0.0-7506.gec928368.el8 2.2 MB/s | 14 MB 00:06 2023-11-25T10:09:07.766 INFO:teuthology.orchestra.run.smithi046.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:09:07.767 INFO:teuthology.orchestra.run.smithi046.stdout:Total 9.4 MB/s | 62 MB 00:06 2023-11-25T10:09:07.815 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction check 2023-11-25T10:09:07.817 INFO:teuthology.orchestra.run.smithi179.stdout:(14/23): libunwind-1.3.1-3.el8.x86_64.rpm 633 kB/s | 75 kB 00:00 2023-11-25T10:09:07.866 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction check succeeded. 2023-11-25T10:09:07.866 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction test 2023-11-25T10:09:07.918 INFO:teuthology.orchestra.run.smithi179.stdout:(15/23): liboath-2.6.2-3.el8.x86_64.rpm 147 kB/s | 59 kB 00:00 2023-11-25T10:09:07.976 INFO:teuthology.orchestra.run.smithi179.stdout:(16/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 4.4 MB/s | 259 kB 00:00 2023-11-25T10:09:08.010 INFO:teuthology.orchestra.run.smithi179.stdout:(17/23): python3-prettytable-0.7.2-14.el8.noarc 1.3 MB/s | 44 kB 00:00 2023-11-25T10:09:08.052 INFO:teuthology.orchestra.run.smithi179.stdout:(18/23): librdkafka-0.11.4-3.el8.x86_64.rpm 8.3 MB/s | 354 kB 00:00 2023-11-25T10:09:08.086 INFO:teuthology.orchestra.run.smithi179.stdout:(19/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 1.4 MB/s | 47 kB 00:00 2023-11-25T10:09:08.216 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction test succeeded. 2023-11-25T10:09:08.220 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction 2023-11-25T10:09:08.236 INFO:teuthology.orchestra.run.smithi179.stdout:(20/23): thrift-0.13.0-2.el8.x86_64.rpm 4.1 MB/s | 1.7 MB 00:00 2023-11-25T10:09:08.562 INFO:teuthology.orchestra.run.smithi179.stdout:(21/23): librbd1-18.0.0-7506.gec928368.el8.x86_ 11 MB/s | 3.7 MB 00:00 2023-11-25T10:09:08.665 INFO:teuthology.orchestra.run.smithi116.stdout: Preparing : 1/1 2023-11-25T10:09:08.745 INFO:teuthology.orchestra.run.smithi179.stdout:(22/23): librados2-18.0.0-7506.gec928368.el8.x8 5.7 MB/s | 3.8 MB 00:00 2023-11-25T10:09:08.895 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-11-25T10:09:08.929 INFO:teuthology.orchestra.run.smithi179.stdout:(23/23): ceph-radosgw-18.0.0-7506.gec928368.el8 2.3 MB/s | 14 MB 00:06 2023-11-25T10:09:08.931 INFO:teuthology.orchestra.run.smithi179.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:09:08.931 INFO:teuthology.orchestra.run.smithi179.stdout:Total 9.9 MB/s | 62 MB 00:06 2023-11-25T10:09:08.978 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction check 2023-11-25T10:09:09.024 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction check succeeded. 2023-11-25T10:09:09.024 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction test 2023-11-25T10:09:09.092 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-11-25T10:09:09.363 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction test succeeded. 2023-11-25T10:09:09.366 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction 2023-11-25T10:09:09.427 INFO:teuthology.orchestra.run.smithi046.stdout: Preparing : 1/1 2023-11-25T10:09:09.510 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-11-25T10:09:09.606 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-11-25T10:09:09.650 INFO:teuthology.orchestra.run.smithi116.stdout: Upgrading : librados2-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:09.766 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-11-25T10:09:09.782 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: librados2-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:09.956 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 4/25 2023-11-25T10:09:10.170 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-11-25T10:09:10.218 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-11-25T10:09:10.366 INFO:teuthology.orchestra.run.smithi046.stdout: Upgrading : librados2-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:10.391 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 6/25 2023-11-25T10:09:10.480 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: librados2-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:10.591 INFO:teuthology.orchestra.run.smithi179.stdout: Preparing : 1/1 2023-11-25T10:09:10.656 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 4/25 2023-11-25T10:09:10.787 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 6/25 2023-11-25T10:09:10.800 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-11-25T10:09:10.874 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-11-25T10:09:10.990 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-11-25T10:09:11.016 INFO:teuthology.orchestra.run.smithi116.stdout: Upgrading : librbd1-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:11.091 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 6/25 2023-11-25T10:09:11.092 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: librbd1-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:11.266 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 8/25 2023-11-25T10:09:11.332 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 8/25 2023-11-25T10:09:11.401 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-11-25T10:09:11.523 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 6/25 2023-11-25T10:09:11.590 INFO:teuthology.orchestra.run.smithi179.stdout: Upgrading : librados2-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:11.687 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: librados2-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:11.887 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 4/25 2023-11-25T10:09:12.107 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 9/25 2023-11-25T10:09:12.126 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-11-25T10:09:12.282 INFO:teuthology.orchestra.run.smithi046.stdout: Upgrading : librbd1-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:12.283 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : librgw2-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:12.339 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 6/25 2023-11-25T10:09:12.352 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: librgw2-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:12.453 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: librbd1-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:12.477 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : python3-ceph-argparse-2:18.0.0-7506.gec928368.el8. 11/25 2023-11-25T10:09:12.640 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 12/25 2023-11-25T10:09:12.643 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 8/25 2023-11-25T10:09:12.750 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 6/25 2023-11-25T10:09:12.808 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 9/25 2023-11-25T10:09:12.860 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 13/25 2023-11-25T10:09:12.973 INFO:teuthology.orchestra.run.smithi179.stdout: Upgrading : librbd1-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:13.036 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: librbd1-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:13.045 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 14/25 2023-11-25T10:09:13.224 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 15/25 2023-11-25T10:09:13.229 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 8/25 2023-11-25T10:09:13.299 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 15/25 2023-11-25T10:09:13.373 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 9/25 2023-11-25T10:09:13.442 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-11-25T10:09:13.534 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 9/25 2023-11-25T10:09:13.629 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-11-25T10:09:13.683 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : librgw2-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:13.756 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: librgw2-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:13.878 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : python3-ceph-argparse-2:18.0.0-7506.gec928368.el8. 11/25 2023-11-25T10:09:13.880 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-11-25T10:09:14.050 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : python3-ceph-common-2:18.0.0-7506.gec928368.el8.x8 19/25 2023-11-25T10:09:14.069 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 12/25 2023-11-25T10:09:14.072 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 9/25 2023-11-25T10:09:14.264 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : librgw2-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:14.287 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 13/25 2023-11-25T10:09:14.333 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: librgw2-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:14.473 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 14/25 2023-11-25T10:09:14.483 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : python3-ceph-argparse-2:18.0.0-7506.gec928368.el8. 11/25 2023-11-25T10:09:14.649 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 15/25 2023-11-25T10:09:14.659 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 12/25 2023-11-25T10:09:14.719 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 15/25 2023-11-25T10:09:14.850 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-11-25T10:09:15.027 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-11-25T10:09:15.135 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 13/25 2023-11-25T10:09:15.273 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-11-25T10:09:15.344 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 14/25 2023-11-25T10:09:15.425 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : python3-ceph-common-2:18.0.0-7506.gec928368.el8.x8 19/25 2023-11-25T10:09:15.530 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 15/25 2023-11-25T10:09:15.606 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 15/25 2023-11-25T10:09:15.741 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-11-25T10:09:15.936 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-11-25T10:09:16.220 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-11-25T10:09:16.406 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : python3-ceph-common-2:18.0.0-7506.gec928368.el8.x8 19/25 2023-11-25T10:09:17.729 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:17.966 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:18.557 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:18.820 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 21/25 2023-11-25T10:09:18.887 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 21/25 2023-11-25T10:09:19.024 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:19.462 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:19.699 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:20.143 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:20.330 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:20.372 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:20.579 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 21/25 2023-11-25T10:09:20.651 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 21/25 2023-11-25T10:09:20.765 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:21.006 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 20/25 2023-11-25T10:09:21.301 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 21/25 2023-11-25T10:09:21.382 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 21/25 2023-11-25T10:09:21.555 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:37.755 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:37.755 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /sys 2023-11-25T10:09:37.755 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /proc 2023-11-25T10:09:37.755 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /dev 2023-11-25T10:09:37.755 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /run 2023-11-25T10:09:37.755 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /mnt 2023-11-25T10:09:37.755 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /var/tmp 2023-11-25T10:09:37.756 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /home 2023-11-25T10:09:37.756 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /tmp 2023-11-25T10:09:37.756 INFO:teuthology.orchestra.run.smithi116.stdout:skipping the directory /dev 2023-11-25T10:09:37.756 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:39.183 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 23/25 2023-11-25T10:09:39.205 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 23/25 2023-11-25T10:09:39.205 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-11-25T10:09:39.456 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-11-25T10:09:39.456 INFO:teuthology.orchestra.run.smithi116.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:40.074 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:40.074 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 1/25 2023-11-25T10:09:40.074 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 4/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 5/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 6/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : librgw2-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7506.gec928368.el8. 8/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : python3-ceph-common-2:18.0.0-7506.gec928368.el8.x8 9/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 11/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 12/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 13/25 2023-11-25T10:09:40.075 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 18/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 19/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 20/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 21/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : librados2-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-11-25T10:09:40.076 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : librbd1-2:18.0.0-7506.gec928368.el8.x86_64 24/25 2023-11-25T10:09:40.194 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:40.194 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /sys 2023-11-25T10:09:40.194 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /proc 2023-11-25T10:09:40.195 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /dev 2023-11-25T10:09:40.195 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /run 2023-11-25T10:09:40.195 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /mnt 2023-11-25T10:09:40.195 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /var/tmp 2023-11-25T10:09:40.195 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /home 2023-11-25T10:09:40.195 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /tmp 2023-11-25T10:09:40.195 INFO:teuthology.orchestra.run.smithi179.stdout:skipping the directory /dev 2023-11-25T10:09:40.195 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:09:40.234 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:40.234 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /sys 2023-11-25T10:09:40.234 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /proc 2023-11-25T10:09:40.234 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /dev 2023-11-25T10:09:40.234 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /run 2023-11-25T10:09:40.234 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /mnt 2023-11-25T10:09:40.234 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /var/tmp 2023-11-25T10:09:40.235 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /home 2023-11-25T10:09:40.235 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /tmp 2023-11-25T10:09:40.235 INFO:teuthology.orchestra.run.smithi046.stdout:skipping the directory /dev 2023-11-25T10:09:40.235 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:09:41.467 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:41.467 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:00:52 ago on Sat 25 Nov 2023 10:08:49 AM UTC. 2023-11-25T10:09:41.615 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 23/25 2023-11-25T10:09:41.636 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 23/25 2023-11-25T10:09:41.636 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-11-25T10:09:41.743 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 23/25 2023-11-25T10:09:41.764 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 23/25 2023-11-25T10:09:41.765 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-11-25T10:09:41.846 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-11-25T10:09:41.846 INFO:teuthology.orchestra.run.smithi179.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:41.948 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-11-25T10:09:41.948 INFO:teuthology.orchestra.run.smithi046.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 1/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 4/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 5/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 6/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : librgw2-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7506.gec928368.el8. 8/25 2023-11-25T10:09:42.516 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : python3-ceph-common-2:18.0.0-7506.gec928368.el8.x8 9/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 11/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 12/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 13/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 18/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 19/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 20/25 2023-11-25T10:09:42.517 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 21/25 2023-11-25T10:09:42.518 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : librados2-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:42.518 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-11-25T10:09:42.518 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : librbd1-2:18.0.0-7506.gec928368.el8.x86_64 24/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 1/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 3/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 4/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 5/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_6 6/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : librgw2-2:18.0.0-7506.gec928368.el8.x86_64 7/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7506.gec928368.el8. 8/25 2023-11-25T10:09:42.597 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : python3-ceph-common-2:18.0.0-7506.gec928368.el8.x8 9/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 10/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 11/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 12/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 13/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 18/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 19/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 20/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 21/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : librados2-2:18.0.0-7506.gec928368.el8.x86_64 22/25 2023-11-25T10:09:42.598 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-11-25T10:09:42.599 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : librbd1-2:18.0.0-7506.gec928368.el8.x86_64 24/25 2023-11-25T10:09:43.750 INFO:teuthology.orchestra.run.smithi116.stdout:Installed products updated. 2023-11-25T10:09:43.916 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:43.916 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:00:52 ago on Sat 25 Nov 2023 10:08:51 AM UTC. 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout:Upgraded: 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout: librados2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout: librbd1-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout:Installed: 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.935 INFO:teuthology.orchestra.run.smithi116.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: liboath-2.6.2-3.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: librgw2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: libunwind-1.3.1-3.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: python3-ceph-argparse-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: python3-ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-11-25T10:09:43.936 INFO:teuthology.orchestra.run.smithi116.stdout: python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.937 INFO:teuthology.orchestra.run.smithi116.stdout: python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.937 INFO:teuthology.orchestra.run.smithi116.stdout: python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:43.937 INFO:teuthology.orchestra.run.smithi116.stdout: thrift-0.13.0-2.el8.x86_64 2023-11-25T10:09:43.937 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:43.937 INFO:teuthology.orchestra.run.smithi116.stdout:Complete! 2023-11-25T10:09:43.961 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-11-25T10:09:43.961 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:00:55 ago on Sat 25 Nov 2023 10:08:48 AM UTC. 2023-11-25T10:09:44.089 DEBUG:teuthology.orchestra.run.smithi116:> sudo yum -y install ceph-test 2023-11-25T10:09:44.439 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T10:09:45.234 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:00:56 ago on Sat 25 Nov 2023 10:08:49 AM UTC. 2023-11-25T10:09:46.245 INFO:teuthology.orchestra.run.smithi179.stdout:Installed products updated. 2023-11-25T10:09:46.429 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout:Upgraded: 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout: librados2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout: librbd1-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout:Installed: 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-11-25T10:09:46.430 INFO:teuthology.orchestra.run.smithi179.stdout: libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.431 INFO:teuthology.orchestra.run.smithi179.stdout: liboath-2.6.2-3.el8.x86_64 2023-11-25T10:09:46.431 INFO:teuthology.orchestra.run.smithi179.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-11-25T10:09:46.431 INFO:teuthology.orchestra.run.smithi179.stdout: libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.431 INFO:teuthology.orchestra.run.smithi179.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-11-25T10:09:46.431 INFO:teuthology.orchestra.run.smithi179.stdout: librgw2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.431 INFO:teuthology.orchestra.run.smithi179.stdout: libunwind-1.3.1-3.el8.x86_64 2023-11-25T10:09:46.431 INFO:teuthology.orchestra.run.smithi179.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: python3-ceph-argparse-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: python3-ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: thrift-0.13.0-2.el8.x86_64 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:09:46.432 INFO:teuthology.orchestra.run.smithi179.stdout:Complete! 2023-11-25T10:09:46.584 DEBUG:teuthology.orchestra.run.smithi179:> sudo yum -y install ceph-test 2023-11-25T10:09:46.588 INFO:teuthology.orchestra.run.smithi046.stdout:Installed products updated. 2023-11-25T10:09:46.671 INFO:teuthology.orchestra.run.smithi116.stdout:Dependencies resolved. 2023-11-25T10:09:46.671 INFO:teuthology.orchestra.run.smithi116.stdout:============================================================================================ 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout: Package Arch Version Repository Size 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout:============================================================================================ 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout:Installing: 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-test x86_64 2:18.0.0-7506.gec928368.el8 ceph 49 M 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout:Installing dependencies: 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout: libcephsqlite x86_64 2:18.0.0-7506.gec928368.el8 ceph 183 k 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-11-25T10:09:46.672 INFO:teuthology.orchestra.run.smithi116.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-11-25T10:09:46.673 INFO:teuthology.orchestra.run.smithi116.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-11-25T10:09:46.673 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:46.673 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction Summary 2023-11-25T10:09:46.673 INFO:teuthology.orchestra.run.smithi116.stdout:============================================================================================ 2023-11-25T10:09:46.673 INFO:teuthology.orchestra.run.smithi116.stdout:Install 6 Packages 2023-11-25T10:09:46.673 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:46.673 INFO:teuthology.orchestra.run.smithi116.stdout:Total download size: 50 M 2023-11-25T10:09:46.674 INFO:teuthology.orchestra.run.smithi116.stdout:Installed size: 223 M 2023-11-25T10:09:46.674 INFO:teuthology.orchestra.run.smithi116.stdout:Downloading Packages: 2023-11-25T10:09:46.737 INFO:teuthology.orchestra.run.smithi116.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 1.1 MB/s | 70 kB 00:00 2023-11-25T10:09:46.791 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:09:46.791 INFO:teuthology.orchestra.run.smithi046.stdout:Upgraded: 2023-11-25T10:09:46.791 INFO:teuthology.orchestra.run.smithi046.stdout: librados2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.791 INFO:teuthology.orchestra.run.smithi046.stdout: librbd1-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.791 INFO:teuthology.orchestra.run.smithi046.stdout:Installed: 2023-11-25T10:09:46.791 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-base-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.791 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-radosgw-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-selinux-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: libcephfs2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: liboath-2.6.2-3.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: libradosstriper1-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: librgw2-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: libunwind-1.3.1-3.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-11-25T10:09:46.792 INFO:teuthology.orchestra.run.smithi046.stdout: python3-ceph-argparse-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.793 INFO:teuthology.orchestra.run.smithi046.stdout: python3-ceph-common-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.793 INFO:teuthology.orchestra.run.smithi046.stdout: python3-cephfs-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.793 INFO:teuthology.orchestra.run.smithi046.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-11-25T10:09:46.793 INFO:teuthology.orchestra.run.smithi046.stdout: python3-rados-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.793 INFO:teuthology.orchestra.run.smithi046.stdout: python3-rbd-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.793 INFO:teuthology.orchestra.run.smithi046.stdout: python3-rgw-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:46.793 INFO:teuthology.orchestra.run.smithi046.stdout: thrift-0.13.0-2.el8.x86_64 2023-11-25T10:09:46.794 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:09:46.794 INFO:teuthology.orchestra.run.smithi046.stdout:Complete! 2023-11-25T10:09:46.812 INFO:teuthology.orchestra.run.smithi116.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 4.3 MB/s | 323 kB 00:00 2023-11-25T10:09:46.863 INFO:teuthology.orchestra.run.smithi116.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 3.7 MB/s | 187 kB 00:00 2023-11-25T10:09:46.888 INFO:teuthology.orchestra.run.smithi116.stdout:(4/6): libcephsqlite-18.0.0-7506.gec928368.el8. 855 kB/s | 183 kB 00:00 2023-11-25T10:09:46.913 INFO:teuthology.orchestra.run.smithi116.stdout:(5/6): jq-1.6-3.el8.x86_64.rpm 3.9 MB/s | 202 kB 00:00 2023-11-25T10:09:46.935 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T10:09:46.953 DEBUG:teuthology.orchestra.run.smithi046:> sudo yum -y install ceph-test 2023-11-25T10:09:47.323 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T10:09:47.775 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:00:56 ago on Sat 25 Nov 2023 10:08:51 AM UTC. 2023-11-25T10:09:48.187 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:01:00 ago on Sat 25 Nov 2023 10:08:48 AM UTC. 2023-11-25T10:09:49.038 INFO:teuthology.orchestra.run.smithi116.stdout:(6/6): ceph-test-18.0.0-7506.gec928368.el8.x86_ 21 MB/s | 49 MB 00:02 2023-11-25T10:09:49.040 INFO:teuthology.orchestra.run.smithi116.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:09:49.041 INFO:teuthology.orchestra.run.smithi116.stdout:Total 21 MB/s | 50 MB 00:02 2023-11-25T10:09:49.079 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction check 2023-11-25T10:09:49.100 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction check succeeded. 2023-11-25T10:09:49.100 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction test 2023-11-25T10:09:49.158 INFO:teuthology.orchestra.run.smithi179.stdout:Dependencies resolved. 2023-11-25T10:09:49.159 INFO:teuthology.orchestra.run.smithi179.stdout:============================================================================================ 2023-11-25T10:09:49.159 INFO:teuthology.orchestra.run.smithi179.stdout: Package Arch Version Repository Size 2023-11-25T10:09:49.159 INFO:teuthology.orchestra.run.smithi179.stdout:============================================================================================ 2023-11-25T10:09:49.159 INFO:teuthology.orchestra.run.smithi179.stdout:Installing: 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-test x86_64 2:18.0.0-7506.gec928368.el8 ceph 49 M 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout:Installing dependencies: 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout: libcephsqlite x86_64 2:18.0.0-7506.gec928368.el8 ceph 183 k 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction Summary 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout:============================================================================================ 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout:Install 6 Packages 2023-11-25T10:09:49.160 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:09:49.161 INFO:teuthology.orchestra.run.smithi179.stdout:Total download size: 50 M 2023-11-25T10:09:49.161 INFO:teuthology.orchestra.run.smithi179.stdout:Installed size: 223 M 2023-11-25T10:09:49.161 INFO:teuthology.orchestra.run.smithi179.stdout:Downloading Packages: 2023-11-25T10:09:49.197 INFO:teuthology.orchestra.run.smithi179.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 2.0 MB/s | 70 kB 00:00 2023-11-25T10:09:49.272 INFO:teuthology.orchestra.run.smithi179.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 4.5 MB/s | 323 kB 00:00 2023-11-25T10:09:49.314 INFO:teuthology.orchestra.run.smithi179.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 4.4 MB/s | 187 kB 00:00 2023-11-25T10:09:49.348 INFO:teuthology.orchestra.run.smithi179.stdout:(4/6): jq-1.6-3.el8.x86_64.rpm 5.9 MB/s | 202 kB 00:00 2023-11-25T10:09:49.371 INFO:teuthology.orchestra.run.smithi116.stdout:Transaction test succeeded. 2023-11-25T10:09:49.375 INFO:teuthology.orchestra.run.smithi116.stdout:Running transaction 2023-11-25T10:09:49.381 INFO:teuthology.orchestra.run.smithi179.stdout:(5/6): libcephsqlite-18.0.0-7506.gec928368.el8. 836 kB/s | 183 kB 00:00 2023-11-25T10:09:49.695 INFO:teuthology.orchestra.run.smithi046.stdout:Dependencies resolved. 2023-11-25T10:09:49.696 INFO:teuthology.orchestra.run.smithi046.stdout:============================================================================================ 2023-11-25T10:09:49.696 INFO:teuthology.orchestra.run.smithi046.stdout: Package Arch Version Repository Size 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout:============================================================================================ 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout:Installing: 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-test x86_64 2:18.0.0-7506.gec928368.el8 ceph 49 M 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout:Installing dependencies: 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout: libcephsqlite x86_64 2:18.0.0-7506.gec928368.el8 ceph 183 k 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction Summary 2023-11-25T10:09:49.697 INFO:teuthology.orchestra.run.smithi046.stdout:============================================================================================ 2023-11-25T10:09:49.698 INFO:teuthology.orchestra.run.smithi046.stdout:Install 6 Packages 2023-11-25T10:09:49.698 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:09:49.698 INFO:teuthology.orchestra.run.smithi046.stdout:Total download size: 50 M 2023-11-25T10:09:49.698 INFO:teuthology.orchestra.run.smithi046.stdout:Installed size: 223 M 2023-11-25T10:09:49.698 INFO:teuthology.orchestra.run.smithi046.stdout:Downloading Packages: 2023-11-25T10:09:49.731 INFO:teuthology.orchestra.run.smithi046.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 2.1 MB/s | 70 kB 00:00 2023-11-25T10:09:49.807 INFO:teuthology.orchestra.run.smithi046.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 4.8 MB/s | 323 kB 00:00 2023-11-25T10:09:49.830 INFO:teuthology.orchestra.run.smithi116.stdout: Preparing : 1/1 2023-11-25T10:09:49.866 INFO:teuthology.orchestra.run.smithi046.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 3.1 MB/s | 187 kB 00:00 2023-11-25T10:09:49.907 INFO:teuthology.orchestra.run.smithi046.stdout:(4/6): jq-1.6-3.el8.x86_64.rpm 4.8 MB/s | 202 kB 00:00 2023-11-25T10:09:49.932 INFO:teuthology.orchestra.run.smithi046.stdout:(5/6): libcephsqlite-18.0.0-7506.gec928368.el8. 785 kB/s | 183 kB 00:00 2023-11-25T10:09:49.961 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-11-25T10:09:50.034 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-11-25T10:09:50.281 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-11-25T10:09:50.436 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-11-25T10:09:50.601 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-11-25T10:09:50.793 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 5/6 2023-11-25T10:09:52.874 INFO:teuthology.orchestra.run.smithi046.stdout:(6/6): ceph-test-18.0.0-7506.gec928368.el8.x86_ 16 MB/s | 49 MB 00:03 2023-11-25T10:09:52.876 INFO:teuthology.orchestra.run.smithi046.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:09:52.876 INFO:teuthology.orchestra.run.smithi046.stdout:Total 16 MB/s | 50 MB 00:03 2023-11-25T10:09:52.915 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction check 2023-11-25T10:09:52.938 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction check succeeded. 2023-11-25T10:09:52.938 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction test 2023-11-25T10:09:53.225 INFO:teuthology.orchestra.run.smithi046.stdout:Transaction test succeeded. 2023-11-25T10:09:53.229 INFO:teuthology.orchestra.run.smithi046.stdout:Running transaction 2023-11-25T10:09:53.699 INFO:teuthology.orchestra.run.smithi046.stdout: Preparing : 1/1 2023-11-25T10:09:53.845 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-11-25T10:09:53.928 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-11-25T10:09:53.997 INFO:teuthology.orchestra.run.smithi179.stdout:(6/6): ceph-test-18.0.0-7506.gec928368.el8.x86_ 10 MB/s | 49 MB 00:04 2023-11-25T10:09:53.999 INFO:teuthology.orchestra.run.smithi179.stdout:-------------------------------------------------------------------------------- 2023-11-25T10:09:54.000 INFO:teuthology.orchestra.run.smithi179.stdout:Total 10 MB/s | 50 MB 00:04 2023-11-25T10:09:54.036 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction check 2023-11-25T10:09:54.057 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction check succeeded. 2023-11-25T10:09:54.057 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction test 2023-11-25T10:09:54.126 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-11-25T10:09:54.270 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-11-25T10:09:54.328 INFO:teuthology.orchestra.run.smithi179.stdout:Transaction test succeeded. 2023-11-25T10:09:54.332 INFO:teuthology.orchestra.run.smithi179.stdout:Running transaction 2023-11-25T10:09:54.461 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-11-25T10:09:54.585 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 5/6 2023-11-25T10:09:54.788 INFO:teuthology.orchestra.run.smithi179.stdout: Preparing : 1/1 2023-11-25T10:09:54.917 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-11-25T10:09:54.998 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-11-25T10:09:55.196 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-11-25T10:09:55.342 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-11-25T10:09:55.476 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 5/6 2023-11-25T10:09:55.540 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-11-25T10:09:55.683 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 5/6 2023-11-25T10:09:55.798 INFO:teuthology.orchestra.run.smithi116.stdout: Installing : ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 6/6 2023-11-25T10:09:56.011 INFO:teuthology.orchestra.run.smithi116.stdout: Running scriptlet: ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 6/6 2023-11-25T10:09:56.011 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 1/6 2023-11-25T10:09:56.012 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 2/6 2023-11-25T10:09:56.012 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-11-25T10:09:56.012 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-11-25T10:09:56.012 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-11-25T10:09:57.074 INFO:teuthology.orchestra.run.smithi116.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-11-25T10:09:57.074 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:01:08 ago on Sat 25 Nov 2023 10:08:49 AM UTC. 2023-11-25T10:09:59.475 INFO:teuthology.orchestra.run.smithi116.stdout:Installed products updated. 2023-11-25T10:09:59.600 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 5/6 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout:Installed: 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout: ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout: jq-1.6-3.el8.x86_64 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout: libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout: oniguruma-6.8.2-2.el8.x86_64 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout: socat-1.7.4.1-1.el8.x86_64 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout: xmlstarlet-1.6.1-20.el8.x86_64 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout: 2023-11-25T10:09:59.660 INFO:teuthology.orchestra.run.smithi116.stdout:Complete! 2023-11-25T10:09:59.794 DEBUG:teuthology.orchestra.run.smithi116:> sudo yum -y install ceph 2023-11-25T10:09:59.866 INFO:teuthology.orchestra.run.smithi046.stdout: Installing : ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 6/6 2023-11-25T10:10:00.107 INFO:teuthology.orchestra.run.smithi046.stdout: Running scriptlet: ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 6/6 2023-11-25T10:10:00.107 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 1/6 2023-11-25T10:10:00.107 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 2/6 2023-11-25T10:10:00.107 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-11-25T10:10:00.107 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-11-25T10:10:00.107 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-11-25T10:10:00.128 INFO:teuthology.orchestra.run.smithi116.stdout:Updating Subscription Management repositories. 2023-11-25T10:10:00.409 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 5/6 2023-11-25T10:10:00.696 INFO:teuthology.orchestra.run.smithi179.stdout: Installing : ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 6/6 2023-11-25T10:10:00.928 INFO:teuthology.orchestra.run.smithi179.stdout: Running scriptlet: ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 6/6 2023-11-25T10:10:00.928 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 1/6 2023-11-25T10:10:00.928 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 2/6 2023-11-25T10:10:00.928 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-11-25T10:10:00.928 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-11-25T10:10:00.928 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-11-25T10:10:00.942 INFO:teuthology.orchestra.run.smithi116.stdout:Last metadata expiration check: 0:01:11 ago on Sat 25 Nov 2023 10:08:49 AM UTC. 2023-11-25T10:10:01.201 INFO:teuthology.orchestra.run.smithi046.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-11-25T10:10:01.201 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:01:13 ago on Sat 25 Nov 2023 10:08:48 AM UTC. 2023-11-25T10:10:02.005 INFO:teuthology.orchestra.run.smithi179.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-11-25T10:10:02.005 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:01:11 ago on Sat 25 Nov 2023 10:08:51 AM UTC. 2023-11-25T10:10:02.315 INFO:teuthology.orchestra.run.smithi116.stderr:Error: 2023-11-25T10:10:02.315 INFO:teuthology.orchestra.run.smithi116.stderr: Problem: conflicting requests 2023-11-25T10:10:02.315 INFO:teuthology.orchestra.run.smithi116.stderr: - nothing provides lua-devel needed by ceph-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:10:02.315 INFO:teuthology.orchestra.run.smithi116.stdout:(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) 2023-11-25T10:10:02.399 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:02.399 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/remote.py", line 522, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi116 with status 1: 'sudo yum -y install ceph' 2023-11-25T10:10:02.401 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/remote.py", line 522, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi116 with status 1: 'sudo yum -y install ceph' 2023-11-25T10:10:02.473 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=2973d7d6b09f4c6da8a5393819533575 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/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_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/remote.py", line 522, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_2442239d2653456406c25ae0c71b689c8f2657b6/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi116 with status 1: 'sudo yum -y install ceph' 2023-11-25T10:10:02.477 DEBUG:teuthology.run_tasks:Unwinding manager install 2023-11-25T10:10:02.486 DEBUG:teuthology.run_tasks:Unwinding manager clock 2023-11-25T10:10:02.495 INFO:teuthology.task.clock:Checking final clock skew... 2023-11-25T10:10:02.496 DEBUG:teuthology.orchestra.run.smithi046:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-11-25T10:10:02.509 DEBUG:teuthology.orchestra.run.smithi116:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-11-25T10:10:02.512 DEBUG:teuthology.orchestra.run.smithi179:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-11-25T10:10:02.516 INFO:teuthology.orchestra.run.smithi046.stderr:bash: ntpq: command not found 2023-11-25T10:10:02.520 INFO:teuthology.orchestra.run.smithi046.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-25T10:10:02.520 INFO:teuthology.orchestra.run.smithi046.stdout:=============================================================================== 2023-11-25T10:10:02.520 INFO:teuthology.orchestra.run.smithi046.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 5 +434us[ +420us] +/- 70ms 2023-11-25T10:10:02.520 INFO:teuthology.orchestra.run.smithi046.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 6 -279us[ -293us] +/- 77ms 2023-11-25T10:10:02.520 INFO:teuthology.orchestra.run.smithi046.stdout:^* hv03.front.sepia.ceph.com 3 6 77 5 -205us[ -219us] +/- 75ms 2023-11-25T10:10:02.521 INFO:teuthology.orchestra.run.smithi046.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:10:02.525 INFO:teuthology.orchestra.run.smithi116.stderr:bash: ntpq: command not found 2023-11-25T10:10:02.529 INFO:teuthology.orchestra.run.smithi116.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-25T10:10:02.529 INFO:teuthology.orchestra.run.smithi116.stdout:=============================================================================== 2023-11-25T10:10:02.529 INFO:teuthology.orchestra.run.smithi116.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 5 +434us[ +442us] +/- 70ms 2023-11-25T10:10:02.529 INFO:teuthology.orchestra.run.smithi116.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 6 -274us[ -266us] +/- 77ms 2023-11-25T10:10:02.530 INFO:teuthology.orchestra.run.smithi116.stdout:^* hv03.front.sepia.ceph.com 3 6 77 5 -188us[ -180us] +/- 75ms 2023-11-25T10:10:02.530 INFO:teuthology.orchestra.run.smithi116.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:10:02.530 INFO:teuthology.orchestra.run.smithi179.stderr:bash: ntpq: command not found 2023-11-25T10:10:02.533 INFO:teuthology.orchestra.run.smithi179.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-25T10:10:02.533 INFO:teuthology.orchestra.run.smithi179.stdout:=============================================================================== 2023-11-25T10:10:02.534 INFO:teuthology.orchestra.run.smithi179.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 5 +431us[ +431us] +/- 70ms 2023-11-25T10:10:02.534 INFO:teuthology.orchestra.run.smithi179.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 6 -296us[ -247us] +/- 77ms 2023-11-25T10:10:02.534 INFO:teuthology.orchestra.run.smithi179.stdout:^* hv03.front.sepia.ceph.com 3 6 77 5 -174us[ -124us] +/- 75ms 2023-11-25T10:10:02.534 INFO:teuthology.orchestra.run.smithi179.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2023-11-25T10:10:02.535 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2023-11-25T10:10:02.543 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2023-11-25T10:10:02.544 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2023-11-25T10:10:02.553 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T10:10:02.659 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T10:10:02.768 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T10:10:02.863 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T10:10:02.895 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:02.896 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T10:10:02.927 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:02.927 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T10:10:02.960 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:02.961 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2023-11-25T10:10:02.971 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2023-11-25T10:10:02.979 INFO:teuthology.task.internal:Duration was 690.446537 seconds 2023-11-25T10:10:02.980 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2023-11-25T10:10:02.989 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2023-11-25T10:10:02.989 DEBUG:teuthology.orchestra.run.smithi046:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-11-25T10:10:02.992 DEBUG:teuthology.orchestra.run.smithi116:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-11-25T10:10:02.993 DEBUG:teuthology.orchestra.run.smithi179:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-11-25T10:10:03.038 INFO:teuthology.orchestra.run.smithi116.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-25T10:10:03.038 INFO:teuthology.orchestra.run.smithi046.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-25T10:10:03.048 INFO:teuthology.orchestra.run.smithi179.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-25T10:10:03.357 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2023-11-25T10:10:03.357 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi046.front.sepia.ceph.com 2023-11-25T10:10:03.358 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T10:10:03.380 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi116.front.sepia.ceph.com 2023-11-25T10:10:03.381 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T10:10:03.402 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi179.front.sepia.ceph.com 2023-11-25T10:10:03.402 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T10:10:03.423 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2023-11-25T10:10:03.424 DEBUG:teuthology.orchestra.run.smithi046:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-11-25T10:10:03.426 DEBUG:teuthology.orchestra.run.smithi116:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-11-25T10:10:03.445 DEBUG:teuthology.orchestra.run.smithi179:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-11-25T10:10:03.502 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2023-11-25T10:10:03.503 DEBUG:teuthology.orchestra.run.smithi046:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-11-25T10:10:03.507 DEBUG:teuthology.orchestra.run.smithi116:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-11-25T10:10:03.523 DEBUG:teuthology.orchestra.run.smithi179:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-11-25T10:10:03.589 INFO:teuthology.orchestra.run.smithi046.stdout:Installed products updated. 2023-11-25T10:10:03.611 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2023-11-25T10:10:03.621 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2023-11-25T10:10:03.621 DEBUG:teuthology.orchestra.run.smithi046:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-11-25T10:10:03.675 DEBUG:teuthology.orchestra.run.smithi116:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-11-25T10:10:03.711 DEBUG:teuthology.orchestra.run.smithi179:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-11-25T10:10:03.749 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2023-11-25T10:10:03.759 DEBUG:teuthology.orchestra.run.smithi046:> 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-11-25T10:10:03.761 DEBUG:teuthology.orchestra.run.smithi116:> 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-11-25T10:10:03.764 DEBUG:teuthology.orchestra.run.smithi179:> 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-11-25T10:10:03.786 INFO:teuthology.orchestra.run.smithi046.stdout:kernel.core_pattern = core 2023-11-25T10:10:03.787 INFO:teuthology.orchestra.run.smithi116.stdout:kernel.core_pattern = core 2023-11-25T10:10:03.792 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:10:03.792 INFO:teuthology.orchestra.run.smithi046.stdout:Installed: 2023-11-25T10:10:03.792 INFO:teuthology.orchestra.run.smithi046.stdout: ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:10:03.792 INFO:teuthology.orchestra.run.smithi046.stdout: jq-1.6-3.el8.x86_64 2023-11-25T10:10:03.792 INFO:teuthology.orchestra.run.smithi046.stdout: libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:10:03.793 INFO:teuthology.orchestra.run.smithi046.stdout: oniguruma-6.8.2-2.el8.x86_64 2023-11-25T10:10:03.793 INFO:teuthology.orchestra.run.smithi046.stdout: socat-1.7.4.1-1.el8.x86_64 2023-11-25T10:10:03.793 INFO:teuthology.orchestra.run.smithi046.stdout: xmlstarlet-1.6.1-20.el8.x86_64 2023-11-25T10:10:03.793 INFO:teuthology.orchestra.run.smithi046.stdout: 2023-11-25T10:10:03.793 INFO:teuthology.orchestra.run.smithi046.stdout:Complete! 2023-11-25T10:10:03.815 INFO:teuthology.orchestra.run.smithi179.stdout:kernel.core_pattern = core 2023-11-25T10:10:03.830 DEBUG:teuthology.orchestra.run.smithi046:> test -e /home/ubuntu/cephtest/archive/coredump 2023-11-25T10:10:03.886 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:03.886 DEBUG:teuthology.orchestra.run.smithi116:> test -e /home/ubuntu/cephtest/archive/coredump 2023-11-25T10:10:03.901 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:03.903 DEBUG:teuthology.orchestra.run.smithi179:> test -e /home/ubuntu/cephtest/archive/coredump 2023-11-25T10:10:03.918 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:03.919 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2023-11-25T10:10:03.929 INFO:teuthology.task.internal:Transferring archived files... 2023-11-25T10:10:03.931 DEBUG:teuthology.misc:Transferring archived files from smithi046:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660/remote/smithi046 2023-11-25T10:10:03.932 DEBUG:teuthology.orchestra.run.smithi046:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-11-25T10:10:03.933 DEBUG:teuthology.orchestra.run.smithi046:> sudo yum -y install ceph 2023-11-25T10:10:04.020 DEBUG:teuthology.misc:Transferring archived files from smithi116:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660/remote/smithi116 2023-11-25T10:10:04.021 DEBUG:teuthology.orchestra.run.smithi116:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-11-25T10:10:04.073 DEBUG:teuthology.misc:Transferring archived files from smithi179:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660/remote/smithi179 2023-11-25T10:10:04.074 DEBUG:teuthology.orchestra.run.smithi179:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-11-25T10:10:04.132 INFO:teuthology.task.internal:Removing archive directory... 2023-11-25T10:10:04.133 DEBUG:teuthology.orchestra.run.smithi046:> rm -rf -- /home/ubuntu/cephtest/archive 2023-11-25T10:10:04.135 DEBUG:teuthology.orchestra.run.smithi116:> rm -rf -- /home/ubuntu/cephtest/archive 2023-11-25T10:10:04.137 DEBUG:teuthology.orchestra.run.smithi179:> rm -rf -- /home/ubuntu/cephtest/archive 2023-11-25T10:10:04.155 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2023-11-25T10:10:04.166 INFO:teuthology.task.internal:Not uploading archives. 2023-11-25T10:10:04.167 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2023-11-25T10:10:04.176 INFO:teuthology.task.internal:Tidying up after the test... 2023-11-25T10:10:04.176 DEBUG:teuthology.orchestra.run.smithi046:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-11-25T10:10:04.192 DEBUG:teuthology.orchestra.run.smithi116:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-11-25T10:10:04.194 DEBUG:teuthology.orchestra.run.smithi179:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-11-25T10:10:04.207 INFO:teuthology.orchestra.run.smithi046.stdout: 262307 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Nov 25 10:10 /home/ubuntu/cephtest 2023-11-25T10:10:04.208 INFO:teuthology.orchestra.run.smithi116.stdout: 262307 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Nov 25 10:10 /home/ubuntu/cephtest 2023-11-25T10:10:04.212 INFO:teuthology.orchestra.run.smithi179.stdout: 262307 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Nov 25 10:10 /home/ubuntu/cephtest 2023-11-25T10:10:04.214 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2023-11-25T10:10:04.224 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2023-11-25T10:10:04.244 INFO:teuthology.nuke:Checking targets against current locks 2023-11-25T10:10:04.270 DEBUG:teuthology.nuke:shortname: smithi046 2023-11-25T10:10:04.271 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-11-25T10:10:04.294 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi046.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660', '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-11-25 09:53:09.958314', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-11-25T10:10:04.298 DEBUG:teuthology.nuke:shortname: smithi116 2023-11-25T10:10:04.298 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-11-25T10:10:04.324 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi116.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660', '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-11-25 09:53:09.956670', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-11-25T10:10:04.325 DEBUG:teuthology.nuke:shortname: smithi179 2023-11-25T10:10:04.325 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-11-25T10:10:04.330 INFO:teuthology.orchestra.run.smithi046.stdout:Updating Subscription Management repositories. 2023-11-25T10:10:04.353 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi179.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-24_21:25:11-orch-main-distro-default-smithi/7466660', '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-11-25 09:53:09.959435', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-11-25T10:10:04.360 INFO:teuthology.orchestra.console.smithi046:Power off 2023-11-25T10:10:04.360 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-11-25T10:10:04.372 INFO:teuthology.orchestra.run.smithi179.stdout:Installed products updated. 2023-11-25T10:10:04.384 DEBUG:teuthology.orchestra.console.smithi046:power off output: Chassis Power Control: Down/Off 2023-11-25T10:10:04.384 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:04.398 INFO:teuthology.orchestra.console.smithi116:Power off 2023-11-25T10:10:04.399 DEBUG:teuthology.orchestra.console.smithi116:pexpect command: ipmitool -H smithi116.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-11-25T10:10:04.412 DEBUG:teuthology.orchestra.console.smithi046:check power output: Chassis Power is on 2023-11-25T10:10:04.419 DEBUG:teuthology.orchestra.console.smithi116:power off output: Chassis Power Control: Down/Off 2023-11-25T10:10:04.419 DEBUG:teuthology.orchestra.console.smithi116:pexpect command: ipmitool -H smithi116.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:04.440 INFO:teuthology.orchestra.console.smithi179:Power off 2023-11-25T10:10:04.441 DEBUG:teuthology.orchestra.console.smithi179:pexpect command: ipmitool -H smithi179.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-11-25T10:10:04.449 DEBUG:teuthology.orchestra.console.smithi116:check power output: Chassis Power is on 2023-11-25T10:10:04.462 DEBUG:teuthology.orchestra.console.smithi179:power off output: Chassis Power Control: Down/Off 2023-11-25T10:10:04.462 DEBUG:teuthology.orchestra.console.smithi179:pexpect command: ipmitool -H smithi179.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:04.485 DEBUG:teuthology.orchestra.console.smithi179:check power output: Chassis Power is on 2023-11-25T10:10:04.545 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:10:04.546 INFO:teuthology.orchestra.run.smithi179.stdout:Installed: 2023-11-25T10:10:04.546 INFO:teuthology.orchestra.run.smithi179.stdout: ceph-test-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:10:04.546 INFO:teuthology.orchestra.run.smithi179.stdout: jq-1.6-3.el8.x86_64 2023-11-25T10:10:04.546 INFO:teuthology.orchestra.run.smithi179.stdout: libcephsqlite-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:10:04.546 INFO:teuthology.orchestra.run.smithi179.stdout: oniguruma-6.8.2-2.el8.x86_64 2023-11-25T10:10:04.546 INFO:teuthology.orchestra.run.smithi179.stdout: socat-1.7.4.1-1.el8.x86_64 2023-11-25T10:10:04.547 INFO:teuthology.orchestra.run.smithi179.stdout: xmlstarlet-1.6.1-20.el8.x86_64 2023-11-25T10:10:04.547 INFO:teuthology.orchestra.run.smithi179.stdout: 2023-11-25T10:10:04.547 INFO:teuthology.orchestra.run.smithi179.stdout:Complete! 2023-11-25T10:10:04.679 DEBUG:teuthology.orchestra.run.smithi179:> sudo yum -y install ceph 2023-11-25T10:10:05.015 INFO:teuthology.orchestra.run.smithi179.stdout:Updating Subscription Management repositories. 2023-11-25T10:10:05.159 INFO:teuthology.orchestra.run.smithi046.stdout:Last metadata expiration check: 0:01:17 ago on Sat 25 Nov 2023 10:08:48 AM UTC. 2023-11-25T10:10:05.801 INFO:teuthology.orchestra.run.smithi179.stdout:Last metadata expiration check: 0:01:14 ago on Sat 25 Nov 2023 10:08:51 AM UTC. 2023-11-25T10:10:06.682 INFO:teuthology.orchestra.run.smithi046.stderr:Error: 2023-11-25T10:10:06.682 INFO:teuthology.orchestra.run.smithi046.stderr: Problem: conflicting requests 2023-11-25T10:10:06.682 INFO:teuthology.orchestra.run.smithi046.stderr: - nothing provides lua-devel needed by ceph-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:10:06.683 INFO:teuthology.orchestra.run.smithi046.stdout:(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) 2023-11-25T10:10:06.764 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:07.229 INFO:teuthology.orchestra.run.smithi179.stderr:Error: 2023-11-25T10:10:07.230 INFO:teuthology.orchestra.run.smithi179.stderr: Problem: conflicting requests 2023-11-25T10:10:07.230 INFO:teuthology.orchestra.run.smithi179.stderr: - nothing provides lua-devel needed by ceph-2:18.0.0-7506.gec928368.el8.x86_64 2023-11-25T10:10:07.230 INFO:teuthology.orchestra.run.smithi179.stdout:(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) 2023-11-25T10:10:07.319 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-25T10:10:08.412 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:08.451 DEBUG:teuthology.orchestra.console.smithi116:pexpect command: ipmitool -H smithi116.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:08.487 DEBUG:teuthology.orchestra.console.smithi179:pexpect command: ipmitool -H smithi179.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:08.522 DEBUG:teuthology.orchestra.console.smithi046:check power output: Chassis Power is on 2023-11-25T10:10:08.560 DEBUG:teuthology.orchestra.console.smithi116:check power output: Chassis Power is on 2023-11-25T10:10:08.595 DEBUG:teuthology.orchestra.console.smithi179:check power output: Chassis Power is on 2023-11-25T10:10:12.526 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:12.561 DEBUG:teuthology.orchestra.console.smithi116:pexpect command: ipmitool -H smithi116.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:12.596 DEBUG:teuthology.orchestra.console.smithi179:pexpect command: ipmitool -H smithi179.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:12.636 DEBUG:teuthology.orchestra.console.smithi046:check power output: Chassis Power is off 2023-11-25T10:10:12.671 DEBUG:teuthology.orchestra.console.smithi116:check power output: Chassis Power is off 2023-11-25T10:10:12.707 DEBUG:teuthology.orchestra.console.smithi179:check power output: Chassis Power is on 2023-11-25T10:10:12.737 INFO:teuthology.orchestra.console.smithi046:Power off completed 2023-11-25T10:10:12.772 INFO:teuthology.orchestra.console.smithi116:Power off completed 2023-11-25T10:10:16.710 DEBUG:teuthology.orchestra.console.smithi179:pexpect command: ipmitool -H smithi179.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-25T10:10:16.819 DEBUG:teuthology.orchestra.console.smithi179:check power output: Chassis Power is off 2023-11-25T10:10:16.920 INFO:teuthology.orchestra.console.smithi179:Power off completed 2023-11-25T10:10:17.024 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/classic task/test_host_drain} duration: 690.4465374946594 failure_reason: 'Command failed on smithi116 with status 1: ''sudo yum -y install ceph''' flavor: default owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=2973d7d6b09f4c6da8a5393819533575 status: fail success: false 2023-11-25T10:10:17.024 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-11-25T10:10:17.107 INFO:teuthology.run:FAIL