2023-12-02T07:12:26.394 INFO:root:teuthology version: 0.0.1.dev214+gf2de108 2023-12-02T07:12:26.394 DEBUG:teuthology.run:Teuthology command: teuthology --owner scheduled_yuriw@teuthology --archive /home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229 --description orch/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/classic task/test_host_drain} --verbose --name yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi -- /home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229/orig.config.yaml 2023-12-02T07:12:26.426 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-12-02T07:12:26.517 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229 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: '7475229' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2023-12-01_18:06:01-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: bed7681480ccb0192b91a35e691658867e1e96b7 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: bed7681480ccb0192b91a35e691658867e1e96b7 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: bed7681480ccb0192b91a35e691658867e1e96b7 owner: scheduled_yuriw@teuthology priority: 75 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 4558 sha1: bed7681480ccb0192b91a35e691658867e1e96b7 sleep_before_teardown: 0 subset: 111/120000 suite: orch suite_branch: main suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_bed7681480ccb0192b91a35e691658867e1e96b7/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: bed7681480ccb0192b91a35e691658867e1e96b7 targets: smithi067.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= smithi078.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= smithi106.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs= tasks: - pexec: all: - sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup - sudo dnf -y module reset container-tools - sudo dnf -y module install container-tools:3.0 --allowerasing --nobest - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: f2de108beb0a6dde7f3e6c96039071828a1f6269 timestamp: 2023-12-01_18:06:01 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.232157 2023-12-02T07:12:26.518 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_bed7681480ccb0192b91a35e691658867e1e96b7/qa; will attempt to use it 2023-12-02T07:12:26.518 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_bed7681480ccb0192b91a35e691658867e1e96b7/qa/tasks 2023-12-02T07:12:26.519 INFO:teuthology.run_tasks:Running task internal.check_packages... 2023-12-02T07:12:26.521 INFO:teuthology.task.internal:Checking packages... 2023-12-02T07:12:26.549 INFO:teuthology.task.internal:Checking packages for os_type 'rhel', flavor 'default' and ceph hash 'bed7681480ccb0192b91a35e691658867e1e96b7' 2023-12-02T07:12:26.550 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2023-12-02T07:12:26.550 INFO:teuthology.packaging:ref: None 2023-12-02T07:12:26.550 INFO:teuthology.packaging:tag: None 2023-12-02T07:12:26.550 INFO:teuthology.packaging:branch: main 2023-12-02T07:12:26.550 INFO:teuthology.packaging:sha1: bed7681480ccb0192b91a35e691658867e1e96b7 2023-12-02T07:12:26.550 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=main 2023-12-02T07:12:27.107 INFO:teuthology.task.internal:Found packages for ceph version 18.0.0-7660.gb27938f5 2023-12-02T07:12:27.107 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2023-12-02T07:12:27.113 INFO:teuthology.task.internal:no buildpackages task found 2023-12-02T07:12:27.113 INFO:teuthology.run_tasks:Running task internal.save_config... 2023-12-02T07:12:27.137 INFO:teuthology.task.internal:Saving configuration 2023-12-02T07:12:27.151 INFO:teuthology.run_tasks:Running task internal.check_lock... 2023-12-02T07:12:27.177 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-02T07:12:27.203 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi067.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-02 07:07:09.194058', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T07:12:27.228 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi078.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-02 07:07:09.195435', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T07:12:27.253 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi106.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-02 07:07:09.196553', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T07:12:27.253 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2023-12-02T07:12:27.259 INFO:teuthology.task.internal:roles: ubuntu@smithi067.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2023-12-02T07:12:27.260 INFO:teuthology.task.internal:roles: ubuntu@smithi078.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2023-12-02T07:12:27.260 INFO:teuthology.task.internal:roles: ubuntu@smithi106.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2023-12-02T07:12:27.260 INFO:teuthology.run_tasks:Running task console_log... 2023-12-02T07:12:27.412 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fef27d3cee0>, signals=[15]) 2023-12-02T07:12:27.412 INFO:teuthology.run_tasks:Running task internal.connect... 2023-12-02T07:12:27.423 INFO:teuthology.task.internal:Opening connections... 2023-12-02T07:12:27.423 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi067.front.sepia.ceph.com 2023-12-02T07:12:27.426 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi067.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T07:12:27.499 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi078.front.sepia.ceph.com 2023-12-02T07:12:27.500 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi078.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T07:12:27.566 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi106.front.sepia.ceph.com 2023-12-02T07:12:27.567 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi106.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T07:12:27.637 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2023-12-02T07:12:27.646 DEBUG:teuthology.orchestra.run.smithi067:> uname -m 2023-12-02T07:12:27.669 INFO:teuthology.orchestra.run.smithi067.stdout:x86_64 2023-12-02T07:12:27.670 DEBUG:teuthology.orchestra.run.smithi067:> cat /etc/os-release 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:NAME="Red Hat Enterprise Linux" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:VERSION="8.6 (Ootpa)" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:ID="rhel" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:ID_LIKE="fedora" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:VERSION_ID="8.6" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:PLATFORM_ID="platform:el8" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:ANSI_COLOR="0;31" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:HOME_URL="https://www.redhat.com/" 2023-12-02T07:12:27.734 INFO:teuthology.orchestra.run.smithi067.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-12-02T07:12:27.735 INFO:teuthology.orchestra.run.smithi067.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-12-02T07:12:27.735 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:12:27.735 INFO:teuthology.orchestra.run.smithi067.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-12-02T07:12:27.735 INFO:teuthology.orchestra.run.smithi067.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-12-02T07:12:27.735 INFO:teuthology.orchestra.run.smithi067.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-12-02T07:12:27.735 INFO:teuthology.orchestra.run.smithi067.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-12-02T07:12:27.735 INFO:teuthology.lock.ops:Updating smithi067.front.sepia.ceph.com on lock server 2023-12-02T07:12:27.759 DEBUG:teuthology.orchestra.run.smithi078:> uname -m 2023-12-02T07:12:27.782 INFO:teuthology.orchestra.run.smithi078.stdout:x86_64 2023-12-02T07:12:27.783 DEBUG:teuthology.orchestra.run.smithi078:> cat /etc/os-release 2023-12-02T07:12:27.841 INFO:teuthology.orchestra.run.smithi078.stdout:NAME="Red Hat Enterprise Linux" 2023-12-02T07:12:27.841 INFO:teuthology.orchestra.run.smithi078.stdout:VERSION="8.6 (Ootpa)" 2023-12-02T07:12:27.841 INFO:teuthology.orchestra.run.smithi078.stdout:ID="rhel" 2023-12-02T07:12:27.841 INFO:teuthology.orchestra.run.smithi078.stdout:ID_LIKE="fedora" 2023-12-02T07:12:27.841 INFO:teuthology.orchestra.run.smithi078.stdout:VERSION_ID="8.6" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:PLATFORM_ID="platform:el8" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:ANSI_COLOR="0;31" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:HOME_URL="https://www.redhat.com/" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-12-02T07:12:27.842 INFO:teuthology.orchestra.run.smithi078.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-12-02T07:12:27.843 INFO:teuthology.lock.ops:Updating smithi078.front.sepia.ceph.com on lock server 2023-12-02T07:12:27.867 DEBUG:teuthology.orchestra.run.smithi106:> uname -m 2023-12-02T07:12:27.889 INFO:teuthology.orchestra.run.smithi106.stdout:x86_64 2023-12-02T07:12:27.889 DEBUG:teuthology.orchestra.run.smithi106:> cat /etc/os-release 2023-12-02T07:12:27.949 INFO:teuthology.orchestra.run.smithi106.stdout:NAME="Red Hat Enterprise Linux" 2023-12-02T07:12:27.949 INFO:teuthology.orchestra.run.smithi106.stdout:VERSION="8.6 (Ootpa)" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:ID="rhel" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:ID_LIKE="fedora" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:VERSION_ID="8.6" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:PLATFORM_ID="platform:el8" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:ANSI_COLOR="0;31" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:HOME_URL="https://www.redhat.com/" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-12-02T07:12:27.950 INFO:teuthology.orchestra.run.smithi106.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2023-12-02T07:12:27.951 INFO:teuthology.orchestra.run.smithi106.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-12-02T07:12:27.951 INFO:teuthology.orchestra.run.smithi106.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2023-12-02T07:12:27.951 INFO:teuthology.lock.ops:Updating smithi106.front.sepia.ceph.com on lock server 2023-12-02T07:12:27.975 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2023-12-02T07:12:27.988 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2023-12-02T07:12:28.012 INFO:teuthology.task.internal:Checking for old test directory... 2023-12-02T07:12:28.013 DEBUG:teuthology.orchestra.run.smithi067:> test '!' -e /home/ubuntu/cephtest 2023-12-02T07:12:28.015 DEBUG:teuthology.orchestra.run.smithi078:> test '!' -e /home/ubuntu/cephtest 2023-12-02T07:12:28.017 DEBUG:teuthology.orchestra.run.smithi106:> test '!' -e /home/ubuntu/cephtest 2023-12-02T07:12:28.036 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2023-12-02T07:12:28.046 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2023-12-02T07:12:28.046 DEBUG:teuthology.orchestra.run.smithi067:> test -z $(ls -A /var/lib/ceph) 2023-12-02T07:12:28.074 DEBUG:teuthology.orchestra.run.smithi078:> test -z $(ls -A /var/lib/ceph) 2023-12-02T07:12:28.076 DEBUG:teuthology.orchestra.run.smithi106:> test -z $(ls -A /var/lib/ceph) 2023-12-02T07:12:28.110 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2023-12-02T07:12:28.188 INFO:teuthology.run_tasks:Running task kernel... 2023-12-02T07:12:28.202 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2023-12-02T07:12:28.202 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}, 'host.c': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2023-12-02T07:12:28.203 DEBUG:teuthology.orchestra.run.smithi067:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-02T07:12:28.203 DEBUG:teuthology.orchestra.run.smithi078:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-02T07:12:28.203 DEBUG:teuthology.orchestra.run.smithi106:> test -f /run/.containerenv -o -f /.dockerenv 2023-12-02T07:12:28.222 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:12:28.223 DEBUG:teuthology.orchestra.run.smithi078:> uname -r 2023-12-02T07:12:28.223 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:12:28.224 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:12:28.224 DEBUG:teuthology.orchestra.run.smithi067:> uname -r 2023-12-02T07:12:28.225 DEBUG:teuthology.orchestra.run.smithi106:> uname -r 2023-12-02T07:12:28.283 INFO:teuthology.orchestra.run.smithi078.stdout:4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:28.283 INFO:teuthology.task.kernel:Running kernel on smithi078: 4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:28.283 DEBUG:teuthology.orchestra.run.smithi078:> sudo yum install -y kernel 2023-12-02T07:12:28.284 INFO:teuthology.orchestra.run.smithi106.stdout:4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:28.285 INFO:teuthology.task.kernel:Running kernel on smithi106: 4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:28.285 DEBUG:teuthology.orchestra.run.smithi106:> sudo yum install -y kernel 2023-12-02T07:12:28.286 INFO:teuthology.orchestra.run.smithi067.stdout:4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:28.286 INFO:teuthology.task.kernel:Running kernel on smithi067: 4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:28.286 DEBUG:teuthology.orchestra.run.smithi067:> sudo yum install -y kernel 2023-12-02T07:12:29.501 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:29.501 INFO:teuthology.orchestra.run.smithi067.stdout:Unable to read consumer identity 2023-12-02T07:12:29.532 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:29.532 INFO:teuthology.orchestra.run.smithi078.stdout:Unable to read consumer identity 2023-12-02T07:12:29.533 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:29.533 INFO:teuthology.orchestra.run.smithi106.stdout:Unable to read consumer identity 2023-12-02T07:12:30.973 INFO:teuthology.orchestra.run.smithi067.stdout:Copr repo for python3-asyncssh owned by ceph 19 kB/s | 3.5 kB 00:00 2023-12-02T07:12:30.993 INFO:teuthology.orchestra.run.smithi106.stdout:Copr repo for python3-asyncssh owned by ceph 20 kB/s | 3.5 kB 00:00 2023-12-02T07:12:31.018 INFO:teuthology.orchestra.run.smithi078.stdout:Copr repo for python3-asyncssh owned by ceph 19 kB/s | 3.5 kB 00:00 2023-12-02T07:12:31.885 INFO:teuthology.orchestra.run.smithi078.stdout:Extra Packages for Enterprise Linux 19 MB/s | 16 MB 00:00 2023-12-02T07:12:32.015 INFO:teuthology.orchestra.run.smithi067.stdout:Extra Packages for Enterprise Linux 16 MB/s | 16 MB 00:01 2023-12-02T07:12:32.044 INFO:teuthology.orchestra.run.smithi106.stdout:Extra Packages for Enterprise Linux 15 MB/s | 16 MB 00:01 2023-12-02T07:12:35.394 INFO:teuthology.orchestra.run.smithi078.stdout:lab-extras 480 kB/s | 24 kB 00:00 2023-12-02T07:12:35.546 INFO:teuthology.orchestra.run.smithi106.stdout:lab-extras 376 kB/s | 24 kB 00:00 2023-12-02T07:12:35.749 INFO:teuthology.orchestra.run.smithi067.stdout:lab-extras 382 kB/s | 24 kB 00:00 2023-12-02T07:12:36.075 INFO:teuthology.orchestra.run.smithi078.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-12-02T07:12:36.116 INFO:teuthology.orchestra.run.smithi078.stdout:Dependencies resolved. 2023-12-02T07:12:36.117 INFO:teuthology.orchestra.run.smithi078.stdout:Nothing to do. 2023-12-02T07:12:36.117 INFO:teuthology.orchestra.run.smithi078.stdout:Complete! 2023-12-02T07:12:36.226 INFO:teuthology.orchestra.run.smithi106.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-12-02T07:12:36.236 DEBUG:teuthology.orchestra.run.smithi078:> echo no | sudo yum reinstall kernel || true 2023-12-02T07:12:36.279 INFO:teuthology.orchestra.run.smithi106.stdout:Dependencies resolved. 2023-12-02T07:12:36.282 INFO:teuthology.orchestra.run.smithi106.stdout:Nothing to do. 2023-12-02T07:12:36.282 INFO:teuthology.orchestra.run.smithi106.stdout:Complete! 2023-12-02T07:12:36.404 DEBUG:teuthology.orchestra.run.smithi106:> echo no | sudo yum reinstall kernel || true 2023-12-02T07:12:36.484 INFO:teuthology.orchestra.run.smithi067.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2023-12-02T07:12:36.557 INFO:teuthology.orchestra.run.smithi067.stdout:Dependencies resolved. 2023-12-02T07:12:36.558 INFO:teuthology.orchestra.run.smithi067.stdout:Nothing to do. 2023-12-02T07:12:36.558 INFO:teuthology.orchestra.run.smithi067.stdout:Complete! 2023-12-02T07:12:36.565 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:36.565 INFO:teuthology.orchestra.run.smithi078.stdout:Unable to read consumer identity 2023-12-02T07:12:36.701 DEBUG:teuthology.orchestra.run.smithi067:> echo no | sudo yum reinstall kernel || true 2023-12-02T07:12:36.732 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:36.732 INFO:teuthology.orchestra.run.smithi106.stdout:Unable to read consumer identity 2023-12-02T07:12:36.827 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:00:01 ago on Sat 02 Dec 2023 07:12:35 AM UTC. 2023-12-02T07:12:36.868 INFO:teuthology.orchestra.run.smithi078.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T07:12:36.942 INFO:teuthology.orchestra.run.smithi078.stderr:Error: No packages marked for reinstall. 2023-12-02T07:12:36.989 DEBUG:teuthology.orchestra.run.smithi078:> sudo yum reinstall -y kernel || true 2023-12-02T07:12:36.995 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:00:01 ago on Sat 02 Dec 2023 07:12:35 AM UTC. 2023-12-02T07:12:37.038 INFO:teuthology.orchestra.run.smithi106.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T07:12:37.053 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:37.054 INFO:teuthology.orchestra.run.smithi067.stdout:Unable to read consumer identity 2023-12-02T07:12:37.088 INFO:teuthology.orchestra.run.smithi106.stderr:Error: No packages marked for reinstall. 2023-12-02T07:12:37.134 DEBUG:teuthology.orchestra.run.smithi106:> sudo yum reinstall -y kernel || true 2023-12-02T07:12:37.320 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:37.320 INFO:teuthology.orchestra.run.smithi078.stdout:Unable to read consumer identity 2023-12-02T07:12:37.334 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:00:02 ago on Sat 02 Dec 2023 07:12:35 AM UTC. 2023-12-02T07:12:37.388 INFO:teuthology.orchestra.run.smithi067.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T07:12:37.418 INFO:teuthology.orchestra.run.smithi067.stderr:Error: No packages marked for reinstall. 2023-12-02T07:12:37.464 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:37.464 INFO:teuthology.orchestra.run.smithi106.stdout:Unable to read consumer identity 2023-12-02T07:12:37.465 DEBUG:teuthology.orchestra.run.smithi067:> sudo yum reinstall -y kernel || true 2023-12-02T07:12:37.574 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:00:02 ago on Sat 02 Dec 2023 07:12:35 AM UTC. 2023-12-02T07:12:37.617 INFO:teuthology.orchestra.run.smithi078.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T07:12:37.640 INFO:teuthology.orchestra.run.smithi078.stderr:Error: No packages marked for reinstall. 2023-12-02T07:12:37.692 DEBUG:teuthology.orchestra.run.smithi078:> rpm -q kernel | sort -rV | head -n 1 2023-12-02T07:12:37.723 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:00:02 ago on Sat 02 Dec 2023 07:12:35 AM UTC. 2023-12-02T07:12:37.761 INFO:teuthology.orchestra.run.smithi106.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T07:12:37.773 INFO:teuthology.orchestra.run.smithi078.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:37.773 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:37.773 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-12-02T07:12:37.773 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2023-12-02T07:12:37.774 DEBUG:teuthology.orchestra.run.smithi078:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-02T07:12:37.795 INFO:teuthology.orchestra.run.smithi106.stderr:Error: No packages marked for reinstall. 2023-12-02T07:12:37.816 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:12:37.816 INFO:teuthology.orchestra.run.smithi067.stdout:Unable to read consumer identity 2023-12-02T07:12:37.845 DEBUG:teuthology.orchestra.run.smithi106:> rpm -q kernel | sort -rV | head -n 1 2023-12-02T07:12:37.848 INFO:teuthology.orchestra.run.smithi078.stdout:ttyS1 2023-12-02T07:12:37.859 DEBUG:teuthology.parallel:result is None 2023-12-02T07:12:37.925 INFO:teuthology.orchestra.run.smithi106.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:37.926 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:37.926 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-12-02T07:12:37.926 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2023-12-02T07:12:37.926 DEBUG:teuthology.orchestra.run.smithi106:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-02T07:12:37.951 INFO:teuthology.orchestra.run.smithi106.stdout:ttyS1 2023-12-02T07:12:37.970 DEBUG:teuthology.parallel:result is None 2023-12-02T07:12:38.087 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:00:03 ago on Sat 02 Dec 2023 07:12:35 AM UTC. 2023-12-02T07:12:38.131 INFO:teuthology.orchestra.run.smithi067.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2023-12-02T07:12:38.165 INFO:teuthology.orchestra.run.smithi067.stderr:Error: No packages marked for reinstall. 2023-12-02T07:12:38.212 DEBUG:teuthology.orchestra.run.smithi067:> rpm -q kernel | sort -rV | head -n 1 2023-12-02T07:12:38.295 INFO:teuthology.orchestra.run.smithi067.stdout:kernel-4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:38.295 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-372.9.1.el8.x86_64 2023-12-02T07:12:38.295 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2023-12-02T07:12:38.295 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2023-12-02T07:12:38.295 DEBUG:teuthology.orchestra.run.smithi067:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-12-02T07:12:38.331 INFO:teuthology.orchestra.run.smithi067.stdout:ttyS1 2023-12-02T07:12:38.345 DEBUG:teuthology.parallel:result is None 2023-12-02T07:12:38.346 INFO:teuthology.run_tasks:Running task internal.base... 2023-12-02T07:12:38.354 INFO:teuthology.task.internal:Creating test directory... 2023-12-02T07:12:38.354 DEBUG:teuthology.orchestra.run.smithi067:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-02T07:12:38.388 DEBUG:teuthology.orchestra.run.smithi078:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-02T07:12:38.390 DEBUG:teuthology.orchestra.run.smithi106:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-12-02T07:12:38.407 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2023-12-02T07:12:38.413 INFO:teuthology.run_tasks:Running task internal.archive... 2023-12-02T07:12:38.443 INFO:teuthology.task.internal:Creating archive directory... 2023-12-02T07:12:38.443 DEBUG:teuthology.orchestra.run.smithi067:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-02T07:12:38.446 DEBUG:teuthology.orchestra.run.smithi078:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-02T07:12:38.448 DEBUG:teuthology.orchestra.run.smithi106:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-12-02T07:12:38.492 INFO:teuthology.run_tasks:Running task internal.coredump... 2023-12-02T07:12:38.502 INFO:teuthology.task.internal:Enabling coredump saving... 2023-12-02T07:12:38.503 DEBUG:teuthology.orchestra.run.smithi067:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2023-12-02T07:12:38.504 DEBUG:teuthology.orchestra.run.smithi078:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2023-12-02T07:12:38.507 DEBUG:teuthology.orchestra.run.smithi106:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2023-12-02T07:12:38.534 INFO:teuthology.orchestra.run.smithi078.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T07:12:38.544 INFO:teuthology.orchestra.run.smithi078.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T07:12:38.546 INFO:teuthology.orchestra.run.smithi067.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T07:12:38.556 INFO:teuthology.orchestra.run.smithi067.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T07:12:38.564 INFO:teuthology.orchestra.run.smithi106.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T07:12:38.574 INFO:teuthology.orchestra.run.smithi106.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-12-02T07:12:38.575 INFO:teuthology.run_tasks:Running task internal.sudo... 2023-12-02T07:12:38.582 INFO:teuthology.task.internal:Configuring sudo... 2023-12-02T07:12:38.582 DEBUG:teuthology.orchestra.run.smithi067:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-02T07:12:38.584 DEBUG:teuthology.orchestra.run.smithi078:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-02T07:12:38.588 DEBUG:teuthology.orchestra.run.smithi106:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-12-02T07:12:38.642 INFO:teuthology.run_tasks:Running task internal.syslog... 2023-12-02T07:12:38.655 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2023-12-02T07:12:38.655 DEBUG:teuthology.orchestra.run.smithi067:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-02T07:12:38.658 DEBUG:teuthology.orchestra.run.smithi078:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-02T07:12:38.661 DEBUG:teuthology.orchestra.run.smithi106:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-12-02T07:12:38.699 DEBUG:teuthology.orchestra.run.smithi067:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T07:12:38.757 DEBUG:teuthology.orchestra.run.smithi067:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T07:12:38.816 DEBUG:teuthology.orchestra.run.smithi067:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T07:12:38.860 DEBUG:teuthology.orchestra.run.smithi067:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T07:12:38.902 DEBUG:teuthology.orchestra.run.smithi067:> set -ex 2023-12-02T07:12:38.902 DEBUG:teuthology.orchestra.run.smithi067:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-02T07:12:38.970 DEBUG:teuthology.orchestra.run.smithi078:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T07:12:39.008 DEBUG:teuthology.orchestra.run.smithi078:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T07:12:39.066 DEBUG:teuthology.orchestra.run.smithi078:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T07:12:39.150 DEBUG:teuthology.orchestra.run.smithi078:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T07:12:39.192 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2023-12-02T07:12:39.192 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-02T07:12:39.267 DEBUG:teuthology.orchestra.run.smithi106:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T07:12:39.308 DEBUG:teuthology.orchestra.run.smithi106:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-12-02T07:12:39.367 DEBUG:teuthology.orchestra.run.smithi106:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T07:12:39.450 DEBUG:teuthology.orchestra.run.smithi106:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-12-02T07:12:39.492 DEBUG:teuthology.orchestra.run.smithi106:> set -ex 2023-12-02T07:12:39.492 DEBUG:teuthology.orchestra.run.smithi106:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-12-02T07:12:39.559 DEBUG:teuthology.orchestra.run.smithi067:> sudo service rsyslog restart 2023-12-02T07:12:39.561 DEBUG:teuthology.orchestra.run.smithi078:> sudo service rsyslog restart 2023-12-02T07:12:39.566 DEBUG:teuthology.orchestra.run.smithi106:> sudo service rsyslog restart 2023-12-02T07:12:39.622 INFO:teuthology.orchestra.run.smithi078.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T07:12:39.626 INFO:teuthology.orchestra.run.smithi067.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T07:12:39.648 INFO:teuthology.orchestra.run.smithi106.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T07:12:40.107 INFO:teuthology.run_tasks:Running task internal.timer... 2023-12-02T07:12:40.114 INFO:teuthology.task.internal:Starting timer... 2023-12-02T07:12:40.114 INFO:teuthology.run_tasks:Running task pcp... 2023-12-02T07:12:40.144 INFO:teuthology.run_tasks:Running task selinux... 2023-12-02T07:12:40.167 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2023-12-02T07:12:40.168 DEBUG:teuthology.orchestra.run.smithi067:> sudo service auditd rotate 2023-12-02T07:12:40.232 INFO:teuthology.orchestra.run.smithi067.stdout:Rotating logs: 2023-12-02T07:12:40.234 DEBUG:teuthology.orchestra.run.smithi078:> sudo service auditd rotate 2023-12-02T07:12:40.295 INFO:teuthology.orchestra.run.smithi078.stdout:Rotating logs: 2023-12-02T07:12:40.297 DEBUG:teuthology.orchestra.run.smithi106:> sudo service auditd rotate 2023-12-02T07:12:40.364 INFO:teuthology.orchestra.run.smithi106.stdout:Rotating logs: 2023-12-02T07:12:40.366 DEBUG:teuthology.task.selinux:Getting current SELinux state 2023-12-02T07:12:40.367 DEBUG:teuthology.orchestra.run.smithi067:> /usr/sbin/getenforce 2023-12-02T07:12:40.393 INFO:teuthology.orchestra.run.smithi067.stdout:Permissive 2023-12-02T07:12:40.393 DEBUG:teuthology.orchestra.run.smithi078:> /usr/sbin/getenforce 2023-12-02T07:12:40.413 INFO:teuthology.orchestra.run.smithi078.stdout:Permissive 2023-12-02T07:12:40.414 DEBUG:teuthology.orchestra.run.smithi106:> /usr/sbin/getenforce 2023-12-02T07:12:40.443 INFO:teuthology.orchestra.run.smithi106.stdout:Permissive 2023-12-02T07:12:40.443 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi067.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi078.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi106.front.sepia.ceph.com': 'permissive'} 2023-12-02T07:12:40.443 DEBUG:teuthology.orchestra.run.smithi067:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-12-02T07:12:40.471 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:12:40.472 DEBUG:teuthology.orchestra.run.smithi078:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-12-02T07:12:40.499 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:12:40.500 DEBUG:teuthology.orchestra.run.smithi106:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-12-02T07:12:40.527 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:12:40.528 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2023-12-02T07:12:40.528 DEBUG:teuthology.orchestra.run.smithi067:> sudo /usr/sbin/setenforce permissive 2023-12-02T07:12:40.556 DEBUG:teuthology.orchestra.run.smithi078:> sudo /usr/sbin/setenforce permissive 2023-12-02T07:12:40.583 DEBUG:teuthology.orchestra.run.smithi106:> sudo /usr/sbin/setenforce permissive 2023-12-02T07:12:40.611 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2023-12-02T07:12:40.620 INFO:teuthology.repo_utils:/home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main was just updated or references a specific commit; assuming it is current 2023-12-02T07:12:40.620 INFO:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2023-12-02T07:12:40.639 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2023-12-02T07:12:40.640 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi067.front.sepia.ceph.com,smithi078.front.sepia.ceph.com,smithi106.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2023-12-02T07:21:48.438 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi067.front.sepia.ceph.com'), Remote(name='ubuntu@smithi078.front.sepia.ceph.com'), Remote(name='ubuntu@smithi106.front.sepia.ceph.com')] 2023-12-02T07:21:48.466 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi067.front.sepia.ceph.com' 2023-12-02T07:21:48.467 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi067.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T07:21:48.537 DEBUG:teuthology.orchestra.run.smithi067:> true 2023-12-02T07:21:48.604 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi067.front.sepia.ceph.com' 2023-12-02T07:21:48.604 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi078.front.sepia.ceph.com' 2023-12-02T07:21:48.605 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi078.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T07:21:48.677 DEBUG:teuthology.orchestra.run.smithi078:> true 2023-12-02T07:21:48.730 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi078.front.sepia.ceph.com' 2023-12-02T07:21:48.730 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi106.front.sepia.ceph.com' 2023-12-02T07:21:48.730 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi106.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-12-02T07:21:48.801 DEBUG:teuthology.orchestra.run.smithi106:> true 2023-12-02T07:21:48.874 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi106.front.sepia.ceph.com' 2023-12-02T07:21:48.874 INFO:teuthology.run_tasks:Running task clock... 2023-12-02T07:21:48.891 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2023-12-02T07:21:48.892 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-02T07:21:48.892 DEBUG:teuthology.orchestra.run.smithi067:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T07:21:48.894 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-02T07:21:48.894 DEBUG:teuthology.orchestra.run.smithi078:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T07:21:48.896 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-12-02T07:21:48.896 DEBUG:teuthology.orchestra.run.smithi106:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T07:21:48.927 INFO:teuthology.orchestra.run.smithi067.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-12-02T07:21:48.932 INFO:teuthology.orchestra.run.smithi078.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-12-02T07:21:48.944 INFO:teuthology.orchestra.run.smithi067.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-12-02T07:21:48.950 INFO:teuthology.orchestra.run.smithi078.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-12-02T07:21:48.952 INFO:teuthology.orchestra.run.smithi106.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-12-02T07:21:48.969 INFO:teuthology.orchestra.run.smithi106.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-12-02T07:21:49.034 INFO:teuthology.orchestra.run.smithi067.stderr:sudo: ntpd: command not found 2023-12-02T07:21:49.038 INFO:teuthology.orchestra.run.smithi078.stderr:sudo: ntpd: command not found 2023-12-02T07:21:49.039 INFO:teuthology.orchestra.run.smithi106.stderr:sudo: ntpd: command not found 2023-12-02T07:21:49.047 INFO:teuthology.orchestra.run.smithi067.stdout:506 Cannot talk to daemon 2023-12-02T07:21:49.052 INFO:teuthology.orchestra.run.smithi078.stdout:506 Cannot talk to daemon 2023-12-02T07:21:49.052 INFO:teuthology.orchestra.run.smithi106.stdout:506 Cannot talk to daemon 2023-12-02T07:21:49.063 INFO:teuthology.orchestra.run.smithi067.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-12-02T07:21:49.067 INFO:teuthology.orchestra.run.smithi106.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-12-02T07:21:49.067 INFO:teuthology.orchestra.run.smithi078.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-12-02T07:21:49.078 INFO:teuthology.orchestra.run.smithi067.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-12-02T07:21:49.081 INFO:teuthology.orchestra.run.smithi106.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-12-02T07:21:49.082 INFO:teuthology.orchestra.run.smithi078.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-12-02T07:21:49.148 INFO:teuthology.orchestra.run.smithi106.stderr:bash: ntpq: command not found 2023-12-02T07:21:49.150 INFO:teuthology.orchestra.run.smithi067.stderr:bash: ntpq: command not found 2023-12-02T07:21:49.151 INFO:teuthology.orchestra.run.smithi106.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T07:21:49.152 INFO:teuthology.orchestra.run.smithi106.stdout:=============================================================================== 2023-12-02T07:21:49.152 INFO:teuthology.orchestra.run.smithi106.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.152 INFO:teuthology.orchestra.run.smithi106.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.152 INFO:teuthology.orchestra.run.smithi106.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.152 INFO:teuthology.orchestra.run.smithi106.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.153 INFO:teuthology.orchestra.run.smithi067.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T07:21:49.153 INFO:teuthology.orchestra.run.smithi067.stdout:=============================================================================== 2023-12-02T07:21:49.153 INFO:teuthology.orchestra.run.smithi067.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.153 INFO:teuthology.orchestra.run.smithi067.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.153 INFO:teuthology.orchestra.run.smithi067.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.153 INFO:teuthology.orchestra.run.smithi067.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.154 INFO:teuthology.orchestra.run.smithi078.stderr:bash: ntpq: command not found 2023-12-02T07:21:49.157 INFO:teuthology.orchestra.run.smithi078.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T07:21:49.157 INFO:teuthology.orchestra.run.smithi078.stdout:=============================================================================== 2023-12-02T07:21:49.158 INFO:teuthology.orchestra.run.smithi078.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.158 INFO:teuthology.orchestra.run.smithi078.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.158 INFO:teuthology.orchestra.run.smithi078.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.158 INFO:teuthology.orchestra.run.smithi078.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:21:49.159 INFO:teuthology.run_tasks:Running task pexec... 2023-12-02T07:21:49.169 INFO:teuthology.task.pexec:Executing custom commands... 2023-12-02T07:21:49.169 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi067.front.sepia.ceph.com 2023-12-02T07:21:49.169 DEBUG:teuthology.orchestra.run.smithi067:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-12-02T07:21:49.170 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi078.front.sepia.ceph.com 2023-12-02T07:21:49.170 DEBUG:teuthology.orchestra.run.smithi078:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-12-02T07:21:49.170 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi106.front.sepia.ceph.com 2023-12-02T07:21:49.170 DEBUG:teuthology.orchestra.run.smithi106:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-12-02T07:21:49.566 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:21:49.572 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:21:49.586 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:21:50.393 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:01:43 ago on Sat 02 Dec 2023 07:20:06 AM UTC. 2023-12-02T07:21:50.398 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:01:40 ago on Sat 02 Dec 2023 07:20:09 AM UTC. 2023-12-02T07:21:50.445 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:01:26 ago on Sat 02 Dec 2023 07:20:23 AM UTC. 2023-12-02T07:21:52.115 INFO:teuthology.orchestra.run.smithi106.stdout:Dependencies resolved. 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout:================================================================================ 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout: Package Architecture Version Repository Size 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout:================================================================================ 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout:Resetting modules: 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout: container-tools 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction Summary 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout:================================================================================ 2023-12-02T07:21:52.116 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:21:52.123 INFO:teuthology.orchestra.run.smithi078.stdout:Dependencies resolved. 2023-12-02T07:21:52.124 INFO:teuthology.orchestra.run.smithi078.stdout:================================================================================ 2023-12-02T07:21:52.124 INFO:teuthology.orchestra.run.smithi078.stdout: Package Architecture Version Repository Size 2023-12-02T07:21:52.124 INFO:teuthology.orchestra.run.smithi078.stdout:================================================================================ 2023-12-02T07:21:52.125 INFO:teuthology.orchestra.run.smithi078.stdout:Resetting modules: 2023-12-02T07:21:52.125 INFO:teuthology.orchestra.run.smithi078.stdout: container-tools 2023-12-02T07:21:52.125 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:21:52.125 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction Summary 2023-12-02T07:21:52.125 INFO:teuthology.orchestra.run.smithi078.stdout:================================================================================ 2023-12-02T07:21:52.125 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:21:52.426 INFO:teuthology.orchestra.run.smithi067.stdout:Dependencies resolved. 2023-12-02T07:21:52.427 INFO:teuthology.orchestra.run.smithi067.stdout:================================================================================ 2023-12-02T07:21:52.428 INFO:teuthology.orchestra.run.smithi067.stdout: Package Architecture Version Repository Size 2023-12-02T07:21:52.428 INFO:teuthology.orchestra.run.smithi067.stdout:================================================================================ 2023-12-02T07:21:52.428 INFO:teuthology.orchestra.run.smithi067.stdout:Resetting modules: 2023-12-02T07:21:52.428 INFO:teuthology.orchestra.run.smithi067.stdout: container-tools 2023-12-02T07:21:52.428 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:21:52.429 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction Summary 2023-12-02T07:21:52.429 INFO:teuthology.orchestra.run.smithi067.stdout:================================================================================ 2023-12-02T07:21:52.429 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:21:53.110 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:01:46 ago on Sat 02 Dec 2023 07:20:06 AM UTC. 2023-12-02T07:21:53.115 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:01:43 ago on Sat 02 Dec 2023 07:20:09 AM UTC. 2023-12-02T07:21:53.438 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:01:29 ago on Sat 02 Dec 2023 07:20:23 AM UTC. 2023-12-02T07:21:55.758 INFO:teuthology.orchestra.run.smithi106.stdout:Complete! 2023-12-02T07:21:55.891 INFO:teuthology.orchestra.run.smithi078.stdout:Complete! 2023-12-02T07:21:56.144 INFO:teuthology.orchestra.run.smithi067.stdout:Complete! 2023-12-02T07:21:56.215 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:21:56.360 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:21:56.628 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:21:57.010 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:01:50 ago on Sat 02 Dec 2023 07:20:06 AM UTC. 2023-12-02T07:21:57.122 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:01:47 ago on Sat 02 Dec 2023 07:20:09 AM UTC. 2023-12-02T07:21:57.454 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:01:33 ago on Sat 02 Dec 2023 07:20:23 AM UTC. 2023-12-02T07:21:58.730 INFO:teuthology.orchestra.run.smithi106.stdout:Dependencies resolved. 2023-12-02T07:21:58.823 INFO:teuthology.orchestra.run.smithi106.stdout:========================================================================================================================== 2023-12-02T07:21:58.823 INFO:teuthology.orchestra.run.smithi106.stdout: Package Arch Version Repository Size 2023-12-02T07:21:58.823 INFO:teuthology.orchestra.run.smithi106.stdout:========================================================================================================================== 2023-12-02T07:21:58.823 INFO:teuthology.orchestra.run.smithi106.stdout:Installing group/module packages: 2023-12-02T07:21:58.823 INFO:teuthology.orchestra.run.smithi106.stdout: buildah x86_64 1.19.9-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.8 M 2023-12-02T07:21:58.823 INFO:teuthology.orchestra.run.smithi106.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: skopeo x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.4 M 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: toolbox x86_64 0.0.99.3-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.2 M 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout:Installing dependencies: 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout:Downgrading: 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: conmon x86_64 2:2.0.26-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: container-selinux noarch 2:2.178.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 53 k 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 19 M 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: containers-common x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 91 k 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 72 k 2023-12-02T07:21:58.824 INFO:teuthology.orchestra.run.smithi106.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout: podman-catatonit x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 322 k 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout: runc x86_64 1.0.0-73.rc95.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.9 M 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout:Installing module profiles: 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout: container-tools/common 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout:Enabling module streams: 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout: container-tools 3.0 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction Summary 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout:========================================================================================================================== 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout:Install 7 Packages 2023-12-02T07:21:58.825 INFO:teuthology.orchestra.run.smithi106.stdout:Downgrade 12 Packages 2023-12-02T07:21:58.826 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:21:58.826 INFO:teuthology.orchestra.run.smithi106.stdout:Total download size: 51 M 2023-12-02T07:21:58.826 INFO:teuthology.orchestra.run.smithi106.stdout:Downloading Packages: 2023-12-02T07:21:58.921 INFO:teuthology.orchestra.run.smithi106.stdout:(1/19): containers-common-1.2.4-1.module+el8.6. 974 kB/s | 91 kB 00:00 2023-12-02T07:21:58.942 INFO:teuthology.orchestra.run.smithi106.stdout:(2/19): container-selinux-2.178.0-2.module+el8. 459 kB/s | 53 kB 00:00 2023-12-02T07:21:58.958 INFO:teuthology.orchestra.run.smithi078.stdout:Dependencies resolved. 2023-12-02T07:21:58.959 INFO:teuthology.orchestra.run.smithi106.stdout:(3/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 389 kB/s | 51 kB 00:00 2023-12-02T07:21:58.993 INFO:teuthology.orchestra.run.smithi106.stdout:(4/19): criu-3.15-1.module+el8.6.0+14874+644362 6.9 MB/s | 511 kB 00:00 2023-12-02T07:21:59.010 INFO:teuthology.orchestra.run.smithi106.stdout:(5/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 1.3 MB/s | 69 kB 00:00 2023-12-02T07:21:59.035 INFO:teuthology.orchestra.run.smithi106.stdout:(6/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 1.7 MB/s | 72 kB 00:00 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout:========================================================================================================================== 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout: Package Arch Version Repository Size 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout:========================================================================================================================== 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout:Installing group/module packages: 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout: buildah x86_64 1.19.9-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.8 M 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout: skopeo x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.4 M 2023-12-02T07:21:59.049 INFO:teuthology.orchestra.run.smithi078.stdout: toolbox x86_64 0.0.99.3-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.2 M 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout:Installing dependencies: 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout:Downgrading: 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: conmon x86_64 2:2.0.26-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: container-selinux noarch 2:2.178.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 53 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 19 M 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: containers-common x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 91 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 72 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: podman-catatonit x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 322 k 2023-12-02T07:21:59.050 INFO:teuthology.orchestra.run.smithi078.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout: runc x86_64 1.0.0-73.rc95.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.9 M 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout:Installing module profiles: 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout: container-tools/common 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout:Enabling module streams: 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout: container-tools 3.0 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction Summary 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout:========================================================================================================================== 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout:Install 7 Packages 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout:Downgrade 12 Packages 2023-12-02T07:21:59.051 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:21:59.052 INFO:teuthology.orchestra.run.smithi078.stdout:Total download size: 51 M 2023-12-02T07:21:59.052 INFO:teuthology.orchestra.run.smithi078.stdout:Downloading Packages: 2023-12-02T07:21:59.077 INFO:teuthology.orchestra.run.smithi106.stdout:(7/19): podman-docker-3.0.1-9.module+el8.6.0+14 1.3 MB/s | 56 kB 00:00 2023-12-02T07:21:59.122 INFO:teuthology.orchestra.run.smithi078.stdout:(1/19): containers-common-1.2.4-1.module+el8.6. 1.3 MB/s | 91 kB 00:00 2023-12-02T07:21:59.144 INFO:teuthology.orchestra.run.smithi106.stdout:(8/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 16 MB/s | 2.9 MB 00:00 2023-12-02T07:21:59.147 INFO:teuthology.orchestra.run.smithi078.stdout:(2/19): container-selinux-2.178.0-2.module+el8. 563 kB/s | 53 kB 00:00 2023-12-02T07:21:59.169 INFO:teuthology.orchestra.run.smithi106.stdout:(9/19): conmon-2.0.26-1.module+el8.6.0+14874+64 555 kB/s | 51 kB 00:00 2023-12-02T07:21:59.172 INFO:teuthology.orchestra.run.smithi078.stdout:(3/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 431 kB/s | 51 kB 00:00 2023-12-02T07:21:59.205 INFO:teuthology.orchestra.run.smithi078.stdout:(4/19): criu-3.15-1.module+el8.6.0+14874+644362 6.0 MB/s | 511 kB 00:00 2023-12-02T07:21:59.220 INFO:teuthology.orchestra.run.smithi106.stdout:(10/19): podman-catatonit-3.0.1-9.module+el8.6. 6.3 MB/s | 322 kB 00:00 2023-12-02T07:21:59.222 INFO:teuthology.orchestra.run.smithi078.stdout:(5/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 1.3 MB/s | 69 kB 00:00 2023-12-02T07:21:59.248 INFO:teuthology.orchestra.run.smithi078.stdout:(6/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 1.7 MB/s | 72 kB 00:00 2023-12-02T07:21:59.261 INFO:teuthology.orchestra.run.smithi106.stdout:(11/19): yajl-2.1.0-10.el8.x86_64.rpm 986 kB/s | 41 kB 00:00 2023-12-02T07:21:59.290 INFO:teuthology.orchestra.run.smithi078.stdout:(7/19): podman-docker-3.0.1-9.module+el8.6.0+14 1.3 MB/s | 56 kB 00:00 2023-12-02T07:21:59.348 INFO:teuthology.orchestra.run.smithi078.stdout:(8/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 16 MB/s | 2.9 MB 00:00 2023-12-02T07:21:59.353 INFO:teuthology.orchestra.run.smithi106.stdout:(12/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 24 MB/s | 2.2 MB 00:00 2023-12-02T07:21:59.374 INFO:teuthology.orchestra.run.smithi078.stdout:(9/19): conmon-2.0.26-1.module+el8.6.0+14874+64 608 kB/s | 51 kB 00:00 2023-12-02T07:21:59.400 INFO:teuthology.orchestra.run.smithi067.stdout:Dependencies resolved. 2023-12-02T07:21:59.416 INFO:teuthology.orchestra.run.smithi078.stdout:(10/19): podman-catatonit-3.0.1-9.module+el8.6. 7.5 MB/s | 322 kB 00:00 2023-12-02T07:21:59.458 INFO:teuthology.orchestra.run.smithi078.stdout:(11/19): yajl-2.1.0-10.el8.x86_64.rpm 981 kB/s | 41 kB 00:00 2023-12-02T07:21:59.471 INFO:teuthology.orchestra.run.smithi106.stdout:(13/19): podman-3.0.1-9.module+el8.6.0+14874+64 24 MB/s | 11 MB 00:00 2023-12-02T07:21:59.501 INFO:teuthology.orchestra.run.smithi067.stdout:========================================================================================================================== 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: Package Arch Version Repository Size 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout:========================================================================================================================== 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout:Installing group/module packages: 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: buildah x86_64 1.19.9-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.8 M 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: cockpit-podman noarch 29-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 1.1 M 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: crun x86_64 0.18-3.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 185 k 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: skopeo x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 6.4 M 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: toolbox x86_64 0.0.99.3-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.2 M 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: udica noarch 0.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout:Installing dependencies: 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout:Downgrading: 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: conmon x86_64 2:2.0.26-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:59.502 INFO:teuthology.orchestra.run.smithi067.stdout: container-selinux noarch 2:2.178.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 53 k 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 19 M 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: containers-common x86_64 1:1.2.4-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 91 k 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: criu x86_64 3.15-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 511 k 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 72 k 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: libslirp x86_64 4.3.1-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 69 k 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: podman x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 11 M 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: podman-catatonit x86_64 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 322 k 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: podman-docker noarch 3.0.1-9.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 56 k 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: runc x86_64 1.0.0-73.rc95.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 2.9 M 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: slirp4netns x86_64 1.1.8-1.module+el8.6.0+14874+64436299 rhel-8-for-x86_64-appstream-rpms 51 k 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout:Installing module profiles: 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: container-tools/common 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout:Enabling module streams: 2023-12-02T07:21:59.503 INFO:teuthology.orchestra.run.smithi067.stdout: container-tools 3.0 2023-12-02T07:21:59.504 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:21:59.504 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction Summary 2023-12-02T07:21:59.504 INFO:teuthology.orchestra.run.smithi067.stdout:========================================================================================================================== 2023-12-02T07:21:59.504 INFO:teuthology.orchestra.run.smithi067.stdout:Install 7 Packages 2023-12-02T07:21:59.504 INFO:teuthology.orchestra.run.smithi067.stdout:Downgrade 12 Packages 2023-12-02T07:21:59.504 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:21:59.504 INFO:teuthology.orchestra.run.smithi067.stdout:Total download size: 51 M 2023-12-02T07:21:59.504 INFO:teuthology.orchestra.run.smithi067.stdout:Downloading Packages: 2023-12-02T07:21:59.558 INFO:teuthology.orchestra.run.smithi078.stdout:(12/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 22 MB/s | 2.2 MB 00:00 2023-12-02T07:21:59.582 INFO:teuthology.orchestra.run.smithi067.stdout:(1/19): slirp4netns-1.1.8-1.module+el8.6.0+1487 678 kB/s | 51 kB 00:00 2023-12-02T07:21:59.607 INFO:teuthology.orchestra.run.smithi067.stdout:(2/19): container-selinux-2.178.0-2.module+el8. 524 kB/s | 53 kB 00:00 2023-12-02T07:21:59.629 INFO:teuthology.orchestra.run.smithi106.stdout:(14/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 23 MB/s | 6.4 MB 00:00 2023-12-02T07:21:59.632 INFO:teuthology.orchestra.run.smithi067.stdout:(3/19): containers-common-1.2.4-1.module+el8.6. 720 kB/s | 91 kB 00:00 2023-12-02T07:21:59.658 INFO:teuthology.orchestra.run.smithi067.stdout:(4/19): libslirp-4.3.1-1.module+el8.6.0+14874+6 1.3 MB/s | 69 kB 00:00 2023-12-02T07:21:59.691 INFO:teuthology.orchestra.run.smithi067.stdout:(5/19): criu-3.15-1.module+el8.6.0+14874+644362 4.6 MB/s | 511 kB 00:00 2023-12-02T07:21:59.692 INFO:teuthology.orchestra.run.smithi078.stdout:(13/19): podman-3.0.1-9.module+el8.6.0+14874+64 23 MB/s | 11 MB 00:00 2023-12-02T07:21:59.716 INFO:teuthology.orchestra.run.smithi067.stdout:(6/19): fuse-overlayfs-1.4.0-2.module+el8.6.0+1 1.2 MB/s | 72 kB 00:00 2023-12-02T07:21:59.730 INFO:teuthology.orchestra.run.smithi106.stdout:(15/19): buildah-1.19.9-3.module+el8.6.0+14874+ 26 MB/s | 6.8 MB 00:00 2023-12-02T07:21:59.763 INFO:teuthology.orchestra.run.smithi106.stdout:(16/19): cockpit-podman-29-2.module+el8.6.0+148 8.0 MB/s | 1.1 MB 00:00 2023-12-02T07:21:59.791 INFO:teuthology.orchestra.run.smithi067.stdout:(7/19): podman-docker-3.0.1-9.module+el8.6.0+14 746 kB/s | 56 kB 00:00 2023-12-02T07:21:59.805 INFO:teuthology.orchestra.run.smithi106.stdout:(17/19): crun-0.18-3.module+el8.6.0+14874+64436 2.4 MB/s | 185 kB 00:00 2023-12-02T07:21:59.825 INFO:teuthology.orchestra.run.smithi067.stdout:(8/19): conmon-2.0.26-1.module+el8.6.0+14874+64 1.5 MB/s | 51 kB 00:00 2023-12-02T07:21:59.830 INFO:teuthology.orchestra.run.smithi106.stdout:(18/19): udica-0.2.4-1.module+el8.6.0+14874+644 756 kB/s | 51 kB 00:00 2023-12-02T07:21:59.859 INFO:teuthology.orchestra.run.smithi078.stdout:(14/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 21 MB/s | 6.4 MB 00:00 2023-12-02T07:21:59.875 INFO:teuthology.orchestra.run.smithi067.stdout:(9/19): runc-1.0.0-73.rc95.module+el8.6.0+14874 12 MB/s | 2.9 MB 00:00 2023-12-02T07:21:59.918 INFO:teuthology.orchestra.run.smithi067.stdout:(10/19): podman-catatonit-3.0.1-9.module+el8.6. 7.5 MB/s | 322 kB 00:00 2023-12-02T07:21:59.951 INFO:teuthology.orchestra.run.smithi067.stdout:(11/19): yajl-2.1.0-10.el8.x86_64.rpm 1.2 MB/s | 41 kB 00:00 2023-12-02T07:21:59.959 INFO:teuthology.orchestra.run.smithi078.stdout:(15/19): buildah-1.19.9-3.module+el8.6.0+14874+ 25 MB/s | 6.8 MB 00:00 2023-12-02T07:21:59.993 INFO:teuthology.orchestra.run.smithi078.stdout:(16/19): cockpit-podman-29-2.module+el8.6.0+148 8.0 MB/s | 1.1 MB 00:00 2023-12-02T07:22:00.006 INFO:teuthology.orchestra.run.smithi106.stdout:(19/19): containernetworking-plugins-0.9.1-1.mo 22 MB/s | 19 MB 00:00 2023-12-02T07:22:00.006 INFO:teuthology.orchestra.run.smithi106.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:22:00.006 INFO:teuthology.orchestra.run.smithi106.stdout:Total 43 MB/s | 51 MB 00:01 2023-12-02T07:22:00.043 INFO:teuthology.orchestra.run.smithi078.stdout:(17/19): crun-0.18-3.module+el8.6.0+14874+64436 2.2 MB/s | 185 kB 00:00 2023-12-02T07:22:00.051 INFO:teuthology.orchestra.run.smithi067.stdout:(12/19): toolbox-0.0.99.3-1.module+el8.6.0+1487 22 MB/s | 2.2 MB 00:00 2023-12-02T07:22:00.059 INFO:teuthology.orchestra.run.smithi078.stdout:(18/19): udica-0.2.4-1.module+el8.6.0+14874+644 758 kB/s | 51 kB 00:00 2023-12-02T07:22:00.233 INFO:teuthology.orchestra.run.smithi067.stdout:(13/19): podman-3.0.1-9.module+el8.6.0+14874+64 20 MB/s | 11 MB 00:00 2023-12-02T07:22:00.251 INFO:teuthology.orchestra.run.smithi078.stdout:(19/19): containernetworking-plugins-0.9.1-1.mo 21 MB/s | 19 MB 00:00 2023-12-02T07:22:00.252 INFO:teuthology.orchestra.run.smithi078.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:22:00.252 INFO:teuthology.orchestra.run.smithi078.stdout:Total 42 MB/s | 51 MB 00:01 2023-12-02T07:22:00.393 INFO:teuthology.orchestra.run.smithi067.stdout:(14/19): skopeo-1.2.4-1.module+el8.6.0+14874+64 19 MB/s | 6.4 MB 00:00 2023-12-02T07:22:00.477 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction check 2023-12-02T07:22:00.494 INFO:teuthology.orchestra.run.smithi067.stdout:(15/19): cockpit-podman-29-2.module+el8.6.0+148 11 MB/s | 1.1 MB 00:00 2023-12-02T07:22:00.519 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction check succeeded. 2023-12-02T07:22:00.519 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction test 2023-12-02T07:22:00.536 INFO:teuthology.orchestra.run.smithi067.stdout:(16/19): crun-0.18-3.module+el8.6.0+14874+64436 4.4 MB/s | 185 kB 00:00 2023-12-02T07:22:00.628 INFO:teuthology.orchestra.run.smithi067.stdout:(17/19): buildah-1.19.9-3.module+el8.6.0+14874+ 17 MB/s | 6.8 MB 00:00 2023-12-02T07:22:00.653 INFO:teuthology.orchestra.run.smithi067.stdout:(18/19): udica-0.2.4-1.module+el8.6.0+14874+644 432 kB/s | 51 kB 00:00 2023-12-02T07:22:00.732 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction check 2023-12-02T07:22:00.775 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction check succeeded. 2023-12-02T07:22:00.775 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction test 2023-12-02T07:22:00.845 INFO:teuthology.orchestra.run.smithi067.stdout:(19/19): containernetworking-plugins-0.9.1-1.mo 19 MB/s | 19 MB 00:01 2023-12-02T07:22:00.845 INFO:teuthology.orchestra.run.smithi067.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:22:00.846 INFO:teuthology.orchestra.run.smithi067.stdout:Total 38 MB/s | 51 MB 00:01 2023-12-02T07:22:00.939 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction test succeeded. 2023-12-02T07:22:00.943 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction 2023-12-02T07:22:01.213 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction test succeeded. 2023-12-02T07:22:01.217 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction 2023-12-02T07:22:01.337 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction check 2023-12-02T07:22:01.383 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction check succeeded. 2023-12-02T07:22:01.383 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction test 2023-12-02T07:22:01.839 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction test succeeded. 2023-12-02T07:22:01.845 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction 2023-12-02T07:22:02.160 INFO:teuthology.orchestra.run.smithi106.stdout: Preparing : 1/1 2023-12-02T07:22:02.202 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-12-02T07:22:02.357 INFO:teuthology.orchestra.run.smithi078.stdout: Preparing : 1/1 2023-12-02T07:22:02.409 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-12-02T07:22:02.416 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T07:22:02.425 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T07:22:02.448 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:02.612 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T07:22:02.621 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T07:22:02.637 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:02.666 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:02.804 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:03.118 INFO:teuthology.orchestra.run.smithi067.stdout: Preparing : 1/1 2023-12-02T07:22:03.166 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299 1/1 2023-12-02T07:22:03.357 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T07:22:03.366 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 1/31 2023-12-02T07:22:03.388 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:03.573 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:19.743 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:19.785 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:21.524 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-12-02T07:22:21.536 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 2/31 2023-12-02T07:22:21.555 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-12-02T07:22:21.745 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-12-02T07:22:21.815 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-12-02T07:22:21.965 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-12-02T07:22:22.008 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-12-02T07:22:22.161 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-12-02T07:22:22.208 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-12-02T07:22:22.402 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-12-02T07:22:22.403 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-12-02T07:22:22.403 INFO:teuthology.orchestra.run.smithi078.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-12-02T07:22:22.403 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:22:22.405 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-12-02T07:22:22.405 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-12-02T07:22:22.405 INFO:teuthology.orchestra.run.smithi106.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-12-02T07:22:22.406 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:22:23.204 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-12-02T07:22:23.213 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-12-02T07:22:23.414 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-12-02T07:22:23.417 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : yajl-2.1.0-10.el8.x86_64 3/31 2023-12-02T07:22:23.443 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-12-02T07:22:23.666 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.6.0 4/31 2023-12-02T07:22:23.900 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 5/31 2023-12-02T07:22:24.094 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 6/31 2023-12-02T07:22:24.441 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 7/31 2023-12-02T07:22:24.442 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 8/31 2023-12-02T07:22:24.442 INFO:teuthology.orchestra.run.smithi067.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2023-12-02T07:22:24.442 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:22:24.870 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-12-02T07:22:24.891 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-12-02T07:22:25.141 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-12-02T07:22:25.203 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-12-02T07:22:25.408 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 9/31 2023-12-02T07:22:25.521 INFO:teuthology.orchestra.run.smithi106.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-12-02T07:22:25.567 INFO:teuthology.orchestra.run.smithi078.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-12-02T07:22:25.614 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 10/31 2023-12-02T07:22:25.809 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-12-02T07:22:25.893 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-12-02T07:22:26.529 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-12-02T07:22:26.627 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-12-02T07:22:27.235 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 11/31 2023-12-02T07:22:27.268 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-12-02T07:22:27.385 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-12-02T07:22:27.520 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-12-02T07:22:27.600 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-12-02T07:22:27.612 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 12/31 2023-12-02T07:22:27.770 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-12-02T07:22:27.817 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-12-02T07:22:27.963 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-12-02T07:22:28.017 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-12-02T07:22:28.027 INFO:teuthology.orchestra.run.smithi067.stdout: Downgrading : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 13/31 2023-12-02T07:22:28.086 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-12-02T07:22:28.086 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T07:22:28.132 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-12-02T07:22:28.132 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T07:22:28.350 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 14/31 2023-12-02T07:22:28.389 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T07:22:28.490 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T07:22:28.572 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-12-02T07:22:28.572 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T07:22:28.664 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-12-02T07:22:28.664 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T07:22:28.755 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T07:22:28.852 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T07:22:28.888 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T07:22:28.984 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T07:22:29.031 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-12-02T07:22:29.140 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 15/31 2023-12-02T07:22:29.152 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-12-02T07:22:29.180 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-12-02T07:22:29.343 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-12-02T07:22:29.397 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-12-02T07:22:29.514 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-12-02T07:22:29.521 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-12-02T07:22:29.643 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-12-02T07:22:29.663 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-12-02T07:22:29.768 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-12-02T07:22:29.808 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-12-02T07:22:29.808 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:29.927 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-12-02T07:22:29.928 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:29.939 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 16/31 2023-12-02T07:22:29.979 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:30.101 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:30.204 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 17/31 2023-12-02T07:22:30.421 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 18/31 2023-12-02T07:22:30.497 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-12-02T07:22:30.629 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 19/31 2023-12-02T07:22:30.642 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-12-02T07:22:30.736 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 20/31 2023-12-02T07:22:30.737 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T07:22:30.866 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-12-02T07:22:30.867 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T07:22:30.868 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-12-02T07:22:30.869 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-12-02T07:22:30.869 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-12-02T07:22:30.870 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-12-02T07:22:30.870 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-12-02T07:22:30.870 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-12-02T07:22:31.036 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:31.036 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-12-02T07:22:31.036 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-12-02T07:22:31.037 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T07:22:31.038 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-12-02T07:22:31.039 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-12-02T07:22:31.039 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-12-02T07:22:31.039 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-12-02T07:22:31.039 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-12-02T07:22:31.039 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-12-02T07:22:31.087 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 21/31 2023-12-02T07:22:31.445 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : containers-common-2:1-27.module+el8.6.0+14877+f643 22/31 2023-12-02T07:22:31.445 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T07:22:31.605 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: container-selinux-2:2.179.1-1.module+el8.6.0+14877 23/31 2023-12-02T07:22:31.771 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T07:22:31.955 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 25/31 2023-12-02T07:22:32.138 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 26/31 2023-12-02T07:22:32.294 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 27/31 2023-12-02T07:22:32.303 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-12-02T07:22:32.303 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:02:25 ago on Sat 02 Dec 2023 07:20:06 AM UTC. 2023-12-02T07:22:32.438 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 28/31 2023-12-02T07:22:32.470 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-12-02T07:22:32.471 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:02:22 ago on Sat 02 Dec 2023 07:20:09 AM UTC. 2023-12-02T07:22:32.562 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 29/31 2023-12-02T07:22:32.750 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 30/31 2023-12-02T07:22:32.750 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:32.945 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:33.477 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: container-selinux-2:2.178.0-2.module+el8.6.0+14874 31/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: containernetworking-plugins-1:1.0.1-2.module+el8.6 31/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : containers-common-1:1.2.4-1.module+el8.6.0+14874+6 1/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : containers-common-2:1-27.module+el8.6.0+14877+f643 2/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : container-selinux-2:2.178.0-2.module+el8.6.0+14874 3/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : container-selinux-2:2.179.1-1.module+el8.6.0+14877 4/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299. 5/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : slirp4netns-1.1.8-2.module+el8.6.0+14877+f643d2d6. 6/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 7/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : criu-3.15-3.module+el8.6.0+14877+f643d2d6.x86_64 8/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86 9/31 2023-12-02T07:22:33.946 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : libslirp-4.4.0-1.module+el8.6.0+14877+f643d2d6.x86 10/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x 11/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : runc-1:1.0.3-2.module+el8.6.0+14877+f643d2d6.x86_6 12/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+644362 13/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : fuse-overlayfs-1.8.2-1.module+el8.6.0+14877+f643d2 14/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_6 15/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : podman-2:4.1.1-7.module+el8.6.0+16889+9f154fa9.x86 16/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : podman-docker-3.0.1-9.module+el8.6.0+14874+6443629 17/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : podman-docker-2:4.1.1-7.module+el8.6.0+16889+9f154 18/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x8 19/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : conmon-2:2.1.0-1.module+el8.6.0+14877+f643d2d6.x86 20/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.6.0 21/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : containernetworking-plugins-1:1.0.1-2.module+el8.6 22/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : podman-catatonit-3.0.1-9.module+el8.6.0+14874+6443 23/31 2023-12-02T07:22:33.947 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : podman-catatonit-2:4.1.1-7.module+el8.6.0+16889+9f 24/31 2023-12-02T07:22:33.948 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 25/31 2023-12-02T07:22:33.948 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x 26/31 2023-12-02T07:22:33.948 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86 27/31 2023-12-02T07:22:33.948 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86 28/31 2023-12-02T07:22:33.948 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : cockpit-podman-29-2.module+el8.6.0+14874+64436299. 29/31 2023-12-02T07:22:33.948 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 30/31 2023-12-02T07:22:34.870 INFO:teuthology.orchestra.run.smithi106.stdout:Installed products updated. 2023-12-02T07:22:35.036 INFO:teuthology.orchestra.run.smithi078.stdout:Installed products updated. 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout:Downgraded: 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:35.064 INFO:teuthology.orchestra.run.smithi106.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout:Installed: 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: yajl-2.1.0-10.el8.x86_64 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:22:35.065 INFO:teuthology.orchestra.run.smithi106.stdout:Complete! 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout:Downgraded: 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.234 INFO:teuthology.orchestra.run.smithi078.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout:Installed: 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: yajl-2.1.0-10.el8.x86_64 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:22:35.235 INFO:teuthology.orchestra.run.smithi078.stdout:Complete! 2023-12-02T07:22:35.266 DEBUG:teuthology.parallel:result is None 2023-12-02T07:22:35.434 DEBUG:teuthology.parallel:result is None 2023-12-02T07:22:35.462 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 31/31 2023-12-02T07:22:35.462 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:02:11 ago on Sat 02 Dec 2023 07:20:23 AM UTC. 2023-12-02T07:22:37.995 INFO:teuthology.orchestra.run.smithi067.stdout:Installed products updated. 2023-12-02T07:22:38.208 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:22:38.208 INFO:teuthology.orchestra.run.smithi067.stdout:Downgraded: 2023-12-02T07:22:38.208 INFO:teuthology.orchestra.run.smithi067.stdout: conmon-2:2.0.26-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.208 INFO:teuthology.orchestra.run.smithi067.stdout: container-selinux-2:2.178.0-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:38.208 INFO:teuthology.orchestra.run.smithi067.stdout: containernetworking-plugins-0.9.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.208 INFO:teuthology.orchestra.run.smithi067.stdout: containers-common-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: criu-3.15-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: fuse-overlayfs-1.4.0-2.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: libslirp-4.3.1-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: podman-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: podman-catatonit-3.0.1-9.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: podman-docker-3.0.1-9.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: runc-1.0.0-73.rc95.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: slirp4netns-1.1.8-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout:Installed: 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: buildah-1.19.9-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: cockpit-podman-29-2.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: crun-0.18-3.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: skopeo-1:1.2.4-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: toolbox-0.0.99.3-1.module+el8.6.0+14874+64436299.x86_64 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: udica-0.2.4-1.module+el8.6.0+14874+64436299.noarch 2023-12-02T07:22:38.209 INFO:teuthology.orchestra.run.smithi067.stdout: yajl-2.1.0-10.el8.x86_64 2023-12-02T07:22:38.210 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:22:38.210 INFO:teuthology.orchestra.run.smithi067.stdout:Complete! 2023-12-02T07:22:38.434 DEBUG:teuthology.parallel:result is None 2023-12-02T07:22:38.434 INFO:teuthology.run_tasks:Running task install... 2023-12-02T07:22:38.443 DEBUG:teuthology.task.install:project ceph 2023-12-02T07:22:38.443 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7'}} 2023-12-02T07:22:38.443 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7'} 2023-12-02T07:22:38.443 INFO:teuthology.task.install:Using flavor: default 2023-12-02T07:22:38.450 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2023-12-02T07:22:38.450 INFO:teuthology.task.install:extra packages: [] 2023-12-02T07:22:38.450 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7', 'tag': None, 'wait_for_package': False} 2023-12-02T07:22:38.451 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=bed7681480ccb0192b91a35e691658867e1e96b7 2023-12-02T07:22:38.452 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7', 'tag': None, 'wait_for_package': False} 2023-12-02T07:22:38.453 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=bed7681480ccb0192b91a35e691658867e1e96b7 2023-12-02T07:22:38.454 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'bed7681480ccb0192b91a35e691658867e1e96b7', 'tag': None, 'wait_for_package': False} 2023-12-02T07:22:38.454 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=bed7681480ccb0192b91a35e691658867e1e96b7 2023-12-02T07:22:38.599 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/ 2023-12-02T07:22:38.599 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7631.gbed76814 2023-12-02T07:22:38.604 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/ 2023-12-02T07:22:38.605 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7631.gbed76814 2023-12-02T07:22:38.615 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/ 2023-12-02T07:22:38.615 INFO:teuthology.task.install.rpm:Package version is 18.0.0-7631.gbed76814 2023-12-02T07:22:38.704 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-12-02T07:22:38.704 DEBUG:teuthology.orchestra.run.smithi106:> set -ex 2023-12-02T07:22:38.704 DEBUG:teuthology.orchestra.run.smithi106:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-12-02T07:22:38.737 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2023-12-02T07:22:38.737 DEBUG:teuthology.orchestra.run.smithi106:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/bed7681480ccb0192b91a35e691658867e1e96b7/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-12-02T07:22:38.766 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-12-02T07:22:38.767 DEBUG:teuthology.orchestra.run.smithi067:> set -ex 2023-12-02T07:22:38.767 DEBUG:teuthology.orchestra.run.smithi067:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-12-02T07:22:38.781 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/bed7681480ccb0192b91a35e691658867e1e96b7/centos/8/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2023-12-02T07:22:38.781 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2023-12-02T07:22:38.781 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/etc/yum.repos.d/ceph.repo 2023-12-02T07:22:38.795 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2023-12-02T07:22:38.796 DEBUG:teuthology.orchestra.run.smithi067:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/bed7681480ccb0192b91a35e691658867e1e96b7/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-12-02T07:22:38.807 DEBUG:teuthology.orchestra.run.smithi106:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2023-12-02T07:22:38.813 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2023-12-02T07:22:38.814 DEBUG:teuthology.orchestra.run.smithi078:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/bed7681480ccb0192b91a35e691658867e1e96b7/;g' /etc/yum.repos.d/ceph.repo ; fi 2023-12-02T07:22:38.864 DEBUG:teuthology.orchestra.run.smithi067:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2023-12-02T07:22:38.885 DEBUG:teuthology.orchestra.run.smithi078:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2023-12-02T07:22:38.887 DEBUG:teuthology.orchestra.run.smithi106:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2023-12-02T07:22:38.944 DEBUG:teuthology.orchestra.run.smithi067:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2023-12-02T07:22:38.955 INFO:teuthology.orchestra.run.smithi106.stdout:check_obsoletes = 1 2023-12-02T07:22:38.956 DEBUG:teuthology.orchestra.run.smithi106:> sudo yum clean all 2023-12-02T07:22:38.967 DEBUG:teuthology.orchestra.run.smithi078:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2023-12-02T07:22:39.011 INFO:teuthology.orchestra.run.smithi067.stdout:check_obsoletes = 1 2023-12-02T07:22:39.012 DEBUG:teuthology.orchestra.run.smithi067:> sudo yum clean all 2023-12-02T07:22:39.034 INFO:teuthology.orchestra.run.smithi078.stdout:check_obsoletes = 1 2023-12-02T07:22:39.036 DEBUG:teuthology.orchestra.run.smithi078:> sudo yum clean all 2023-12-02T07:22:39.330 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:22:39.407 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:22:39.411 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:22:39.607 INFO:teuthology.orchestra.run.smithi106.stdout:44 files removed 2023-12-02T07:22:39.653 DEBUG:teuthology.orchestra.run.smithi106:> sudo yum -y install ceph-radosgw 2023-12-02T07:22:39.698 INFO:teuthology.orchestra.run.smithi078.stdout:44 files removed 2023-12-02T07:22:39.709 INFO:teuthology.orchestra.run.smithi067.stdout:44 files removed 2023-12-02T07:22:39.744 DEBUG:teuthology.orchestra.run.smithi078:> sudo yum -y install ceph-radosgw 2023-12-02T07:22:39.757 DEBUG:teuthology.orchestra.run.smithi067:> sudo yum -y install ceph-radosgw 2023-12-02T07:22:39.982 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:22:40.075 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:22:40.108 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:22:40.743 INFO:teuthology.orchestra.run.smithi106.stdout:ceph packages for x86_64 255 kB/s | 81 kB 00:00 2023-12-02T07:22:40.932 INFO:teuthology.orchestra.run.smithi078.stdout:ceph packages for x86_64 227 kB/s | 81 kB 00:00 2023-12-02T07:22:40.938 INFO:teuthology.orchestra.run.smithi067.stdout:ceph packages for x86_64 227 kB/s | 81 kB 00:00 2023-12-02T07:22:41.052 INFO:teuthology.orchestra.run.smithi106.stdout:ceph noarch packages 34 kB/s | 9.5 kB 00:00 2023-12-02T07:22:41.205 INFO:teuthology.orchestra.run.smithi067.stdout:ceph noarch packages 41 kB/s | 9.5 kB 00:00 2023-12-02T07:22:41.241 INFO:teuthology.orchestra.run.smithi078.stdout:ceph noarch packages 34 kB/s | 9.5 kB 00:00 2023-12-02T07:22:41.369 INFO:teuthology.orchestra.run.smithi106.stdout:ceph source packages 5.0 kB/s | 1.5 kB 00:00 2023-12-02T07:22:41.498 INFO:teuthology.orchestra.run.smithi067.stdout:ceph source packages 5.5 kB/s | 1.5 kB 00:00 2023-12-02T07:22:41.512 INFO:teuthology.orchestra.run.smithi106.stdout:Copr repo for python3-asyncssh owned by ceph 28 kB/s | 3.5 kB 00:00 2023-12-02T07:22:41.558 INFO:teuthology.orchestra.run.smithi078.stdout:ceph source packages 5.0 kB/s | 1.5 kB 00:00 2023-12-02T07:22:41.631 INFO:teuthology.orchestra.run.smithi067.stdout:Copr repo for python3-asyncssh owned by ceph 31 kB/s | 3.5 kB 00:00 2023-12-02T07:22:41.726 INFO:teuthology.orchestra.run.smithi078.stdout:Copr repo for python3-asyncssh owned by ceph 23 kB/s | 3.5 kB 00:00 2023-12-02T07:22:42.618 INFO:teuthology.orchestra.run.smithi078.stdout:Extra Packages for Enterprise Linux 18 MB/s | 16 MB 00:00 2023-12-02T07:22:43.021 INFO:teuthology.orchestra.run.smithi106.stdout:Extra Packages for Enterprise Linux 11 MB/s | 16 MB 00:01 2023-12-02T07:22:43.768 INFO:teuthology.orchestra.run.smithi067.stdout:Extra Packages for Enterprise Linux 7.5 MB/s | 16 MB 00:02 2023-12-02T07:22:46.227 INFO:teuthology.orchestra.run.smithi078.stdout:lab-extras 429 kB/s | 24 kB 00:00 2023-12-02T07:22:46.471 INFO:teuthology.orchestra.run.smithi106.stdout:lab-extras 550 kB/s | 24 kB 00:00 2023-12-02T07:22:47.179 INFO:teuthology.orchestra.run.smithi078.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 60 MB/s | 53 MB 00:00 2023-12-02T07:22:47.423 INFO:teuthology.orchestra.run.smithi106.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 54 MB/s | 47 MB 00:00 2023-12-02T07:22:47.524 INFO:teuthology.orchestra.run.smithi067.stdout:lab-extras 435 kB/s | 24 kB 00:00 2023-12-02T07:22:48.643 INFO:teuthology.orchestra.run.smithi067.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 45 MB/s | 47 MB 00:01 2023-12-02T07:22:55.443 INFO:teuthology.orchestra.run.smithi106.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 54 MB/s | 53 MB 00:00 2023-12-02T07:22:55.447 INFO:teuthology.orchestra.run.smithi078.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 55 MB/s | 47 MB 00:00 2023-12-02T07:22:57.578 INFO:teuthology.orchestra.run.smithi067.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 39 MB/s | 53 MB 00:01 2023-12-02T07:23:06.484 INFO:teuthology.orchestra.run.smithi078.stdout:Dependencies resolved. 2023-12-02T07:23:06.486 INFO:teuthology.orchestra.run.smithi078.stdout:==================================================================================================== 2023-12-02T07:23:06.486 INFO:teuthology.orchestra.run.smithi078.stdout: Package Arch Version Repository Size 2023-12-02T07:23:06.486 INFO:teuthology.orchestra.run.smithi078.stdout:==================================================================================================== 2023-12-02T07:23:06.486 INFO:teuthology.orchestra.run.smithi078.stdout:Installing: 2023-12-02T07:23:06.486 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-radosgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 14 M 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout:Upgrading: 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: librados2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.8 M 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: librbd1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.7 M 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout:Installing dependencies: 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-base x86_64 2:18.0.0-7631.gbed76814.el8 ceph 5.4 M 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 23 M 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-selinux x86_64 2:18.0.0-7631.gbed76814.el8 ceph 24 k 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: libcephfs2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 839 k 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: libradosstriper1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 517 k 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-12-02T07:23:06.487 INFO:teuthology.orchestra.run.smithi078.stdout: librgw2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 6.9 M 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: python3-ceph-argparse x86_64 2:18.0.0-7631.gbed76814.el8 ceph 45 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: python3-ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 128 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: python3-cephfs x86_64 2:18.0.0-7631.gbed76814.el8 ceph 197 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: python3-rados x86_64 2:18.0.0-7631.gbed76814.el8 ceph 371 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: python3-rbd x86_64 2:18.0.0-7631.gbed76814.el8 ceph 365 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: python3-rgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 107 k 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction Summary 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout:==================================================================================================== 2023-12-02T07:23:06.488 INFO:teuthology.orchestra.run.smithi078.stdout:Install 21 Packages 2023-12-02T07:23:06.489 INFO:teuthology.orchestra.run.smithi078.stdout:Upgrade 2 Packages 2023-12-02T07:23:06.489 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:23:06.489 INFO:teuthology.orchestra.run.smithi078.stdout:Total download size: 62 M 2023-12-02T07:23:06.489 INFO:teuthology.orchestra.run.smithi078.stdout:Downloading Packages: 2023-12-02T07:23:06.906 INFO:teuthology.orchestra.run.smithi106.stdout:Dependencies resolved. 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout:==================================================================================================== 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout: Package Arch Version Repository Size 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout:==================================================================================================== 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout:Installing: 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-radosgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 14 M 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout:Upgrading: 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout: librados2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.8 M 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout: librbd1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.7 M 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout:Installing dependencies: 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-base x86_64 2:18.0.0-7631.gbed76814.el8 ceph 5.4 M 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 23 M 2023-12-02T07:23:06.909 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-selinux x86_64 2:18.0.0-7631.gbed76814.el8 ceph 24 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: libcephfs2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 839 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: libradosstriper1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 517 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: librgw2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 6.9 M 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: python3-ceph-argparse x86_64 2:18.0.0-7631.gbed76814.el8 ceph 45 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: python3-ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 128 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: python3-cephfs x86_64 2:18.0.0-7631.gbed76814.el8 ceph 197 k 2023-12-02T07:23:06.910 INFO:teuthology.orchestra.run.smithi106.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout: python3-rados x86_64 2:18.0.0-7631.gbed76814.el8 ceph 371 k 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout: python3-rbd x86_64 2:18.0.0-7631.gbed76814.el8 ceph 365 k 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout: python3-rgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 107 k 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction Summary 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout:==================================================================================================== 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout:Install 21 Packages 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout:Upgrade 2 Packages 2023-12-02T07:23:06.911 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:23:06.912 INFO:teuthology.orchestra.run.smithi106.stdout:Total download size: 62 M 2023-12-02T07:23:06.912 INFO:teuthology.orchestra.run.smithi106.stdout:Downloading Packages: 2023-12-02T07:23:07.356 INFO:teuthology.orchestra.run.smithi078.stdout:(1/23): ceph-base-18.0.0-7631.gbed76814.el8.x86 8.7 MB/s | 5.4 MB 00:00 2023-12-02T07:23:07.425 INFO:teuthology.orchestra.run.smithi078.stdout:(2/23): ceph-selinux-18.0.0-7631.gbed76814.el8. 366 kB/s | 24 kB 00:00 2023-12-02T07:23:07.582 INFO:teuthology.orchestra.run.smithi078.stdout:(3/23): libcephfs2-18.0.0-7631.gbed76814.el8.x8 5.2 MB/s | 839 kB 00:00 2023-12-02T07:23:07.690 INFO:teuthology.orchestra.run.smithi078.stdout:(4/23): libradosstriper1-18.0.0-7631.gbed76814. 4.7 MB/s | 517 kB 00:00 2023-12-02T07:23:08.007 INFO:teuthology.orchestra.run.smithi078.stdout:(5/23): ceph-radosgw-18.0.0-7631.gbed76814.el8. 11 MB/s | 14 MB 00:01 2023-12-02T07:23:08.099 INFO:teuthology.orchestra.run.smithi078.stdout:(6/23): python3-ceph-argparse-18.0.0-7631.gbed7 489 kB/s | 45 kB 00:00 2023-12-02T07:23:08.191 INFO:teuthology.orchestra.run.smithi078.stdout:(7/23): python3-ceph-common-18.0.0-7631.gbed768 1.4 MB/s | 128 kB 00:00 2023-12-02T07:23:08.275 INFO:teuthology.orchestra.run.smithi078.stdout:(8/23): librgw2-18.0.0-7631.gbed76814.el8.x86_6 12 MB/s | 6.9 MB 00:00 2023-12-02T07:23:08.300 INFO:teuthology.orchestra.run.smithi078.stdout:(9/23): python3-cephfs-18.0.0-7631.gbed76814.el 1.8 MB/s | 197 kB 00:00 2023-12-02T07:23:08.342 INFO:teuthology.orchestra.run.smithi078.stdout:(10/23): python3-rados-18.0.0-7631.gbed76814.el 5.4 MB/s | 371 kB 00:00 2023-12-02T07:23:08.433 INFO:teuthology.orchestra.run.smithi078.stdout:(11/23): python3-rbd-18.0.0-7631.gbed76814.el8. 2.7 MB/s | 365 kB 00:00 2023-12-02T07:23:08.459 INFO:teuthology.orchestra.run.smithi078.stdout:(12/23): python3-rgw-18.0.0-7631.gbed76814.el8. 908 kB/s | 107 kB 00:00 2023-12-02T07:23:08.693 INFO:teuthology.orchestra.run.smithi078.stdout:(13/23): liboath-2.6.2-3.el8.x86_64.rpm 252 kB/s | 59 kB 00:00 2023-12-02T07:23:08.793 INFO:teuthology.orchestra.run.smithi078.stdout:(14/23): libunwind-1.3.1-3.el8.x86_64.rpm 751 kB/s | 75 kB 00:00 2023-12-02T07:23:08.819 INFO:teuthology.orchestra.run.smithi078.stdout:(15/23): gperftools-libs-2.7-9.el8.x86_64.rpm 795 kB/s | 306 kB 00:00 2023-12-02T07:23:08.886 INFO:teuthology.orchestra.run.smithi078.stdout:(16/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 702 kB/s | 47 kB 00:00 2023-12-02T07:23:08.978 INFO:teuthology.orchestra.run.smithi078.stdout:(17/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 2.8 MB/s | 259 kB 00:00 2023-12-02T07:23:09.028 INFO:teuthology.orchestra.run.smithi078.stdout:(18/23): python3-prettytable-0.7.2-14.el8.noarc 880 kB/s | 44 kB 00:00 2023-12-02T07:23:09.137 INFO:teuthology.orchestra.run.smithi078.stdout:(19/23): librdkafka-0.11.4-3.el8.x86_64.rpm 3.2 MB/s | 354 kB 00:00 2023-12-02T07:23:09.179 INFO:teuthology.orchestra.run.smithi078.stdout:(20/23): thrift-0.13.0-2.el8.x86_64.rpm 4.5 MB/s | 1.7 MB 00:00 2023-12-02T07:23:09.276 INFO:teuthology.orchestra.run.smithi106.stdout:(1/23): ceph-base-18.0.0-7631.gbed76814.el8.x86 2.4 MB/s | 5.4 MB 00:02 2023-12-02T07:23:09.442 INFO:teuthology.orchestra.run.smithi106.stdout:(2/23): ceph-selinux-18.0.0-7631.gbed76814.el8. 146 kB/s | 24 kB 00:00 2023-12-02T07:23:09.502 INFO:teuthology.orchestra.run.smithi067.stdout:Dependencies resolved. 2023-12-02T07:23:09.504 INFO:teuthology.orchestra.run.smithi067.stdout:==================================================================================================== 2023-12-02T07:23:09.504 INFO:teuthology.orchestra.run.smithi067.stdout: Package Arch Version Repository Size 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout:==================================================================================================== 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout:Installing: 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-radosgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 14 M 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout:Upgrading: 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: librados2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.8 M 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: librbd1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 3.7 M 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout:Installing dependencies: 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-base x86_64 2:18.0.0-7631.gbed76814.el8 ceph 5.4 M 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 23 M 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-selinux x86_64 2:18.0.0-7631.gbed76814.el8 ceph 24 k 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: gperftools-libs x86_64 1:2.7-9.el8 epel 306 k 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: libcephfs2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 839 k 2023-12-02T07:23:09.505 INFO:teuthology.orchestra.run.smithi067.stdout: liboath x86_64 2.6.2-3.el8 epel 59 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: librabbitmq x86_64 0.9.0-3.el8 rhel-8-for-x86_64-baseos-rpms 47 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: libradosstriper1 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 517 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: librdkafka x86_64 0.11.4-3.el8 rhel-8-for-x86_64-appstream-rpms 354 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: librgw2 x86_64 2:18.0.0-7631.gbed76814.el8 ceph 6.9 M 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: libunwind x86_64 1.3.1-3.el8 epel 75 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: lttng-ust x86_64 2.8.1-11.el8 rhel-8-for-x86_64-appstream-rpms 259 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: python3-ceph-argparse x86_64 2:18.0.0-7631.gbed76814.el8 ceph 45 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: python3-ceph-common x86_64 2:18.0.0-7631.gbed76814.el8 ceph 128 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: python3-cephfs x86_64 2:18.0.0-7631.gbed76814.el8 ceph 197 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: python3-prettytable noarch 0.7.2-14.el8 rhel-8-for-x86_64-appstream-rpms 44 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: python3-rados x86_64 2:18.0.0-7631.gbed76814.el8 ceph 371 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: python3-rbd x86_64 2:18.0.0-7631.gbed76814.el8 ceph 365 k 2023-12-02T07:23:09.506 INFO:teuthology.orchestra.run.smithi067.stdout: python3-rgw x86_64 2:18.0.0-7631.gbed76814.el8 ceph 107 k 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout: thrift x86_64 0.13.0-2.el8 epel 1.7 M 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction Summary 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout:==================================================================================================== 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout:Install 21 Packages 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout:Upgrade 2 Packages 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout:Total download size: 62 M 2023-12-02T07:23:09.507 INFO:teuthology.orchestra.run.smithi067.stdout:Downloading Packages: 2023-12-02T07:23:09.796 INFO:teuthology.orchestra.run.smithi078.stdout:(21/23): librados2-18.0.0-7631.gbed76814.el8.x8 5.7 MB/s | 3.8 MB 00:00 2023-12-02T07:23:09.876 INFO:teuthology.orchestra.run.smithi106.stdout:(3/23): ceph-radosgw-18.0.0-7631.gbed76814.el8. 4.8 MB/s | 14 MB 00:02 2023-12-02T07:23:09.910 INFO:teuthology.orchestra.run.smithi106.stdout:(4/23): libcephfs2-18.0.0-7631.gbed76814.el8.x8 1.8 MB/s | 839 kB 00:00 2023-12-02T07:23:10.127 INFO:teuthology.orchestra.run.smithi106.stdout:(5/23): ceph-common-18.0.0-7631.gbed76814.el8.x 7.2 MB/s | 23 MB 00:03 2023-12-02T07:23:10.160 INFO:teuthology.orchestra.run.smithi106.stdout:(6/23): libradosstriper1-18.0.0-7631.gbed76814. 1.8 MB/s | 517 kB 00:00 2023-12-02T07:23:10.235 INFO:teuthology.orchestra.run.smithi106.stdout:(7/23): python3-ceph-argparse-18.0.0-7631.gbed7 413 kB/s | 45 kB 00:00 2023-12-02T07:23:10.261 INFO:teuthology.orchestra.run.smithi106.stdout:(8/23): python3-ceph-common-18.0.0-7631.gbed768 1.3 MB/s | 128 kB 00:00 2023-12-02T07:23:10.361 INFO:teuthology.orchestra.run.smithi106.stdout:(9/23): python3-cephfs-18.0.0-7631.gbed76814.el 1.5 MB/s | 197 kB 00:00 2023-12-02T07:23:10.469 INFO:teuthology.orchestra.run.smithi106.stdout:(10/23): python3-rbd-18.0.0-7631.gbed76814.el8. 3.3 MB/s | 365 kB 00:00 2023-12-02T07:23:10.579 INFO:teuthology.orchestra.run.smithi106.stdout:(11/23): python3-rgw-18.0.0-7631.gbed76814.el8. 983 kB/s | 107 kB 00:00 2023-12-02T07:23:10.649 INFO:teuthology.orchestra.run.smithi078.stdout:(22/23): librbd1-18.0.0-7631.gbed76814.el8.x86_ 2.5 MB/s | 3.7 MB 00:01 2023-12-02T07:23:10.649 INFO:teuthology.orchestra.run.smithi106.stdout:(12/23): python3-rados-18.0.0-7631.gbed76814.el 1.1 MB/s | 371 kB 00:00 2023-12-02T07:23:10.987 INFO:teuthology.orchestra.run.smithi106.stdout:(13/23): liboath-2.6.2-3.el8.x86_64.rpm 153 kB/s | 59 kB 00:00 2023-12-02T07:23:11.096 INFO:teuthology.orchestra.run.smithi106.stdout:(14/23): librgw2-18.0.0-7631.gbed76814.el8.x86_ 5.8 MB/s | 6.9 MB 00:01 2023-12-02T07:23:11.221 INFO:teuthology.orchestra.run.smithi106.stdout:(15/23): libunwind-1.3.1-3.el8.x86_64.rpm 321 kB/s | 75 kB 00:00 2023-12-02T07:23:11.280 INFO:teuthology.orchestra.run.smithi106.stdout:(16/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 4.4 MB/s | 259 kB 00:00 2023-12-02T07:23:11.322 INFO:teuthology.orchestra.run.smithi106.stdout:(17/23): python3-prettytable-0.7.2-14.el8.noarc 1.0 MB/s | 44 kB 00:00 2023-12-02T07:23:11.364 INFO:teuthology.orchestra.run.smithi106.stdout:(18/23): librdkafka-0.11.4-3.el8.x86_64.rpm 8.3 MB/s | 354 kB 00:00 2023-12-02T07:23:11.406 INFO:teuthology.orchestra.run.smithi106.stdout:(19/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 1.1 MB/s | 47 kB 00:00 2023-12-02T07:23:11.428 INFO:teuthology.orchestra.run.smithi067.stdout:(1/23): ceph-radosgw-18.0.0-7631.gbed76814.el8. 7.3 MB/s | 14 MB 00:01 2023-12-02T07:23:11.478 INFO:teuthology.orchestra.run.smithi067.stdout:(2/23): ceph-selinux-18.0.0-7631.gbed76814.el8. 489 kB/s | 24 kB 00:00 2023-12-02T07:23:11.622 INFO:teuthology.orchestra.run.smithi106.stdout:(20/23): gperftools-libs-2.7-9.el8.x86_64.rpm 293 kB/s | 306 kB 00:01 2023-12-02T07:23:11.645 INFO:teuthology.orchestra.run.smithi067.stdout:(3/23): libcephfs2-18.0.0-7631.gbed76814.el8.x8 4.9 MB/s | 839 kB 00:00 2023-12-02T07:23:11.737 INFO:teuthology.orchestra.run.smithi067.stdout:(4/23): libradosstriper1-18.0.0-7631.gbed76814. 5.5 MB/s | 517 kB 00:00 2023-12-02T07:23:11.890 INFO:teuthology.orchestra.run.smithi106.stdout:(21/23): librados2-18.0.0-7631.gbed76814.el8.x8 7.8 MB/s | 3.8 MB 00:00 2023-12-02T07:23:12.288 INFO:teuthology.orchestra.run.smithi067.stdout:(5/23): ceph-common-18.0.0-7631.gbed76814.el8.x 8.2 MB/s | 23 MB 00:02 2023-12-02T07:23:12.315 INFO:teuthology.orchestra.run.smithi106.stdout:(22/23): librbd1-18.0.0-7631.gbed76814.el8.x86_ 5.4 MB/s | 3.7 MB 00:00 2023-12-02T07:23:12.371 INFO:teuthology.orchestra.run.smithi067.stdout:(6/23): python3-ceph-argparse-18.0.0-7631.gbed7 538 kB/s | 45 kB 00:00 2023-12-02T07:23:12.480 INFO:teuthology.orchestra.run.smithi067.stdout:(7/23): librgw2-18.0.0-7631.gbed76814.el8.x86_6 9.3 MB/s | 6.9 MB 00:00 2023-12-02T07:23:12.497 INFO:teuthology.orchestra.run.smithi067.stdout:(8/23): python3-ceph-common-18.0.0-7631.gbed768 1.0 MB/s | 128 kB 00:00 2023-12-02T07:23:12.530 INFO:teuthology.orchestra.run.smithi067.stdout:(9/23): python3-cephfs-18.0.0-7631.gbed76814.el 3.8 MB/s | 197 kB 00:00 2023-12-02T07:23:12.597 INFO:teuthology.orchestra.run.smithi067.stdout:(10/23): python3-rados-18.0.0-7631.gbed76814.el 3.6 MB/s | 371 kB 00:00 2023-12-02T07:23:12.623 INFO:teuthology.orchestra.run.smithi067.stdout:(11/23): python3-rbd-18.0.0-7631.gbed76814.el8. 3.9 MB/s | 365 kB 00:00 2023-12-02T07:23:12.648 INFO:teuthology.orchestra.run.smithi067.stdout:(12/23): python3-rgw-18.0.0-7631.gbed76814.el8. 2.1 MB/s | 107 kB 00:00 2023-12-02T07:23:12.823 INFO:teuthology.orchestra.run.smithi067.stdout:(13/23): liboath-2.6.2-3.el8.x86_64.rpm 336 kB/s | 59 kB 00:00 2023-12-02T07:23:12.874 INFO:teuthology.orchestra.run.smithi067.stdout:(14/23): gperftools-libs-2.7-9.el8.x86_64.rpm 1.2 MB/s | 306 kB 00:00 2023-12-02T07:23:12.899 INFO:teuthology.orchestra.run.smithi067.stdout:(15/23): libunwind-1.3.1-3.el8.x86_64.rpm 997 kB/s | 75 kB 00:00 2023-12-02T07:23:12.982 INFO:teuthology.orchestra.run.smithi067.stdout:(16/23): thrift-0.13.0-2.el8.x86_64.rpm 16 MB/s | 1.7 MB 00:00 2023-12-02T07:23:13.040 INFO:teuthology.orchestra.run.smithi067.stdout:(17/23): lttng-ust-2.8.1-11.el8.x86_64.rpm 1.8 MB/s | 259 kB 00:00 2023-12-02T07:23:13.092 INFO:teuthology.orchestra.run.smithi067.stdout:(18/23): python3-prettytable-0.7.2-14.el8.noarc 405 kB/s | 44 kB 00:00 2023-12-02T07:23:13.117 INFO:teuthology.orchestra.run.smithi067.stdout:(19/23): librdkafka-0.11.4-3.el8.x86_64.rpm 5.1 MB/s | 354 kB 00:00 2023-12-02T07:23:13.134 INFO:teuthology.orchestra.run.smithi067.stdout:(20/23): librabbitmq-0.9.0-3.el8.x86_64.rpm 1.1 MB/s | 47 kB 00:00 2023-12-02T07:23:13.498 INFO:teuthology.orchestra.run.smithi067.stdout:(21/23): librados2-18.0.0-7631.gbed76814.el8.x8 9.9 MB/s | 3.8 MB 00:00 2023-12-02T07:23:13.560 INFO:teuthology.orchestra.run.smithi067.stdout:(22/23): librbd1-18.0.0-7631.gbed76814.el8.x86_ 8.7 MB/s | 3.7 MB 00:00 2023-12-02T07:23:14.804 INFO:teuthology.orchestra.run.smithi078.stdout:(23/23): ceph-common-18.0.0-7631.gbed76814.el8. 2.8 MB/s | 23 MB 00:08 2023-12-02T07:23:14.808 INFO:teuthology.orchestra.run.smithi078.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:23:14.809 INFO:teuthology.orchestra.run.smithi078.stdout:Total 7.4 MB/s | 62 MB 00:08 2023-12-02T07:23:14.857 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction check 2023-12-02T07:23:14.906 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction check succeeded. 2023-12-02T07:23:14.906 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction test 2023-12-02T07:23:15.031 INFO:teuthology.orchestra.run.smithi106.stdout:(23/23): thrift-0.13.0-2.el8.x86_64.rpm 451 kB/s | 1.7 MB 00:03 2023-12-02T07:23:15.033 INFO:teuthology.orchestra.run.smithi106.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:23:15.034 INFO:teuthology.orchestra.run.smithi106.stdout:Total 7.6 MB/s | 62 MB 00:08 2023-12-02T07:23:15.081 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction check 2023-12-02T07:23:15.126 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction check succeeded. 2023-12-02T07:23:15.126 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction test 2023-12-02T07:23:15.249 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction test succeeded. 2023-12-02T07:23:15.253 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction 2023-12-02T07:23:15.471 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction test succeeded. 2023-12-02T07:23:15.474 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction 2023-12-02T07:23:15.635 INFO:teuthology.orchestra.run.smithi067.stdout:(23/23): ceph-base-18.0.0-7631.gbed76814.el8.x8 902 kB/s | 5.4 MB 00:06 2023-12-02T07:23:15.639 INFO:teuthology.orchestra.run.smithi067.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:23:15.639 INFO:teuthology.orchestra.run.smithi067.stdout:Total 10 MB/s | 62 MB 00:06 2023-12-02T07:23:15.686 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction check 2023-12-02T07:23:15.736 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction check succeeded. 2023-12-02T07:23:15.736 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction test 2023-12-02T07:23:16.103 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction test succeeded. 2023-12-02T07:23:16.107 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction 2023-12-02T07:23:16.427 INFO:teuthology.orchestra.run.smithi078.stdout: Preparing : 1/1 2023-12-02T07:23:16.607 INFO:teuthology.orchestra.run.smithi106.stdout: Preparing : 1/1 2023-12-02T07:23:16.632 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-12-02T07:23:16.805 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-12-02T07:23:16.852 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T07:23:16.998 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T07:23:17.283 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T07:23:17.376 INFO:teuthology.orchestra.run.smithi067.stdout: Preparing : 1/1 2023-12-02T07:23:17.448 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T07:23:17.582 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : thrift-0.13.0-2.el8.x86_64 1/25 2023-12-02T07:23:17.585 INFO:teuthology.orchestra.run.smithi078.stdout: Upgrading : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:17.606 INFO:teuthology.orchestra.run.smithi106.stdout: Upgrading : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:17.689 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:17.689 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:17.781 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T07:23:17.862 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T07:23:17.891 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T07:23:18.109 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-12-02T07:23:18.113 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-12-02T07:23:18.216 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: lttng-ust-2.8.1-11.el8.x86_64 2/25 2023-12-02T07:23:18.302 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T07:23:18.305 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T07:23:18.406 INFO:teuthology.orchestra.run.smithi067.stdout: Upgrading : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:18.708 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T07:23:18.721 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:18.721 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T07:23:18.931 INFO:teuthology.orchestra.run.smithi106.stdout: Upgrading : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:18.944 INFO:teuthology.orchestra.run.smithi078.stdout: Upgrading : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:19.005 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:19.038 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:19.046 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T07:23:19.204 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 8/25 2023-12-02T07:23:19.244 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 8/25 2023-12-02T07:23:19.290 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : liboath-2.6.2-3.el8.x86_64 5/25 2023-12-02T07:23:19.296 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 8/25 2023-12-02T07:23:19.347 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 9/25 2023-12-02T07:23:19.481 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T07:23:19.907 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 6/25 2023-12-02T07:23:20.025 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 9/25 2023-12-02T07:23:20.083 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 9/25 2023-12-02T07:23:20.189 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:20.222 INFO:teuthology.orchestra.run.smithi067.stdout: Upgrading : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:20.242 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:20.275 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:20.277 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:20.341 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:20.366 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 11/25 2023-12-02T07:23:20.463 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 11/25 2023-12-02T07:23:20.515 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : librabbitmq-0.9.0-3.el8.x86_64 8/25 2023-12-02T07:23:20.525 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T07:23:20.621 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T07:23:20.698 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : librdkafka-0.11.4-3.el8.x86_64 9/25 2023-12-02T07:23:20.757 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T07:23:20.845 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T07:23:20.943 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 14/25 2023-12-02T07:23:21.056 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 14/25 2023-12-02T07:23:21.097 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T07:23:21.155 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T07:23:21.218 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T07:23:21.289 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-12-02T07:23:21.312 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T07:23:21.440 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: librdkafka-0.11.4-3.el8.x86_64 9/25 2023-12-02T07:23:21.452 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-12-02T07:23:21.489 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-12-02T07:23:21.622 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:21.628 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-12-02T07:23:21.696 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:21.748 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-12-02T07:23:21.843 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 11/25 2023-12-02T07:23:21.894 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-12-02T07:23:21.939 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 19/25 2023-12-02T07:23:21.992 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T07:23:22.060 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 19/25 2023-12-02T07:23:22.377 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T07:23:22.605 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 14/25 2023-12-02T07:23:22.780 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T07:23:22.851 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 15/25 2023-12-02T07:23:23.017 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : python3-prettytable-0.7.2-14.el8.noarch 16/25 2023-12-02T07:23:23.185 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : libunwind-1.3.1-3.el8.x86_64 17/25 2023-12-02T07:23:23.424 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : gperftools-libs-1:2.7-9.el8.x86_64 18/25 2023-12-02T07:23:23.581 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 19/25 2023-12-02T07:23:25.797 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:25.920 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:26.051 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:26.189 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:26.630 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:26.767 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:26.872 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T07:23:26.977 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T07:23:27.030 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T07:23:27.111 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T07:23:27.134 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:27.255 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:27.707 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:28.064 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:28.684 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 20/25 2023-12-02T07:23:29.095 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T07:23:29.275 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 21/25 2023-12-02T07:23:29.963 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:45.441 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /sys 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /proc 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /dev 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /run 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /mnt 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /var/tmp 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /home 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /tmp 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout:skipping the directory /dev 2023-12-02T07:23:45.442 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:23:45.807 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /sys 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /proc 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /dev 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /run 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /mnt 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /var/tmp 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /home 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /tmp 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout:skipping the directory /dev 2023-12-02T07:23:45.808 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:23:46.853 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T07:23:46.873 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T07:23:46.874 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T07:23:47.062 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T07:23:47.063 INFO:teuthology.orchestra.run.smithi106.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:47.220 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T07:23:47.240 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T07:23:47.241 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T07:23:47.475 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T07:23:47.475 INFO:teuthology.orchestra.run.smithi078.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:47.688 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:47.688 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 1/25 2023-12-02T07:23:47.688 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2/25 2023-12-02T07:23:47.689 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:47.689 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T07:23:47.689 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 5/25 2023-12-02T07:23:47.689 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 6/25 2023-12-02T07:23:47.689 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:47.690 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 8/25 2023-12-02T07:23:47.690 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 9/25 2023-12-02T07:23:47.690 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:47.690 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 11/25 2023-12-02T07:23:47.690 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T07:23:47.690 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T07:23:47.691 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-12-02T07:23:47.691 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-12-02T07:23:47.691 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-12-02T07:23:47.691 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-12-02T07:23:47.691 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 18/25 2023-12-02T07:23:47.692 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 19/25 2023-12-02T07:23:47.692 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 20/25 2023-12-02T07:23:47.692 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 21/25 2023-12-02T07:23:47.692 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:47.692 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-12-02T07:23:47.692 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 24/25 2023-12-02T07:23:48.081 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 1/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 5/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 6/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 8/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 9/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 11/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T07:23:48.082 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 18/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 19/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 20/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 21/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-12-02T07:23:48.083 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 24/25 2023-12-02T07:23:48.978 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:48.978 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:00:53 ago on Sat 02 Dec 2023 07:22:55 AM UTC. 2023-12-02T07:23:49.429 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:49.429 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /sys 2023-12-02T07:23:49.429 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /proc 2023-12-02T07:23:49.429 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /dev 2023-12-02T07:23:49.429 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /run 2023-12-02T07:23:49.430 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /mnt 2023-12-02T07:23:49.430 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /var/tmp 2023-12-02T07:23:49.430 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /home 2023-12-02T07:23:49.430 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /tmp 2023-12-02T07:23:49.430 INFO:teuthology.orchestra.run.smithi067.stdout:skipping the directory /dev 2023-12-02T07:23:49.430 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:23:49.496 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:49.496 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:00:55 ago on Sat 02 Dec 2023 07:22:54 AM UTC. 2023-12-02T07:23:50.917 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T07:23:50.939 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 23/25 2023-12-02T07:23:50.940 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T07:23:51.280 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: librbd1-1:12.2.7-9.el8.x86_64 24/25 2023-12-02T07:23:51.280 INFO:teuthology.orchestra.run.smithi067.stdout: Cleanup : librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:51.292 INFO:teuthology.orchestra.run.smithi106.stdout:Installed products updated. 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout:Upgraded: 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout:Installed: 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.478 INFO:teuthology.orchestra.run.smithi106.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: liboath-2.6.2-3.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: libunwind-1.3.1-3.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.479 INFO:teuthology.orchestra.run.smithi106.stdout: python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.480 INFO:teuthology.orchestra.run.smithi106.stdout: python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:51.480 INFO:teuthology.orchestra.run.smithi106.stdout: thrift-0.13.0-2.el8.x86_64 2023-12-02T07:23:51.480 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:23:51.480 INFO:teuthology.orchestra.run.smithi106.stdout:Complete! 2023-12-02T07:23:51.644 DEBUG:teuthology.orchestra.run.smithi106:> sudo yum -y install ceph-test 2023-12-02T07:23:51.821 INFO:teuthology.orchestra.run.smithi078.stdout:Installed products updated. 2023-12-02T07:23:51.964 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: librados2-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:51.964 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 1/25 2023-12-02T07:23:51.964 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 3/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 4/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 5/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_6 6/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 7/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8. 8/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x8 9/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 10/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 11/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 12/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 13/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : gperftools-libs-1:2.7-9.el8.x86_64 14/25 2023-12-02T07:23:51.965 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : liboath-2.6.2-3.el8.x86_64 15/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : libunwind-1.3.1-3.el8.x86_64 16/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : thrift-0.13.0-2.el8.x86_64 17/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : lttng-ust-2.8.1-11.el8.x86_64 18/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : python3-prettytable-0.7.2-14.el8.noarch 19/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : librdkafka-0.11.4-3.el8.x86_64 20/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : librabbitmq-0.9.0-3.el8.x86_64 21/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : librados2-2:18.0.0-7631.gbed76814.el8.x86_64 22/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : librados2-1:12.2.7-9.el8.x86_64 23/25 2023-12-02T07:23:51.966 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 24/25 2023-12-02T07:23:51.997 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout:Upgraded: 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout:Installed: 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.007 INFO:teuthology.orchestra.run.smithi078.stdout: liboath-2.6.2-3.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: libunwind-1.3.1-3.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:52.008 INFO:teuthology.orchestra.run.smithi078.stdout: thrift-0.13.0-2.el8.x86_64 2023-12-02T07:23:52.009 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:23:52.009 INFO:teuthology.orchestra.run.smithi078.stdout:Complete! 2023-12-02T07:23:52.177 DEBUG:teuthology.orchestra.run.smithi078:> sudo yum -y install ceph-test 2023-12-02T07:23:52.525 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:23:52.814 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:00:57 ago on Sat 02 Dec 2023 07:22:55 AM UTC. 2023-12-02T07:23:53.334 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:00:59 ago on Sat 02 Dec 2023 07:22:54 AM UTC. 2023-12-02T07:23:53.372 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : librbd1-1:12.2.7-9.el8.x86_64 25/25 2023-12-02T07:23:53.372 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:00:57 ago on Sat 02 Dec 2023 07:22:56 AM UTC. 2023-12-02T07:23:54.175 INFO:teuthology.orchestra.run.smithi106.stdout:Dependencies resolved. 2023-12-02T07:23:54.176 INFO:teuthology.orchestra.run.smithi106.stdout:============================================================================================ 2023-12-02T07:23:54.176 INFO:teuthology.orchestra.run.smithi106.stdout: Package Arch Version Repository Size 2023-12-02T07:23:54.176 INFO:teuthology.orchestra.run.smithi106.stdout:============================================================================================ 2023-12-02T07:23:54.176 INFO:teuthology.orchestra.run.smithi106.stdout:Installing: 2023-12-02T07:23:54.176 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-test x86_64 2:18.0.0-7631.gbed76814.el8 ceph 49 M 2023-12-02T07:23:54.176 INFO:teuthology.orchestra.run.smithi106.stdout:Installing dependencies: 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout: libcephsqlite x86_64 2:18.0.0-7631.gbed76814.el8 ceph 183 k 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction Summary 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout:============================================================================================ 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout:Install 6 Packages 2023-12-02T07:23:54.177 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:23:54.178 INFO:teuthology.orchestra.run.smithi106.stdout:Total download size: 50 M 2023-12-02T07:23:54.178 INFO:teuthology.orchestra.run.smithi106.stdout:Installed size: 223 M 2023-12-02T07:23:54.178 INFO:teuthology.orchestra.run.smithi106.stdout:Downloading Packages: 2023-12-02T07:23:54.229 INFO:teuthology.orchestra.run.smithi106.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 1.3 MB/s | 70 kB 00:00 2023-12-02T07:23:54.313 INFO:teuthology.orchestra.run.smithi106.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 4.2 MB/s | 323 kB 00:00 2023-12-02T07:23:54.363 INFO:teuthology.orchestra.run.smithi106.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 3.7 MB/s | 187 kB 00:00 2023-12-02T07:23:54.405 INFO:teuthology.orchestra.run.smithi106.stdout:(4/6): libcephsqlite-18.0.0-7631.gbed76814.el8. 808 kB/s | 183 kB 00:00 2023-12-02T07:23:54.430 INFO:teuthology.orchestra.run.smithi106.stdout:(5/6): jq-1.6-3.el8.x86_64.rpm 3.0 MB/s | 202 kB 00:00 2023-12-02T07:23:54.685 INFO:teuthology.orchestra.run.smithi078.stdout:Dependencies resolved. 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout:============================================================================================ 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout: Package Arch Version Repository Size 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout:============================================================================================ 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout:Installing: 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-test x86_64 2:18.0.0-7631.gbed76814.el8 ceph 49 M 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout:Installing dependencies: 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout: libcephsqlite x86_64 2:18.0.0-7631.gbed76814.el8 ceph 183 k 2023-12-02T07:23:54.686 INFO:teuthology.orchestra.run.smithi078.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-12-02T07:23:54.687 INFO:teuthology.orchestra.run.smithi078.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-12-02T07:23:54.687 INFO:teuthology.orchestra.run.smithi078.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-12-02T07:23:54.687 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:23:54.687 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction Summary 2023-12-02T07:23:54.687 INFO:teuthology.orchestra.run.smithi078.stdout:============================================================================================ 2023-12-02T07:23:54.687 INFO:teuthology.orchestra.run.smithi078.stdout:Install 6 Packages 2023-12-02T07:23:54.687 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:23:54.687 INFO:teuthology.orchestra.run.smithi078.stdout:Total download size: 50 M 2023-12-02T07:23:54.688 INFO:teuthology.orchestra.run.smithi078.stdout:Installed size: 223 M 2023-12-02T07:23:54.688 INFO:teuthology.orchestra.run.smithi078.stdout:Downloading Packages: 2023-12-02T07:23:54.732 INFO:teuthology.orchestra.run.smithi078.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 1.6 MB/s | 70 kB 00:00 2023-12-02T07:23:54.799 INFO:teuthology.orchestra.run.smithi078.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 5.4 MB/s | 323 kB 00:00 2023-12-02T07:23:54.833 INFO:teuthology.orchestra.run.smithi078.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 5.6 MB/s | 187 kB 00:00 2023-12-02T07:23:54.875 INFO:teuthology.orchestra.run.smithi078.stdout:(4/6): jq-1.6-3.el8.x86_64.rpm 4.8 MB/s | 202 kB 00:00 2023-12-02T07:23:55.025 INFO:teuthology.orchestra.run.smithi078.stdout:(5/6): libcephsqlite-18.0.0-7631.gbed76814.el8. 544 kB/s | 183 kB 00:00 2023-12-02T07:23:55.864 INFO:teuthology.orchestra.run.smithi067.stdout:Installed products updated. 2023-12-02T07:23:56.071 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:23:56.071 INFO:teuthology.orchestra.run.smithi067.stdout:Upgraded: 2023-12-02T07:23:56.071 INFO:teuthology.orchestra.run.smithi067.stdout: librados2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.071 INFO:teuthology.orchestra.run.smithi067.stdout: librbd1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.071 INFO:teuthology.orchestra.run.smithi067.stdout:Installed: 2023-12-02T07:23:56.071 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-base-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-radosgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-selinux-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: gperftools-libs-1:2.7-9.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: libcephfs2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: liboath-2.6.2-3.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: librabbitmq-0.9.0-3.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: libradosstriper1-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: librdkafka-0.11.4-3.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: librgw2-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: libunwind-1.3.1-3.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: lttng-ust-2.8.1-11.el8.x86_64 2023-12-02T07:23:56.072 INFO:teuthology.orchestra.run.smithi067.stdout: python3-ceph-argparse-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout: python3-ceph-common-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout: python3-cephfs-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout: python3-prettytable-0.7.2-14.el8.noarch 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout: python3-rados-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout: python3-rbd-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout: python3-rgw-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout: thrift-0.13.0-2.el8.x86_64 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:23:56.073 INFO:teuthology.orchestra.run.smithi067.stdout:Complete! 2023-12-02T07:23:56.234 DEBUG:teuthology.orchestra.run.smithi067:> sudo yum -y install ceph-test 2023-12-02T07:23:56.606 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:23:57.448 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:01:01 ago on Sat 02 Dec 2023 07:22:56 AM UTC. 2023-12-02T07:23:57.625 INFO:teuthology.orchestra.run.smithi078.stdout:(6/6): ceph-test-18.0.0-7631.gbed76814.el8.x86_ 17 MB/s | 49 MB 00:02 2023-12-02T07:23:57.627 INFO:teuthology.orchestra.run.smithi078.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:23:57.627 INFO:teuthology.orchestra.run.smithi078.stdout:Total 17 MB/s | 50 MB 00:02 2023-12-02T07:23:57.664 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction check 2023-12-02T07:23:57.685 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction check succeeded. 2023-12-02T07:23:57.685 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction test 2023-12-02T07:23:57.956 INFO:teuthology.orchestra.run.smithi078.stdout:Transaction test succeeded. 2023-12-02T07:23:57.959 INFO:teuthology.orchestra.run.smithi078.stdout:Running transaction 2023-12-02T07:23:58.438 INFO:teuthology.orchestra.run.smithi078.stdout: Preparing : 1/1 2023-12-02T07:23:58.572 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T07:23:58.680 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T07:23:58.900 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-12-02T07:23:58.954 INFO:teuthology.orchestra.run.smithi067.stdout:Dependencies resolved. 2023-12-02T07:23:58.955 INFO:teuthology.orchestra.run.smithi067.stdout:============================================================================================ 2023-12-02T07:23:58.955 INFO:teuthology.orchestra.run.smithi067.stdout: Package Arch Version Repository Size 2023-12-02T07:23:58.955 INFO:teuthology.orchestra.run.smithi067.stdout:============================================================================================ 2023-12-02T07:23:58.955 INFO:teuthology.orchestra.run.smithi067.stdout:Installing: 2023-12-02T07:23:58.956 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-test x86_64 2:18.0.0-7631.gbed76814.el8 ceph 49 M 2023-12-02T07:23:58.956 INFO:teuthology.orchestra.run.smithi067.stdout:Installing dependencies: 2023-12-02T07:23:58.956 INFO:teuthology.orchestra.run.smithi067.stdout: jq x86_64 1.6-3.el8 rhel-8-for-x86_64-appstream-rpms 202 k 2023-12-02T07:23:58.956 INFO:teuthology.orchestra.run.smithi067.stdout: libcephsqlite x86_64 2:18.0.0-7631.gbed76814.el8 ceph 183 k 2023-12-02T07:23:58.956 INFO:teuthology.orchestra.run.smithi067.stdout: oniguruma x86_64 6.8.2-2.el8 rhel-8-for-x86_64-appstream-rpms 187 k 2023-12-02T07:23:58.957 INFO:teuthology.orchestra.run.smithi067.stdout: socat x86_64 1.7.4.1-1.el8 rhel-8-for-x86_64-appstream-rpms 323 k 2023-12-02T07:23:58.957 INFO:teuthology.orchestra.run.smithi067.stdout: xmlstarlet x86_64 1.6.1-20.el8 lab-extras 70 k 2023-12-02T07:23:58.957 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:23:58.957 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction Summary 2023-12-02T07:23:58.957 INFO:teuthology.orchestra.run.smithi067.stdout:============================================================================================ 2023-12-02T07:23:58.958 INFO:teuthology.orchestra.run.smithi067.stdout:Install 6 Packages 2023-12-02T07:23:58.958 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:23:58.959 INFO:teuthology.orchestra.run.smithi067.stdout:Total download size: 50 M 2023-12-02T07:23:58.959 INFO:teuthology.orchestra.run.smithi067.stdout:Installed size: 223 M 2023-12-02T07:23:58.959 INFO:teuthology.orchestra.run.smithi067.stdout:Downloading Packages: 2023-12-02T07:23:58.997 INFO:teuthology.orchestra.run.smithi067.stdout:(1/6): xmlstarlet-1.6.1-20.el8.x86_64.rpm 1.7 MB/s | 70 kB 00:00 2023-12-02T07:23:59.056 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-12-02T07:23:59.098 INFO:teuthology.orchestra.run.smithi067.stdout:(2/6): socat-1.7.4.1-1.el8.x86_64.rpm 3.1 MB/s | 323 kB 00:00 2023-12-02T07:23:59.140 INFO:teuthology.orchestra.run.smithi067.stdout:(3/6): oniguruma-6.8.2-2.el8.x86_64.rpm 4.5 MB/s | 187 kB 00:00 2023-12-02T07:23:59.173 INFO:teuthology.orchestra.run.smithi067.stdout:(4/6): jq-1.6-3.el8.x86_64.rpm 5.9 MB/s | 202 kB 00:00 2023-12-02T07:23:59.262 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-12-02T07:23:59.415 INFO:teuthology.orchestra.run.smithi067.stdout:(5/6): libcephsqlite-18.0.0-7631.gbed76814.el8. 400 kB/s | 183 kB 00:00 2023-12-02T07:23:59.421 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T07:23:59.897 INFO:teuthology.orchestra.run.smithi106.stdout:(6/6): ceph-test-18.0.0-7631.gbed76814.el8.x86_ 8.6 MB/s | 49 MB 00:05 2023-12-02T07:23:59.898 INFO:teuthology.orchestra.run.smithi106.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:23:59.899 INFO:teuthology.orchestra.run.smithi106.stdout:Total 8.8 MB/s | 50 MB 00:05 2023-12-02T07:23:59.936 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction check 2023-12-02T07:23:59.957 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction check succeeded. 2023-12-02T07:23:59.957 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction test 2023-12-02T07:24:00.228 INFO:teuthology.orchestra.run.smithi106.stdout:Transaction test succeeded. 2023-12-02T07:24:00.232 INFO:teuthology.orchestra.run.smithi106.stdout:Running transaction 2023-12-02T07:24:00.680 INFO:teuthology.orchestra.run.smithi106.stdout: Preparing : 1/1 2023-12-02T07:24:00.817 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T07:24:00.895 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T07:24:01.129 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-12-02T07:24:01.276 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-12-02T07:24:01.474 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-12-02T07:24:01.633 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T07:24:02.907 INFO:teuthology.orchestra.run.smithi067.stdout:(6/6): ceph-test-18.0.0-7631.gbed76814.el8.x86_ 13 MB/s | 49 MB 00:03 2023-12-02T07:24:02.909 INFO:teuthology.orchestra.run.smithi067.stdout:-------------------------------------------------------------------------------- 2023-12-02T07:24:02.909 INFO:teuthology.orchestra.run.smithi067.stdout:Total 13 MB/s | 50 MB 00:03 2023-12-02T07:24:02.948 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction check 2023-12-02T07:24:02.971 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction check succeeded. 2023-12-02T07:24:02.971 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction test 2023-12-02T07:24:03.258 INFO:teuthology.orchestra.run.smithi067.stdout:Transaction test succeeded. 2023-12-02T07:24:03.262 INFO:teuthology.orchestra.run.smithi067.stdout:Running transaction 2023-12-02T07:24:03.783 INFO:teuthology.orchestra.run.smithi067.stdout: Preparing : 1/1 2023-12-02T07:24:03.942 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T07:24:04.037 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: oniguruma-6.8.2-2.el8.x86_64 1/6 2023-12-02T07:24:04.126 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T07:24:04.282 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : jq-1.6-3.el8.x86_64 2/6 2023-12-02T07:24:04.393 INFO:teuthology.orchestra.run.smithi078.stdout: Installing : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T07:24:04.443 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : socat-1.7.4.1-1.el8.x86_64 3/6 2023-12-02T07:24:04.623 INFO:teuthology.orchestra.run.smithi078.stdout: Running scriptlet: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T07:24:04.623 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 1/6 2023-12-02T07:24:04.623 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2/6 2023-12-02T07:24:04.623 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-12-02T07:24:04.623 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-12-02T07:24:04.624 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-12-02T07:24:04.650 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : xmlstarlet-1.6.1-20.el8.x86_64 4/6 2023-12-02T07:24:04.959 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T07:24:05.715 INFO:teuthology.orchestra.run.smithi078.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-12-02T07:24:05.715 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:01:11 ago on Sat 02 Dec 2023 07:22:54 AM UTC. 2023-12-02T07:24:06.354 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T07:24:06.580 INFO:teuthology.orchestra.run.smithi106.stdout: Installing : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T07:24:06.812 INFO:teuthology.orchestra.run.smithi106.stdout: Running scriptlet: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T07:24:06.812 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 1/6 2023-12-02T07:24:06.812 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2/6 2023-12-02T07:24:06.813 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-12-02T07:24:06.813 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-12-02T07:24:06.813 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-12-02T07:24:07.930 INFO:teuthology.orchestra.run.smithi106.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-12-02T07:24:07.930 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:01:12 ago on Sat 02 Dec 2023 07:22:55 AM UTC. 2023-12-02T07:24:08.027 INFO:teuthology.orchestra.run.smithi078.stdout:Installed products updated. 2023-12-02T07:24:08.206 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:24:08.206 INFO:teuthology.orchestra.run.smithi078.stdout:Installed: 2023-12-02T07:24:08.206 INFO:teuthology.orchestra.run.smithi078.stdout: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:08.206 INFO:teuthology.orchestra.run.smithi078.stdout: jq-1.6-3.el8.x86_64 2023-12-02T07:24:08.206 INFO:teuthology.orchestra.run.smithi078.stdout: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:08.207 INFO:teuthology.orchestra.run.smithi078.stdout: oniguruma-6.8.2-2.el8.x86_64 2023-12-02T07:24:08.207 INFO:teuthology.orchestra.run.smithi078.stdout: socat-1.7.4.1-1.el8.x86_64 2023-12-02T07:24:08.207 INFO:teuthology.orchestra.run.smithi078.stdout: xmlstarlet-1.6.1-20.el8.x86_64 2023-12-02T07:24:08.207 INFO:teuthology.orchestra.run.smithi078.stdout: 2023-12-02T07:24:08.207 INFO:teuthology.orchestra.run.smithi078.stdout:Complete! 2023-12-02T07:24:08.339 DEBUG:teuthology.orchestra.run.smithi078:> sudo yum -y install ceph 2023-12-02T07:24:08.671 INFO:teuthology.orchestra.run.smithi078.stdout:Updating Subscription Management repositories. 2023-12-02T07:24:09.492 INFO:teuthology.orchestra.run.smithi078.stdout:Last metadata expiration check: 0:01:15 ago on Sat 02 Dec 2023 07:22:54 AM UTC. 2023-12-02T07:24:10.003 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 5/6 2023-12-02T07:24:10.292 INFO:teuthology.orchestra.run.smithi106.stdout:Installed products updated. 2023-12-02T07:24:10.347 INFO:teuthology.orchestra.run.smithi067.stdout: Installing : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T07:24:10.475 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:24:10.475 INFO:teuthology.orchestra.run.smithi106.stdout:Installed: 2023-12-02T07:24:10.475 INFO:teuthology.orchestra.run.smithi106.stdout: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:10.475 INFO:teuthology.orchestra.run.smithi106.stdout: jq-1.6-3.el8.x86_64 2023-12-02T07:24:10.475 INFO:teuthology.orchestra.run.smithi106.stdout: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:10.475 INFO:teuthology.orchestra.run.smithi106.stdout: oniguruma-6.8.2-2.el8.x86_64 2023-12-02T07:24:10.475 INFO:teuthology.orchestra.run.smithi106.stdout: socat-1.7.4.1-1.el8.x86_64 2023-12-02T07:24:10.475 INFO:teuthology.orchestra.run.smithi106.stdout: xmlstarlet-1.6.1-20.el8.x86_64 2023-12-02T07:24:10.476 INFO:teuthology.orchestra.run.smithi106.stdout: 2023-12-02T07:24:10.476 INFO:teuthology.orchestra.run.smithi106.stdout:Complete! 2023-12-02T07:24:10.577 INFO:teuthology.orchestra.run.smithi067.stdout: Running scriptlet: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 6/6 2023-12-02T07:24:10.578 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 1/6 2023-12-02T07:24:10.578 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2/6 2023-12-02T07:24:10.578 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : xmlstarlet-1.6.1-20.el8.x86_64 3/6 2023-12-02T07:24:10.578 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : socat-1.7.4.1-1.el8.x86_64 4/6 2023-12-02T07:24:10.578 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : oniguruma-6.8.2-2.el8.x86_64 5/6 2023-12-02T07:24:10.622 DEBUG:teuthology.orchestra.run.smithi106:> sudo yum -y install ceph 2023-12-02T07:24:10.886 INFO:teuthology.orchestra.run.smithi078.stderr:Error: 2023-12-02T07:24:10.887 INFO:teuthology.orchestra.run.smithi078.stderr: Problem: conflicting requests 2023-12-02T07:24:10.887 INFO:teuthology.orchestra.run.smithi078.stderr: - nothing provides lua-devel needed by ceph-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:10.887 INFO:teuthology.orchestra.run.smithi078.stdout:(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) 2023-12-02T07:24:10.957 INFO:teuthology.orchestra.run.smithi106.stdout:Updating Subscription Management repositories. 2023-12-02T07:24:10.966 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:24:10.967 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 283, in _update_package_list_and_install _retry_if_failures_are_recoverable(remote, File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 155, in _retry_if_failures_are_recoverable return remote.run(args=args, stderr=stderr, stdout=stdout) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi078 with status 1: 'sudo yum -y install ceph' 2023-12-02T07:24:10.969 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 622, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 283, in _update_package_list_and_install _retry_if_failures_are_recoverable(remote, File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 155, in _retry_if_failures_are_recoverable return remote.run(args=args, stderr=stderr, stdout=stdout) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi078 with status 1: 'sudo yum -y install ceph' 2023-12-02T07:24:11.042 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=5a2d4707a08540e39486428f968860d6 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 622, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 218, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/__init__.py", line 81, in install_packages p.spawn( File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 283, in _update_package_list_and_install _retry_if_failures_are_recoverable(remote, File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/task/install/rpm.py", line 155, in _retry_if_failures_are_recoverable return remote.run(args=args, stderr=stderr, stdout=stdout) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_f2de108beb0a6dde7f3e6c96039071828a1f6269/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi078 with status 1: 'sudo yum -y install ceph' 2023-12-02T07:24:11.046 DEBUG:teuthology.run_tasks:Unwinding manager install 2023-12-02T07:24:11.057 DEBUG:teuthology.run_tasks:Unwinding manager clock 2023-12-02T07:24:11.111 INFO:teuthology.task.clock:Checking final clock skew... 2023-12-02T07:24:11.112 DEBUG:teuthology.orchestra.run.smithi067:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T07:24:11.125 DEBUG:teuthology.orchestra.run.smithi078:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T07:24:11.128 DEBUG:teuthology.orchestra.run.smithi106:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-12-02T07:24:11.133 INFO:teuthology.orchestra.run.smithi067.stderr:bash: ntpq: command not found 2023-12-02T07:24:11.137 INFO:teuthology.orchestra.run.smithi067.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T07:24:11.137 INFO:teuthology.orchestra.run.smithi067.stdout:=============================================================================== 2023-12-02T07:24:11.137 INFO:teuthology.orchestra.run.smithi067.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 6 +741us[ +741us] +/- 77ms 2023-12-02T07:24:11.137 INFO:teuthology.orchestra.run.smithi067.stdout:^* hv02.front.sepia.ceph.com 3 6 77 6 -2884us[-2999us] +/- 64ms 2023-12-02T07:24:11.137 INFO:teuthology.orchestra.run.smithi067.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 6 +2758us[+2758us] +/- 73ms 2023-12-02T07:24:11.138 INFO:teuthology.orchestra.run.smithi067.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:24:11.141 INFO:teuthology.orchestra.run.smithi078.stderr:bash: ntpq: command not found 2023-12-02T07:24:11.144 INFO:teuthology.orchestra.run.smithi106.stderr:bash: ntpq: command not found 2023-12-02T07:24:11.146 INFO:teuthology.orchestra.run.smithi078.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T07:24:11.146 INFO:teuthology.orchestra.run.smithi078.stdout:=============================================================================== 2023-12-02T07:24:11.146 INFO:teuthology.orchestra.run.smithi078.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 6 +704us[ +704us] +/- 77ms 2023-12-02T07:24:11.146 INFO:teuthology.orchestra.run.smithi078.stdout:^* hv02.front.sepia.ceph.com 3 6 77 7 -2921us[-2996us] +/- 64ms 2023-12-02T07:24:11.146 INFO:teuthology.orchestra.run.smithi078.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 7 +2765us[+2689us] +/- 73ms 2023-12-02T07:24:11.146 INFO:teuthology.orchestra.run.smithi078.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:24:11.147 INFO:teuthology.orchestra.run.smithi106.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-12-02T07:24:11.148 INFO:teuthology.orchestra.run.smithi106.stdout:=============================================================================== 2023-12-02T07:24:11.148 INFO:teuthology.orchestra.run.smithi106.stdout:^+ hv01.front.sepia.ceph.com 2 6 77 7 +678us[ +673us] +/- 77ms 2023-12-02T07:24:11.148 INFO:teuthology.orchestra.run.smithi106.stdout:^* hv02.front.sepia.ceph.com 3 6 77 6 -2946us[-2952us] +/- 64ms 2023-12-02T07:24:11.148 INFO:teuthology.orchestra.run.smithi106.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 7 +2714us[+2709us] +/- 73ms 2023-12-02T07:24:11.148 INFO:teuthology.orchestra.run.smithi106.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2023-12-02T07:24:11.149 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2023-12-02T07:24:11.161 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2023-12-02T07:24:11.162 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2023-12-02T07:24:11.194 DEBUG:teuthology.orchestra.run.smithi067:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2023-12-02T07:24:11.297 DEBUG:teuthology.orchestra.run.smithi078:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2023-12-02T07:24:11.393 DEBUG:teuthology.orchestra.run.smithi106:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2023-12-02T07:24:11.488 DEBUG:teuthology.orchestra.run.smithi067:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-12-02T07:24:11.520 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:24:11.521 DEBUG:teuthology.orchestra.run.smithi078:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-12-02T07:24:11.552 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:24:11.552 DEBUG:teuthology.orchestra.run.smithi106:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-12-02T07:24:11.583 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:24:11.584 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2023-12-02T07:24:11.594 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2023-12-02T07:24:11.645 INFO:teuthology.task.internal:Duration was 691.530614 seconds 2023-12-02T07:24:11.645 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2023-12-02T07:24:11.686 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2023-12-02T07:24:11.687 DEBUG:teuthology.orchestra.run.smithi067:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-02T07:24:11.688 INFO:teuthology.orchestra.run.smithi067.stdout: Verifying : jq-1.6-3.el8.x86_64 6/6 2023-12-02T07:24:11.688 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:01:15 ago on Sat 02 Dec 2023 07:22:56 AM UTC. 2023-12-02T07:24:11.689 DEBUG:teuthology.orchestra.run.smithi078:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-02T07:24:11.691 DEBUG:teuthology.orchestra.run.smithi106:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-12-02T07:24:11.735 INFO:teuthology.orchestra.run.smithi067.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T07:24:11.736 INFO:teuthology.orchestra.run.smithi078.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T07:24:11.737 INFO:teuthology.orchestra.run.smithi106.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-12-02T07:24:11.800 INFO:teuthology.orchestra.run.smithi106.stdout:Last metadata expiration check: 0:01:16 ago on Sat 02 Dec 2023 07:22:55 AM UTC. 2023-12-02T07:24:12.105 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2023-12-02T07:24:12.105 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi067.front.sepia.ceph.com 2023-12-02T07:24:12.106 DEBUG:teuthology.orchestra.run.smithi067:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2023-12-02T07:24:12.127 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi078.front.sepia.ceph.com 2023-12-02T07:24:12.127 DEBUG:teuthology.orchestra.run.smithi078:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2023-12-02T07:24:12.150 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi106.front.sepia.ceph.com 2023-12-02T07:24:12.150 DEBUG:teuthology.orchestra.run.smithi106:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2023-12-02T07:24:12.171 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2023-12-02T07:24:12.171 DEBUG:teuthology.orchestra.run.smithi067:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-02T07:24:12.173 DEBUG:teuthology.orchestra.run.smithi078:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-02T07:24:12.192 DEBUG:teuthology.orchestra.run.smithi106:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-12-02T07:24:12.248 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2023-12-02T07:24:12.249 DEBUG:teuthology.orchestra.run.smithi067:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-02T07:24:12.252 DEBUG:teuthology.orchestra.run.smithi078:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-02T07:24:12.270 DEBUG:teuthology.orchestra.run.smithi106:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-12-02T07:24:12.371 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2023-12-02T07:24:12.380 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2023-12-02T07:24:12.381 DEBUG:teuthology.orchestra.run.smithi067:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-02T07:24:12.546 DEBUG:teuthology.orchestra.run.smithi078:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-02T07:24:12.587 DEBUG:teuthology.orchestra.run.smithi106:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-12-02T07:24:12.623 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2023-12-02T07:24:12.632 DEBUG:teuthology.orchestra.run.smithi067:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2023-12-02T07:24:12.634 DEBUG:teuthology.orchestra.run.smithi078:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2023-12-02T07:24:12.636 DEBUG:teuthology.orchestra.run.smithi106:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2023-12-02T07:24:12.660 INFO:teuthology.orchestra.run.smithi067.stdout:kernel.core_pattern = core 2023-12-02T07:24:12.660 INFO:teuthology.orchestra.run.smithi078.stdout:kernel.core_pattern = core 2023-12-02T07:24:12.689 INFO:teuthology.orchestra.run.smithi106.stdout:kernel.core_pattern = core 2023-12-02T07:24:12.706 DEBUG:teuthology.orchestra.run.smithi067:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-02T07:24:12.747 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:24:12.748 DEBUG:teuthology.orchestra.run.smithi078:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-02T07:24:12.763 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:24:12.763 DEBUG:teuthology.orchestra.run.smithi106:> test -e /home/ubuntu/cephtest/archive/coredump 2023-12-02T07:24:12.779 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:24:12.780 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2023-12-02T07:24:12.790 INFO:teuthology.task.internal:Transferring archived files... 2023-12-02T07:24:12.791 DEBUG:teuthology.misc:Transferring archived files from smithi067:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229/remote/smithi067 2023-12-02T07:24:12.792 DEBUG:teuthology.orchestra.run.smithi067:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-02T07:24:12.849 DEBUG:teuthology.misc:Transferring archived files from smithi078:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229/remote/smithi078 2023-12-02T07:24:12.849 DEBUG:teuthology.orchestra.run.smithi078:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-02T07:24:12.902 DEBUG:teuthology.misc:Transferring archived files from smithi106:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229/remote/smithi106 2023-12-02T07:24:12.902 DEBUG:teuthology.orchestra.run.smithi106:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-12-02T07:24:12.972 INFO:teuthology.task.internal:Removing archive directory... 2023-12-02T07:24:12.973 DEBUG:teuthology.orchestra.run.smithi067:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-02T07:24:12.975 DEBUG:teuthology.orchestra.run.smithi078:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-02T07:24:12.977 DEBUG:teuthology.orchestra.run.smithi106:> rm -rf -- /home/ubuntu/cephtest/archive 2023-12-02T07:24:12.993 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2023-12-02T07:24:13.006 INFO:teuthology.task.internal:Not uploading archives. 2023-12-02T07:24:13.006 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2023-12-02T07:24:13.055 INFO:teuthology.task.internal:Tidying up after the test... 2023-12-02T07:24:13.055 DEBUG:teuthology.orchestra.run.smithi067:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-02T07:24:13.058 DEBUG:teuthology.orchestra.run.smithi078:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-02T07:24:13.060 DEBUG:teuthology.orchestra.run.smithi106:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-12-02T07:24:13.072 INFO:teuthology.orchestra.run.smithi067.stdout: 262320 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 2 07:24 /home/ubuntu/cephtest 2023-12-02T07:24:13.073 INFO:teuthology.orchestra.run.smithi078.stdout: 262320 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 2 07:24 /home/ubuntu/cephtest 2023-12-02T07:24:13.075 INFO:teuthology.orchestra.run.smithi106.stdout: 262320 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Dec 2 07:24 /home/ubuntu/cephtest 2023-12-02T07:24:13.076 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2023-12-02T07:24:13.096 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2023-12-02T07:24:13.180 INFO:teuthology.nuke:Checking targets against current locks 2023-12-02T07:24:13.207 DEBUG:teuthology.nuke:shortname: smithi067 2023-12-02T07:24:13.208 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-02T07:24:13.214 INFO:teuthology.orchestra.run.smithi106.stderr:Error: 2023-12-02T07:24:13.214 INFO:teuthology.orchestra.run.smithi106.stderr: Problem: conflicting requests 2023-12-02T07:24:13.214 INFO:teuthology.orchestra.run.smithi106.stderr: - nothing provides lua-devel needed by ceph-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:13.214 INFO:teuthology.orchestra.run.smithi106.stdout:(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) 2023-12-02T07:24:13.231 DEBUG:teuthology.nuke:shortname: smithi078 2023-12-02T07:24:13.231 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-02T07:24:13.237 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi067.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-02 07:07:09.194058', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T07:24:13.257 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi078.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-02 07:07:09.195435', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T07:24:13.258 DEBUG:teuthology.nuke:shortname: smithi106 2023-12-02T07:24:13.258 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-12-02T07:24:13.291 INFO:teuthology.orchestra.console.smithi067:Power off 2023-12-02T07:24:13.291 DEBUG:teuthology.orchestra.console.smithi067:pexpect command: ipmitool -H smithi067.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-02T07:24:13.301 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-12-02T07:24:13.303 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi106.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-12-01_18:06:01-orch-main-distro-default-smithi/7475229', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-12-02 07:07:09.196553', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLVvN3+LmzPZ4ixiwyCkS3KZLZ9R6MOPm+kPtaJbl8fExpzbk8TudXCcJWHBL7DGPWFvye2jT6sei9eiX0EUQYs='} 2023-12-02T07:24:13.313 INFO:teuthology.orchestra.console.smithi078:Power off 2023-12-02T07:24:13.313 DEBUG:teuthology.orchestra.console.smithi078:pexpect command: ipmitool -H smithi078.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-02T07:24:13.324 DEBUG:teuthology.orchestra.console.smithi067:power off output: Chassis Power Control: Down/Off 2023-12-02T07:24:13.324 DEBUG:teuthology.orchestra.console.smithi067:pexpect command: ipmitool -H smithi067.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:13.336 DEBUG:teuthology.orchestra.console.smithi078:power off output: Chassis Power Control: Down/Off 2023-12-02T07:24:13.337 DEBUG:teuthology.orchestra.console.smithi078:pexpect command: ipmitool -H smithi078.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:13.353 DEBUG:teuthology.orchestra.console.smithi067:check power output: Chassis Power is on 2023-12-02T07:24:13.365 DEBUG:teuthology.orchestra.console.smithi078:check power output: Chassis Power is on 2023-12-02T07:24:13.378 INFO:teuthology.orchestra.console.smithi106:Power off 2023-12-02T07:24:13.379 DEBUG:teuthology.orchestra.console.smithi106:pexpect command: ipmitool -H smithi106.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-12-02T07:24:13.404 DEBUG:teuthology.orchestra.console.smithi106:power off output: Chassis Power Control: Down/Off 2023-12-02T07:24:13.404 DEBUG:teuthology.orchestra.console.smithi106:pexpect command: ipmitool -H smithi106.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:13.428 DEBUG:teuthology.orchestra.console.smithi106:check power output: Chassis Power is on 2023-12-02T07:24:14.147 INFO:teuthology.orchestra.run.smithi067.stdout:Installed products updated. 2023-12-02T07:24:14.345 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:24:14.346 INFO:teuthology.orchestra.run.smithi067.stdout:Installed: 2023-12-02T07:24:14.346 INFO:teuthology.orchestra.run.smithi067.stdout: ceph-test-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:14.346 INFO:teuthology.orchestra.run.smithi067.stdout: jq-1.6-3.el8.x86_64 2023-12-02T07:24:14.346 INFO:teuthology.orchestra.run.smithi067.stdout: libcephsqlite-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:14.346 INFO:teuthology.orchestra.run.smithi067.stdout: oniguruma-6.8.2-2.el8.x86_64 2023-12-02T07:24:14.346 INFO:teuthology.orchestra.run.smithi067.stdout: socat-1.7.4.1-1.el8.x86_64 2023-12-02T07:24:14.347 INFO:teuthology.orchestra.run.smithi067.stdout: xmlstarlet-1.6.1-20.el8.x86_64 2023-12-02T07:24:14.347 INFO:teuthology.orchestra.run.smithi067.stdout: 2023-12-02T07:24:14.347 INFO:teuthology.orchestra.run.smithi067.stdout:Complete! 2023-12-02T07:24:14.530 DEBUG:teuthology.orchestra.run.smithi067:> sudo yum -y install ceph 2023-12-02T07:24:14.885 INFO:teuthology.orchestra.run.smithi067.stdout:Updating Subscription Management repositories. 2023-12-02T07:24:15.733 INFO:teuthology.orchestra.run.smithi067.stdout:Last metadata expiration check: 0:01:19 ago on Sat 02 Dec 2023 07:22:56 AM UTC. 2023-12-02T07:24:17.289 INFO:teuthology.orchestra.run.smithi067.stderr:Error: 2023-12-02T07:24:17.290 INFO:teuthology.orchestra.run.smithi067.stderr: Problem: conflicting requests 2023-12-02T07:24:17.290 INFO:teuthology.orchestra.run.smithi067.stderr: - nothing provides lua-devel needed by ceph-2:18.0.0-7631.gbed76814.el8.x86_64 2023-12-02T07:24:17.290 INFO:teuthology.orchestra.run.smithi067.stdout:(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) 2023-12-02T07:24:17.350 DEBUG:teuthology.orchestra.run:got remote process result: None 2023-12-02T07:24:17.354 DEBUG:teuthology.orchestra.console.smithi067:pexpect command: ipmitool -H smithi067.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:17.365 DEBUG:teuthology.orchestra.console.smithi078:pexpect command: ipmitool -H smithi078.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:17.430 DEBUG:teuthology.orchestra.console.smithi106:pexpect command: ipmitool -H smithi106.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:17.464 DEBUG:teuthology.orchestra.console.smithi067:check power output: Chassis Power is on 2023-12-02T07:24:17.474 DEBUG:teuthology.orchestra.console.smithi078:check power output: Chassis Power is on 2023-12-02T07:24:17.540 DEBUG:teuthology.orchestra.console.smithi106:check power output: Chassis Power is on 2023-12-02T07:24:21.466 DEBUG:teuthology.orchestra.console.smithi067:pexpect command: ipmitool -H smithi067.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:21.475 DEBUG:teuthology.orchestra.console.smithi078:pexpect command: ipmitool -H smithi078.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:21.541 DEBUG:teuthology.orchestra.console.smithi106:pexpect command: ipmitool -H smithi106.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:21.576 DEBUG:teuthology.orchestra.console.smithi067:check power output: Chassis Power is on 2023-12-02T07:24:21.584 DEBUG:teuthology.orchestra.console.smithi078:check power output: Chassis Power is on 2023-12-02T07:24:21.652 DEBUG:teuthology.orchestra.console.smithi106:check power output: Chassis Power is off 2023-12-02T07:24:21.753 INFO:teuthology.orchestra.console.smithi106:Power off completed 2023-12-02T07:24:25.578 DEBUG:teuthology.orchestra.console.smithi067:pexpect command: ipmitool -H smithi067.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:25.588 DEBUG:teuthology.orchestra.console.smithi078:pexpect command: ipmitool -H smithi078.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-12-02T07:24:25.691 DEBUG:teuthology.orchestra.console.smithi067:check power output: Chassis Power is off 2023-12-02T07:24:25.699 DEBUG:teuthology.orchestra.console.smithi078:check power output: Chassis Power is off 2023-12-02T07:24:25.792 INFO:teuthology.orchestra.console.smithi067:Power off completed 2023-12-02T07:24:25.802 INFO:teuthology.orchestra.console.smithi078:Power off completed 2023-12-02T07:24:25.909 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: 691.530613899231 failure_reason: 'Command failed on smithi078 with status 1: ''sudo yum -y install ceph''' flavor: default owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=5a2d4707a08540e39486428f968860d6 status: fail success: false 2023-12-02T07:24:25.910 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-12-02T07:24:25.993 INFO:teuthology.run:FAIL