2024-04-15T21:57:30.993 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T21:57:30.993 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528 --name teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi --verbose --owner scheduled_teuthology@teuthology --description orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/classic task/test_host_drain} -- /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/orig.config.yaml 2024-04-15T21:57:31.028 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:57:31.117 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528 branch: squid description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7657528' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false 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\) - MON_DOWN sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.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: 7775 sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 sleep_before_teardown: 0 subset: 18/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 461a84e6fbbf089011eafd13b98169fb9e9b8cc9 targets: smithi040.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCbCCmJ26BZkZHmlxVw6rNuqX3gdHFXnFi0Bx8VcCLthD6rml+If4oLef/rO8nkdRRtl2T238Zes+YauQYNx9c0= smithi057.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKZst1g+LHRo7SXrzSNMjRKbYKM0JEiRFO60iJDobt8ReyqUCZm/dkyfVcj6spvCoT9l8ITILlVRY19c3XUPkOw= smithi087.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAurQfbsbOKCfl44z/Y1afOpTdt/ki3Kl7MPDH83QPB1sJqICWiTq6NiYE+XIV9BV6CdKWskmp27vyE2eglG4hI= tasks: - pexec: all: - sudo dnf install runc -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.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: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-15_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T21:57:31.118 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa; will attempt to use it 2024-04-15T21:57:31.118 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks 2024-04-15T21:57:31.119 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T21:57:31.120 INFO:teuthology.task.internal:Checking packages... 2024-04-15T21:57:31.144 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'a9a752df26c63acad72e1b3569fd79a515ca0765' 2024-04-15T21:57:31.144 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T21:57:31.144 INFO:teuthology.packaging:ref: None 2024-04-15T21:57:31.145 INFO:teuthology.packaging:tag: None 2024-04-15T21:57:31.145 INFO:teuthology.packaging:branch: squid 2024-04-15T21:57:31.145 INFO:teuthology.packaging:sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T21:57:31.145 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-04-15T21:57:31.422 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2114.ga9a752df 2024-04-15T21:57:31.424 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T21:57:31.430 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T21:57:31.430 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T21:57:31.452 INFO:teuthology.task.internal:Saving configuration 2024-04-15T21:57:31.466 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T21:57:31.472 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:57:31.498 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi040.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:52:30.144336', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCbCCmJ26BZkZHmlxVw6rNuqX3gdHFXnFi0Bx8VcCLthD6rml+If4oLef/rO8nkdRRtl2T238Zes+YauQYNx9c0='} 2024-04-15T21:57:31.523 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi057.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:52:30.147055', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKZst1g+LHRo7SXrzSNMjRKbYKM0JEiRFO60iJDobt8ReyqUCZm/dkyfVcj6spvCoT9l8ITILlVRY19c3XUPkOw='} 2024-04-15T21:57:31.547 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi087.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:52:30.145817', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAurQfbsbOKCfl44z/Y1afOpTdt/ki3Kl7MPDH83QPB1sJqICWiTq6NiYE+XIV9BV6CdKWskmp27vyE2eglG4hI='} 2024-04-15T21:57:31.547 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T21:57:31.554 INFO:teuthology.task.internal:roles: ubuntu@smithi040.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-15T21:57:31.554 INFO:teuthology.task.internal:roles: ubuntu@smithi057.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-15T21:57:31.554 INFO:teuthology.task.internal:roles: ubuntu@smithi087.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-15T21:57:31.554 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T21:57:31.669 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fa736e5ff70>, signals=[15]) 2024-04-15T21:57:31.670 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T21:57:31.677 INFO:teuthology.task.internal:Opening connections... 2024-04-15T21:57:31.678 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi040.front.sepia.ceph.com 2024-04-15T21:57:31.679 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:57:31.790 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi057.front.sepia.ceph.com 2024-04-15T21:57:31.791 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:57:31.899 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi087.front.sepia.ceph.com 2024-04-15T21:57:31.900 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi087.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:57:31.995 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T21:57:32.002 DEBUG:teuthology.orchestra.run.smithi040:> uname -m 2024-04-15T21:57:32.021 INFO:teuthology.orchestra.run.smithi040.stdout:x86_64 2024-04-15T21:57:32.021 DEBUG:teuthology.orchestra.run.smithi040:> cat /etc/os-release 2024-04-15T21:57:32.079 INFO:teuthology.orchestra.run.smithi040.stdout:NAME="CentOS Stream" 2024-04-15T21:57:32.079 INFO:teuthology.orchestra.run.smithi040.stdout:VERSION="9" 2024-04-15T21:57:32.079 INFO:teuthology.orchestra.run.smithi040.stdout:ID="centos" 2024-04-15T21:57:32.079 INFO:teuthology.orchestra.run.smithi040.stdout:ID_LIKE="rhel fedora" 2024-04-15T21:57:32.079 INFO:teuthology.orchestra.run.smithi040.stdout:VERSION_ID="9" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:PLATFORM_ID="platform:el9" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:ANSI_COLOR="0;31" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:LOGO="fedora-logo-icon" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:HOME_URL="https://centos.org/" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T21:57:32.080 INFO:teuthology.orchestra.run.smithi040.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T21:57:32.081 INFO:teuthology.lock.ops:Updating smithi040.front.sepia.ceph.com on lock server 2024-04-15T21:57:32.103 DEBUG:teuthology.orchestra.run.smithi057:> uname -m 2024-04-15T21:57:32.122 INFO:teuthology.orchestra.run.smithi057.stdout:x86_64 2024-04-15T21:57:32.122 DEBUG:teuthology.orchestra.run.smithi057:> cat /etc/os-release 2024-04-15T21:57:32.180 INFO:teuthology.orchestra.run.smithi057.stdout:NAME="CentOS Stream" 2024-04-15T21:57:32.180 INFO:teuthology.orchestra.run.smithi057.stdout:VERSION="9" 2024-04-15T21:57:32.180 INFO:teuthology.orchestra.run.smithi057.stdout:ID="centos" 2024-04-15T21:57:32.180 INFO:teuthology.orchestra.run.smithi057.stdout:ID_LIKE="rhel fedora" 2024-04-15T21:57:32.180 INFO:teuthology.orchestra.run.smithi057.stdout:VERSION_ID="9" 2024-04-15T21:57:32.180 INFO:teuthology.orchestra.run.smithi057.stdout:PLATFORM_ID="platform:el9" 2024-04-15T21:57:32.180 INFO:teuthology.orchestra.run.smithi057.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T21:57:32.181 INFO:teuthology.orchestra.run.smithi057.stdout:ANSI_COLOR="0;31" 2024-04-15T21:57:32.181 INFO:teuthology.orchestra.run.smithi057.stdout:LOGO="fedora-logo-icon" 2024-04-15T21:57:32.181 INFO:teuthology.orchestra.run.smithi057.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T21:57:32.181 INFO:teuthology.orchestra.run.smithi057.stdout:HOME_URL="https://centos.org/" 2024-04-15T21:57:32.181 INFO:teuthology.orchestra.run.smithi057.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T21:57:32.181 INFO:teuthology.orchestra.run.smithi057.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T21:57:32.181 INFO:teuthology.orchestra.run.smithi057.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T21:57:32.181 INFO:teuthology.lock.ops:Updating smithi057.front.sepia.ceph.com on lock server 2024-04-15T21:57:32.203 DEBUG:teuthology.orchestra.run.smithi087:> uname -m 2024-04-15T21:57:32.221 INFO:teuthology.orchestra.run.smithi087.stdout:x86_64 2024-04-15T21:57:32.221 DEBUG:teuthology.orchestra.run.smithi087:> cat /etc/os-release 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:NAME="CentOS Stream" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:VERSION="9" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:ID="centos" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:ID_LIKE="rhel fedora" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:VERSION_ID="9" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:PLATFORM_ID="platform:el9" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:ANSI_COLOR="0;31" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:LOGO="fedora-logo-icon" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T21:57:32.279 INFO:teuthology.orchestra.run.smithi087.stdout:HOME_URL="https://centos.org/" 2024-04-15T21:57:32.280 INFO:teuthology.orchestra.run.smithi087.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T21:57:32.280 INFO:teuthology.orchestra.run.smithi087.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T21:57:32.280 INFO:teuthology.orchestra.run.smithi087.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T21:57:32.280 INFO:teuthology.lock.ops:Updating smithi087.front.sepia.ceph.com on lock server 2024-04-15T21:57:32.311 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T21:57:32.320 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T21:57:32.329 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T21:57:32.330 DEBUG:teuthology.orchestra.run.smithi040:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:57:32.332 DEBUG:teuthology.orchestra.run.smithi057:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:57:32.335 DEBUG:teuthology.orchestra.run.smithi087:> test '!' -e /home/ubuntu/cephtest 2024-04-15T21:57:32.351 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T21:57:32.360 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T21:57:32.360 DEBUG:teuthology.orchestra.run.smithi040:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:57:32.391 DEBUG:teuthology.orchestra.run.smithi057:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:57:32.393 DEBUG:teuthology.orchestra.run.smithi087:> test -z $(ls -A /var/lib/ceph) 2024-04-15T21:57:32.483 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T21:57:32.569 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T21:57:32.584 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T21:57:32.584 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-15T21:57:32.584 DEBUG:teuthology.orchestra.run.smithi040:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:57:32.585 DEBUG:teuthology.orchestra.run.smithi057:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:57:32.585 DEBUG:teuthology.orchestra.run.smithi087:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T21:57:32.602 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:57:32.602 DEBUG:teuthology.orchestra.run.smithi087:> uname -r 2024-04-15T21:57:32.603 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:57:32.604 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:57:32.604 DEBUG:teuthology.orchestra.run.smithi040:> uname -r 2024-04-15T21:57:32.605 DEBUG:teuthology.orchestra.run.smithi057:> uname -r 2024-04-15T21:57:32.660 INFO:teuthology.orchestra.run.smithi087.stdout:5.14.0-361.el9.x86_64 2024-04-15T21:57:32.660 INFO:teuthology.task.kernel:Running kernel on smithi087: 5.14.0-361.el9.x86_64 2024-04-15T21:57:32.660 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum install -y kernel 2024-04-15T21:57:32.661 INFO:teuthology.orchestra.run.smithi040.stdout:5.14.0-361.el9.x86_64 2024-04-15T21:57:32.662 INFO:teuthology.task.kernel:Running kernel on smithi040: 5.14.0-361.el9.x86_64 2024-04-15T21:57:32.662 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum install -y kernel 2024-04-15T21:57:32.663 INFO:teuthology.orchestra.run.smithi057.stdout:5.14.0-361.el9.x86_64 2024-04-15T21:57:32.664 INFO:teuthology.task.kernel:Running kernel on smithi057: 5.14.0-361.el9.x86_64 2024-04-15T21:57:32.664 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum install -y kernel 2024-04-15T21:57:35.196 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS-9 - AppStream 7.4 MB/s | 6.7 MB 00:00 2024-04-15T21:57:35.272 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS-9 - AppStream 6.9 MB/s | 6.7 MB 00:00 2024-04-15T21:57:35.412 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS-9 - AppStream 6.2 MB/s | 6.7 MB 00:01 2024-04-15T21:57:36.820 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS-9 - BaseOS 4.6 MB/s | 2.0 MB 00:00 2024-04-15T21:57:36.931 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS-9 - BaseOS 3.7 MB/s | 2.0 MB 00:00 2024-04-15T21:57:37.028 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS-9 - BaseOS 4.4 MB/s | 2.0 MB 00:00 2024-04-15T21:57:37.653 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 9 - BaseOS 16 MB/s | 8.0 MB 00:00 2024-04-15T21:57:37.836 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS Stream 9 - BaseOS 18 MB/s | 8.0 MB 00:00 2024-04-15T21:57:37.855 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.0 MB 00:00 2024-04-15T21:57:44.036 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 9 - AppStream 3.6 MB/s | 19 MB 00:05 2024-04-15T21:57:48.479 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 9 - CRB 8.4 MB/s | 6.2 MB 00:00 2024-04-15T21:57:49.538 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS Stream 9 - AppStream 1.8 MB/s | 19 MB 00:10 2024-04-15T21:57:50.313 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 9 - Extras packages 26 kB/s | 16 kB 00:00 2024-04-15T21:57:52.258 INFO:teuthology.orchestra.run.smithi057.stdout:Extra Packages for Enterprise Linux 12 MB/s | 21 MB 00:01 2024-04-15T21:57:53.716 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS Stream 9 - CRB 8.8 MB/s | 6.2 MB 00:00 2024-04-15T21:57:55.382 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS Stream 9 - Extras packages 33 kB/s | 16 kB 00:00 2024-04-15T21:57:57.108 INFO:teuthology.orchestra.run.smithi087.stdout:Extra Packages for Enterprise Linux 13 MB/s | 21 MB 00:01 2024-04-15T21:57:57.555 INFO:teuthology.orchestra.run.smithi057.stdout:lab-extras 42 kB/s | 1.7 kB 00:00 2024-04-15T21:57:59.979 INFO:teuthology.orchestra.run.smithi057.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T21:57:59.979 INFO:teuthology.orchestra.run.smithi057.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T21:58:00.084 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T21:58:00.090 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T21:58:00.091 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T21:58:00.092 INFO:teuthology.orchestra.run.smithi057.stdout:Install 4 Packages 2024-04-15T21:58:00.092 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T21:58:00.092 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 77 M 2024-04-15T21:58:00.092 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 123 M 2024-04-15T21:58:00.092 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T21:58:00.273 INFO:teuthology.orchestra.run.smithi057.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.5 MB/s | 277 kB 00:00 2024-04-15T21:58:00.782 INFO:teuthology.orchestra.run.smithi057.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 22 MB/s | 15 MB 00:00 2024-04-15T21:58:01.424 INFO:teuthology.orchestra.run.smithi057.stdout:(3/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 25 MB/s | 34 MB 00:01 2024-04-15T21:58:01.908 INFO:teuthology.orchestra.run.smithi057.stdout:(4/4): kernel-modules-core-5.14.0-438.el9.x86_6 17 MB/s | 28 MB 00:01 2024-04-15T21:58:01.910 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:58:01.910 INFO:teuthology.orchestra.run.smithi057.stdout:Total 42 MB/s | 77 MB 00:01 2024-04-15T21:58:01.911 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T21:58:02.199 INFO:teuthology.orchestra.run.smithi087.stdout:lab-extras 10 kB/s | 1.7 kB 00:00 2024-04-15T21:58:02.372 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T21:58:02.372 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T21:58:02.752 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS Stream 9 - AppStream 815 kB/s | 19 MB 00:23 2024-04-15T21:58:03.241 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T21:58:03.242 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T21:58:04.590 INFO:teuthology.orchestra.run.smithi087.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T21:58:04.590 INFO:teuthology.orchestra.run.smithi087.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T21:58:04.697 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T21:58:04.701 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T21:58:04.702 INFO:teuthology.orchestra.run.smithi087.stdout:Install 4 Packages 2024-04-15T21:58:04.703 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T21:58:04.703 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 77 M 2024-04-15T21:58:04.703 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 123 M 2024-04-15T21:58:04.703 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T21:58:04.860 INFO:teuthology.orchestra.run.smithi087.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.7 MB/s | 277 kB 00:00 2024-04-15T21:58:05.601 INFO:teuthology.orchestra.run.smithi087.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 17 MB/s | 15 MB 00:00 2024-04-15T21:58:05.678 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T21:58:06.294 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:58:06.352 INFO:teuthology.orchestra.run.smithi087.stdout:(3/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 20 MB/s | 34 MB 00:01 2024-04-15T21:58:06.382 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:58:06.602 INFO:teuthology.orchestra.run.smithi087.stdout:(4/4): kernel-modules-core-5.14.0-438.el9.x86_6 16 MB/s | 28 MB 00:01 2024-04-15T21:58:06.604 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:58:06.605 INFO:teuthology.orchestra.run.smithi087.stdout:Total 40 MB/s | 77 MB 00:01 2024-04-15T21:58:06.605 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T21:58:06.961 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T21:58:06.961 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T21:58:07.829 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T21:58:07.829 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T21:58:08.026 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS Stream 9 - CRB 3.8 MB/s | 6.2 MB 00:01 2024-04-15T21:58:09.260 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:58:09.401 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:58:09.444 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS Stream 9 - Extras packages 88 kB/s | 16 kB 00:00 2024-04-15T21:58:10.124 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T21:58:10.716 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:58:10.794 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:58:12.990 INFO:teuthology.orchestra.run.smithi040.stdout:Extra Packages for Enterprise Linux 6.1 MB/s | 21 MB 00:03 2024-04-15T21:58:13.519 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:58:13.656 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:58:14.475 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:58:14.517 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:18.212 INFO:teuthology.orchestra.run.smithi040.stdout:lab-extras 41 kB/s | 1.7 kB 00:00 2024-04-15T21:58:18.371 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:58:18.480 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:19.629 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:20.677 INFO:teuthology.orchestra.run.smithi040.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T21:58:20.677 INFO:teuthology.orchestra.run.smithi040.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T21:58:20.771 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T21:58:20.778 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T21:58:20.778 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T21:58:20.778 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T21:58:20.778 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout:Install 4 Packages 2024-04-15T21:58:20.779 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T21:58:20.780 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 77 M 2024-04-15T21:58:20.780 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 123 M 2024-04-15T21:58:20.780 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T21:58:21.080 INFO:teuthology.orchestra.run.smithi040.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 926 kB/s | 277 kB 00:00 2024-04-15T21:58:21.988 INFO:teuthology.orchestra.run.smithi040.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 13 MB/s | 15 MB 00:01 2024-04-15T21:58:22.439 INFO:teuthology.orchestra.run.smithi040.stdout:(3/4): kernel-modules-core-5.14.0-438.el9.x86_6 20 MB/s | 28 MB 00:01 2024-04-15T21:58:22.780 INFO:teuthology.orchestra.run.smithi040.stdout:(4/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 17 MB/s | 34 MB 00:01 2024-04-15T21:58:22.783 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:58:22.784 INFO:teuthology.orchestra.run.smithi040.stdout:Total 38 MB/s | 77 MB 00:02 2024-04-15T21:58:22.784 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T21:58:23.211 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:23.250 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T21:58:23.251 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T21:58:24.124 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T21:58:24.125 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T21:58:26.535 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T21:58:27.159 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:58:27.248 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:58:30.171 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:58:30.308 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:58:35.411 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:58:35.449 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:40.572 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:50.266 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:50.266 INFO:teuthology.orchestra.run.smithi057.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T21:58:50.266 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T21:58:50.311 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:50.716 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:50.716 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:58:50.716 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:58:50.716 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:58:51.113 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:51.114 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T21:58:51.114 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T21:58:51.114 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T21:58:51.114 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T21:58:51.114 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T21:58:51.114 INFO:teuthology.orchestra.run.smithi057.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T21:58:51.114 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T21:58:51.114 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T21:58:51.461 DEBUG:teuthology.orchestra.run.smithi057:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:58:51.568 INFO:teuthology.orchestra.run.smithi057.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:58:51.569 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:58:51.569 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T21:58:51.570 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:58:51.570 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:58:51.570 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T21:58:51.570 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi057.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:58:51.570 DEBUG:teuthology.orchestra.run.smithi057:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:58:51.655 INFO:teuthology.orchestra.run.smithi057.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:58:51.655 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:58:51.655 DEBUG:teuthology.orchestra.run.smithi057:> sudo rpm -qi grub2-tools 2024-04-15T21:58:51.699 INFO:teuthology.orchestra.run.smithi057.stdout:Name : grub2-tools 2024-04-15T21:58:51.699 INFO:teuthology.orchestra.run.smithi057.stdout:Epoch : 1 2024-04-15T21:58:51.699 INFO:teuthology.orchestra.run.smithi057.stdout:Version : 2.06 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Release : 68.el9 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Architecture: x86_64 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Group : Unspecified 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Size : 8264254 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:License : GPLv3+ 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Packager : builder@centos.org 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Vendor : CentOS 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T21:58:51.700 INFO:teuthology.orchestra.run.smithi057.stdout:Summary : Support tools for GRUB. 2024-04-15T21:58:51.701 INFO:teuthology.orchestra.run.smithi057.stdout:Description : 2024-04-15T21:58:51.701 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T21:58:51.701 INFO:teuthology.orchestra.run.smithi057.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T21:58:51.701 INFO:teuthology.orchestra.run.smithi057.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T21:58:51.701 INFO:teuthology.orchestra.run.smithi057.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T21:58:51.701 INFO:teuthology.orchestra.run.smithi057.stdout:hardware devices. 2024-04-15T21:58:51.701 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T21:58:51.701 INFO:teuthology.orchestra.run.smithi057.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T21:58:51.702 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T21:58:51.702 INFO:teuthology.task.kernel:Updating grub on smithi057 to boot 5.14.0-438.el9.x86_64 2024-04-15T21:58:51.703 DEBUG:teuthology.orchestra.run.smithi057:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T21:58:52.271 INFO:teuthology.orchestra.run.smithi057.stderr:Generating grub configuration file ... 2024-04-15T21:58:52.738 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:52.738 INFO:teuthology.orchestra.run.smithi087.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T21:58:52.738 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T21:58:52.782 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:53.103 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:53.103 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:58:53.103 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:58:53.103 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T21:58:53.525 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T21:58:53.646 INFO:teuthology.orchestra.run.smithi057.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T21:58:53.676 INFO:teuthology.orchestra.run.smithi057.stderr:done 2024-04-15T21:58:53.687 DEBUG:teuthology.orchestra.run.smithi057:> mktemp 2024-04-15T21:58:53.705 INFO:teuthology.orchestra.run.smithi057.stdout:/tmp/tmp.insQFGZvmr 2024-04-15T21:58:53.706 DEBUG:teuthology.orchestra.run.smithi057:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.insQFGZvmr 2024-04-15T21:58:53.775 DEBUG:teuthology.orchestra.run.smithi057:> sudo chmod 0666 /tmp/tmp.insQFGZvmr 2024-04-15T21:58:53.856 DEBUG:teuthology.orchestra.run.smithi087:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:58:53.919 DEBUG:teuthology.orchestra.remote:smithi057:/tmp/tmp.insQFGZvmr is 6KB 2024-04-15T21:58:53.955 INFO:teuthology.orchestra.run.smithi087.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:58:53.955 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:58:53.955 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T21:58:53.955 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:58:53.956 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:58:53.956 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-15T21:58:53.956 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi087.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:58:53.956 DEBUG:teuthology.orchestra.run.smithi087:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:58:53.968 DEBUG:teuthology.orchestra.run.smithi057:> rm -fr /tmp/tmp.insQFGZvmr 2024-04-15T21:58:53.983 DEBUG:teuthology.orchestra.run.smithi057:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T21:58:54.035 INFO:teuthology.orchestra.run.smithi087.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:58:54.036 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:58:54.036 DEBUG:teuthology.orchestra.run.smithi087:> sudo rpm -qi grub2-tools 2024-04-15T21:58:54.051 INFO:teuthology.orchestra.run.smithi057.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T21:58:54.051 INFO:teuthology.orchestra.run.smithi057.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T21:58:54.051 INFO:teuthology.orchestra.run.smithi057.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T21:58:54.051 INFO:teuthology.orchestra.run.smithi057.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T21:58:54.053 DEBUG:teuthology.orchestra.run.smithi057:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T21:58:54.072 INFO:teuthology.orchestra.run.smithi087.stdout:Name : grub2-tools 2024-04-15T21:58:54.072 INFO:teuthology.orchestra.run.smithi087.stdout:Epoch : 1 2024-04-15T21:58:54.072 INFO:teuthology.orchestra.run.smithi087.stdout:Version : 2.06 2024-04-15T21:58:54.072 INFO:teuthology.orchestra.run.smithi087.stdout:Release : 68.el9 2024-04-15T21:58:54.072 INFO:teuthology.orchestra.run.smithi087.stdout:Architecture: x86_64 2024-04-15T21:58:54.072 INFO:teuthology.orchestra.run.smithi087.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T21:58:54.072 INFO:teuthology.orchestra.run.smithi087.stdout:Group : Unspecified 2024-04-15T21:58:54.072 INFO:teuthology.orchestra.run.smithi087.stdout:Size : 8264254 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:License : GPLv3+ 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:Packager : builder@centos.org 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:Vendor : CentOS 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:Summary : Support tools for GRUB. 2024-04-15T21:58:54.073 INFO:teuthology.orchestra.run.smithi087.stdout:Description : 2024-04-15T21:58:54.074 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T21:58:54.075 INFO:teuthology.orchestra.run.smithi087.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T21:58:54.075 INFO:teuthology.orchestra.run.smithi087.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T21:58:54.075 INFO:teuthology.orchestra.run.smithi087.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T21:58:54.075 INFO:teuthology.orchestra.run.smithi087.stdout:hardware devices. 2024-04-15T21:58:54.076 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T21:58:54.076 INFO:teuthology.orchestra.run.smithi087.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T21:58:54.077 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T21:58:54.078 INFO:teuthology.task.kernel:Updating grub on smithi087 to boot 5.14.0-438.el9.x86_64 2024-04-15T21:58:54.078 DEBUG:teuthology.orchestra.run.smithi087:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T21:58:54.189 DEBUG:teuthology.orchestra.run.smithi057:> sudo shutdown -r now 2024-04-15T21:58:54.711 INFO:teuthology.orchestra.run.smithi087.stderr:Generating grub configuration file ... 2024-04-15T21:58:56.150 INFO:teuthology.orchestra.run.smithi087.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T21:58:56.176 INFO:teuthology.orchestra.run.smithi087.stderr:done 2024-04-15T21:58:56.178 DEBUG:teuthology.orchestra.run.smithi087:> mktemp 2024-04-15T21:58:56.197 INFO:teuthology.orchestra.run.smithi087.stdout:/tmp/tmp.zCDaUK7Zej 2024-04-15T21:58:56.197 DEBUG:teuthology.orchestra.run.smithi087:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.zCDaUK7Zej 2024-04-15T21:58:56.265 DEBUG:teuthology.orchestra.run.smithi087:> sudo chmod 0666 /tmp/tmp.zCDaUK7Zej 2024-04-15T21:58:56.406 DEBUG:teuthology.orchestra.remote:smithi087:/tmp/tmp.zCDaUK7Zej is 6KB 2024-04-15T21:58:56.457 DEBUG:teuthology.orchestra.run.smithi087:> rm -fr /tmp/tmp.zCDaUK7Zej 2024-04-15T21:58:56.472 DEBUG:teuthology.orchestra.run.smithi087:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T21:58:56.537 INFO:teuthology.orchestra.run.smithi087.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T21:58:56.537 INFO:teuthology.orchestra.run.smithi087.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T21:58:56.537 INFO:teuthology.orchestra.run.smithi087.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T21:58:56.537 INFO:teuthology.orchestra.run.smithi087.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T21:58:56.539 DEBUG:teuthology.orchestra.run.smithi087:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T21:58:56.680 DEBUG:teuthology.orchestra.run.smithi087:> sudo shutdown -r now 2024-04-15T21:59:11.519 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:59:11.519 INFO:teuthology.orchestra.run.smithi040.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T21:59:11.519 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T21:59:11.564 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:59:11.934 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:59:11.934 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T21:59:11.934 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T21:59:11.934 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T21:59:12.365 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T21:59:12.366 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T21:59:12.366 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T21:59:12.366 INFO:teuthology.orchestra.run.smithi040.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T21:59:12.366 INFO:teuthology.orchestra.run.smithi040.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T21:59:12.366 INFO:teuthology.orchestra.run.smithi040.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T21:59:12.366 INFO:teuthology.orchestra.run.smithi040.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T21:59:12.366 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T21:59:12.366 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T21:59:12.690 DEBUG:teuthology.orchestra.run.smithi040:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:59:12.789 INFO:teuthology.orchestra.run.smithi040.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:59:12.790 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:59:12.790 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T21:59:12.790 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T21:59:12.790 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T21:59:12.790 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T21:59:12.790 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi040.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T21:59:12.791 DEBUG:teuthology.orchestra.run.smithi040:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T21:59:12.874 INFO:teuthology.orchestra.run.smithi040.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T21:59:12.875 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T21:59:12.875 DEBUG:teuthology.orchestra.run.smithi040:> sudo rpm -qi grub2-tools 2024-04-15T21:59:12.916 INFO:teuthology.orchestra.run.smithi040.stdout:Name : grub2-tools 2024-04-15T21:59:12.916 INFO:teuthology.orchestra.run.smithi040.stdout:Epoch : 1 2024-04-15T21:59:12.916 INFO:teuthology.orchestra.run.smithi040.stdout:Version : 2.06 2024-04-15T21:59:12.916 INFO:teuthology.orchestra.run.smithi040.stdout:Release : 68.el9 2024-04-15T21:59:12.916 INFO:teuthology.orchestra.run.smithi040.stdout:Architecture: x86_64 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Group : Unspecified 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Size : 8264254 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:License : GPLv3+ 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Packager : builder@centos.org 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Vendor : CentOS 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Summary : Support tools for GRUB. 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:Description : 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T21:59:12.917 INFO:teuthology.orchestra.run.smithi040.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T21:59:12.918 INFO:teuthology.orchestra.run.smithi040.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T21:59:12.918 INFO:teuthology.orchestra.run.smithi040.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T21:59:12.918 INFO:teuthology.orchestra.run.smithi040.stdout:hardware devices. 2024-04-15T21:59:12.918 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T21:59:12.918 INFO:teuthology.orchestra.run.smithi040.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T21:59:12.919 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T21:59:12.919 INFO:teuthology.task.kernel:Updating grub on smithi040 to boot 5.14.0-438.el9.x86_64 2024-04-15T21:59:12.919 DEBUG:teuthology.orchestra.run.smithi040:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T21:59:13.521 INFO:teuthology.orchestra.run.smithi040.stderr:Generating grub configuration file ... 2024-04-15T21:59:14.942 INFO:teuthology.orchestra.run.smithi040.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T21:59:14.970 INFO:teuthology.orchestra.run.smithi040.stderr:done 2024-04-15T21:59:14.972 DEBUG:teuthology.orchestra.run.smithi040:> mktemp 2024-04-15T21:59:14.988 INFO:teuthology.orchestra.run.smithi040.stdout:/tmp/tmp.gG6RqSc5hu 2024-04-15T21:59:14.988 DEBUG:teuthology.orchestra.run.smithi040:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.gG6RqSc5hu 2024-04-15T21:59:15.076 DEBUG:teuthology.orchestra.run.smithi040:> sudo chmod 0666 /tmp/tmp.gG6RqSc5hu 2024-04-15T21:59:15.178 DEBUG:teuthology.orchestra.remote:smithi040:/tmp/tmp.gG6RqSc5hu is 6KB 2024-04-15T21:59:15.232 DEBUG:teuthology.orchestra.run.smithi040:> rm -fr /tmp/tmp.gG6RqSc5hu 2024-04-15T21:59:15.246 DEBUG:teuthology.orchestra.run.smithi040:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T21:59:15.315 INFO:teuthology.orchestra.run.smithi040.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T21:59:15.316 INFO:teuthology.orchestra.run.smithi040.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T21:59:15.316 INFO:teuthology.orchestra.run.smithi040.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T21:59:15.316 INFO:teuthology.orchestra.run.smithi040.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T21:59:15.317 DEBUG:teuthology.orchestra.run.smithi040:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T21:59:15.467 DEBUG:teuthology.orchestra.run.smithi040:> sudo shutdown -r now 2024-04-15T21:59:24.198 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T21:59:24.199 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2024-04-15T21:59:24.200 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:59:26.685 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-15T21:59:26.685 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi087.front.sepia.ceph.com' 2024-04-15T21:59:26.686 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi087.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:59:42.627 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.57 2024-04-15T21:59:45.182 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.87 2024-04-15T21:59:45.470 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T21:59:45.470 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi040.front.sepia.ceph.com' 2024-04-15T21:59:45.471 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:59:51.630 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2024-04-15T21:59:51.631 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:59:54.184 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi087.front.sepia.ceph.com' 2024-04-15T21:59:54.184 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi087.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T21:59:54.686 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.57 2024-04-15T21:59:57.246 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.87 2024-04-15T22:00:03.874 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.40 2024-04-15T22:00:06.689 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2024-04-15T22:00:06.690 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:00:09.250 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi087.front.sepia.ceph.com' 2024-04-15T22:00:09.251 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi087.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:00:12.878 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi040.front.sepia.ceph.com' 2024-04-15T22:00:12.879 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:00:41.079 DEBUG:teuthology.orchestra.run.smithi087:> true 2024-04-15T22:00:41.676 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi087.front.sepia.ceph.com' 2024-04-15T22:00:41.676 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-438.el9.x86_64"... 2024-04-15T22:00:41.677 DEBUG:teuthology.orchestra.run.smithi087:> uname -r 2024-04-15T22:00:41.700 INFO:teuthology.orchestra.run.smithi087.stdout:5.14.0-438.el9.x86_64 2024-04-15T22:00:41.700 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T22:00:41.700 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:00:41.700 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T22:00:42.701 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-15T22:00:42.701 DEBUG:teuthology.orchestra.run.smithi087:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:00:43.004 INFO:teuthology.orchestra.run.smithi087.stdout:ttyS1 2024-04-15T22:00:43.045 DEBUG:teuthology.parallel:result is None 2024-04-15T22:01:06.692 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T22:01:12.881 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T22:01:21.693 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2024-04-15T22:01:21.694 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:01:22.059 DEBUG:teuthology.orchestra.run.smithi057:> true 2024-04-15T22:01:22.453 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi057.front.sepia.ceph.com' 2024-04-15T22:01:22.454 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-438.el9.x86_64"... 2024-04-15T22:01:22.454 DEBUG:teuthology.orchestra.run.smithi057:> uname -r 2024-04-15T22:01:22.470 INFO:teuthology.orchestra.run.smithi057.stdout:5.14.0-438.el9.x86_64 2024-04-15T22:01:22.470 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T22:01:22.470 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:01:22.470 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T22:01:23.471 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T22:01:23.471 DEBUG:teuthology.orchestra.run.smithi057:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:01:23.536 INFO:teuthology.orchestra.run.smithi057.stdout:ttyS1 2024-04-15T22:01:23.574 DEBUG:teuthology.parallel:result is None 2024-04-15T22:01:24.882 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi040.front.sepia.ceph.com' 2024-04-15T22:01:24.882 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:01:25.166 DEBUG:teuthology.orchestra.run.smithi040:> true 2024-04-15T22:01:25.527 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi040.front.sepia.ceph.com' 2024-04-15T22:01:25.527 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-438.el9.x86_64"... 2024-04-15T22:01:25.528 DEBUG:teuthology.orchestra.run.smithi040:> uname -r 2024-04-15T22:01:25.544 INFO:teuthology.orchestra.run.smithi040.stdout:5.14.0-438.el9.x86_64 2024-04-15T22:01:25.545 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T22:01:25.545 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T22:01:25.545 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T22:01:26.546 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T22:01:26.546 DEBUG:teuthology.orchestra.run.smithi040:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T22:01:26.625 INFO:teuthology.orchestra.run.smithi040.stdout:ttyS1 2024-04-15T22:01:26.670 DEBUG:teuthology.parallel:result is None 2024-04-15T22:01:26.670 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T22:01:26.678 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T22:01:26.678 DEBUG:teuthology.orchestra.run.smithi040:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:01:26.681 DEBUG:teuthology.orchestra.run.smithi057:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:01:26.683 DEBUG:teuthology.orchestra.run.smithi087:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T22:01:26.702 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T22:01:26.711 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T22:01:26.725 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T22:01:26.725 DEBUG:teuthology.orchestra.run.smithi040:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:01:26.738 DEBUG:teuthology.orchestra.run.smithi057:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:01:26.743 DEBUG:teuthology.orchestra.run.smithi087:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T22:01:26.838 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T22:01:26.850 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T22:01:26.850 DEBUG:teuthology.orchestra.run.smithi040:> 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 2024-04-15T22:01:26.852 DEBUG:teuthology.orchestra.run.smithi057:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T22:01:26.855 DEBUG:teuthology.orchestra.run.smithi087:> 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 2024-04-15T22:01:26.889 INFO:teuthology.orchestra.run.smithi040.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:01:26.895 INFO:teuthology.orchestra.run.smithi087.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:01:26.895 INFO:teuthology.orchestra.run.smithi057.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:01:26.906 INFO:teuthology.orchestra.run.smithi040.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:01:26.910 INFO:teuthology.orchestra.run.smithi087.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:01:26.910 INFO:teuthology.orchestra.run.smithi057.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T22:01:26.912 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T22:01:26.923 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T22:01:26.924 DEBUG:teuthology.orchestra.run.smithi040:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:01:26.950 DEBUG:teuthology.orchestra.run.smithi057:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:01:26.954 DEBUG:teuthology.orchestra.run.smithi087:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T22:01:26.986 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T22:01:26.999 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T22:01:26.999 DEBUG:teuthology.orchestra.run.smithi040:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:01:27.023 DEBUG:teuthology.orchestra.run.smithi057:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:01:27.025 DEBUG:teuthology.orchestra.run.smithi087:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T22:01:27.043 DEBUG:teuthology.orchestra.run.smithi040:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:01:27.125 DEBUG:teuthology.orchestra.run.smithi040:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:01:27.172 DEBUG:teuthology.orchestra.run.smithi040:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:01:27.256 DEBUG:teuthology.orchestra.run.smithi040:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:01:27.304 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2024-04-15T22:01:27.304 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:01:27.375 DEBUG:teuthology.orchestra.run.smithi057:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:01:27.416 DEBUG:teuthology.orchestra.run.smithi057:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:01:27.477 DEBUG:teuthology.orchestra.run.smithi057:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:01:27.564 DEBUG:teuthology.orchestra.run.smithi057:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:01:27.609 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2024-04-15T22:01:27.609 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:01:27.679 DEBUG:teuthology.orchestra.run.smithi087:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:01:27.731 DEBUG:teuthology.orchestra.run.smithi087:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T22:01:27.784 DEBUG:teuthology.orchestra.run.smithi087:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:01:27.866 DEBUG:teuthology.orchestra.run.smithi087:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T22:01:27.916 DEBUG:teuthology.orchestra.run.smithi087:> set -ex 2024-04-15T22:01:27.916 DEBUG:teuthology.orchestra.run.smithi087:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T22:01:27.987 DEBUG:teuthology.orchestra.run.smithi040:> sudo service rsyslog restart 2024-04-15T22:01:27.990 DEBUG:teuthology.orchestra.run.smithi057:> sudo service rsyslog restart 2024-04-15T22:01:27.992 DEBUG:teuthology.orchestra.run.smithi087:> sudo service rsyslog restart 2024-04-15T22:01:28.037 INFO:teuthology.orchestra.run.smithi057.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:01:28.039 INFO:teuthology.orchestra.run.smithi040.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:01:28.068 INFO:teuthology.orchestra.run.smithi087.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:01:28.513 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T22:01:28.521 INFO:teuthology.task.internal:Starting timer... 2024-04-15T22:01:28.521 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T22:01:28.646 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T22:01:28.658 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-15T22:01:28.658 DEBUG:teuthology.orchestra.run.smithi040:> sudo service auditd rotate 2024-04-15T22:01:28.719 INFO:teuthology.orchestra.run.smithi040.stdout:Rotating logs: 2024-04-15T22:01:28.721 DEBUG:teuthology.orchestra.run.smithi057:> sudo service auditd rotate 2024-04-15T22:01:28.786 INFO:teuthology.orchestra.run.smithi057.stdout:Rotating logs: 2024-04-15T22:01:28.788 DEBUG:teuthology.orchestra.run.smithi087:> sudo service auditd rotate 2024-04-15T22:01:28.850 INFO:teuthology.orchestra.run.smithi087.stdout:Rotating logs: 2024-04-15T22:01:28.853 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T22:01:28.853 DEBUG:teuthology.orchestra.run.smithi040:> /usr/sbin/getenforce 2024-04-15T22:01:28.875 INFO:teuthology.orchestra.run.smithi040.stdout:Permissive 2024-04-15T22:01:28.875 DEBUG:teuthology.orchestra.run.smithi057:> /usr/sbin/getenforce 2024-04-15T22:01:28.900 INFO:teuthology.orchestra.run.smithi057.stdout:Permissive 2024-04-15T22:01:28.901 DEBUG:teuthology.orchestra.run.smithi087:> /usr/sbin/getenforce 2024-04-15T22:01:28.919 INFO:teuthology.orchestra.run.smithi087.stdout:Permissive 2024-04-15T22:01:28.920 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi040.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi057.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi087.front.sepia.ceph.com': 'permissive'} 2024-04-15T22:01:28.920 DEBUG:teuthology.orchestra.run.smithi040:> 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 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:01:28.949 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:01:28.950 DEBUG:teuthology.orchestra.run.smithi057:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:01:28.979 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:01:28.980 DEBUG:teuthology.orchestra.run.smithi087:> 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 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:01:29.009 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:01:29.009 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T22:01:29.009 DEBUG:teuthology.orchestra.run.smithi040:> sudo /usr/sbin/setenforce permissive 2024-04-15T22:01:29.042 DEBUG:teuthology.orchestra.run.smithi057:> sudo /usr/sbin/setenforce permissive 2024-04-15T22:01:29.078 DEBUG:teuthology.orchestra.run.smithi087:> sudo /usr/sbin/setenforce permissive 2024-04-15T22:01:29.114 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T22:01:29.124 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-15T22:01:29.130 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-15T22:01:29.283 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T22:01:29.299 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'}]}] 2024-04-15T22:01:29.300 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi040.front.sepia.ceph.com,smithi057.front.sepia.ceph.com,smithi087.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T22:05:48.354 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi040.front.sepia.ceph.com'), Remote(name='ubuntu@smithi057.front.sepia.ceph.com'), Remote(name='ubuntu@smithi087.front.sepia.ceph.com')] 2024-04-15T22:05:48.356 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi040.front.sepia.ceph.com' 2024-04-15T22:05:48.357 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi040.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:05:48.452 DEBUG:teuthology.orchestra.run.smithi040:> true 2024-04-15T22:05:48.526 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi040.front.sepia.ceph.com' 2024-04-15T22:05:48.527 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi057.front.sepia.ceph.com' 2024-04-15T22:05:48.527 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi057.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:05:48.619 DEBUG:teuthology.orchestra.run.smithi057:> true 2024-04-15T22:05:48.700 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi057.front.sepia.ceph.com' 2024-04-15T22:05:48.701 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi087.front.sepia.ceph.com' 2024-04-15T22:05:48.701 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi087.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T22:05:48.796 DEBUG:teuthology.orchestra.run.smithi087:> true 2024-04-15T22:05:48.889 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi087.front.sepia.ceph.com' 2024-04-15T22:05:48.890 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T22:05:48.906 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T22:05:48.907 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:05:48.907 DEBUG:teuthology.orchestra.run.smithi040:> 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 2024-04-15T22:05:48.910 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:05:48.910 DEBUG:teuthology.orchestra.run.smithi057:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:05:48.912 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T22:05:48.913 DEBUG:teuthology.orchestra.run.smithi087:> 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 2024-04-15T22:05:48.944 INFO:teuthology.orchestra.run.smithi040.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T22:05:48.948 INFO:teuthology.orchestra.run.smithi057.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T22:05:48.963 INFO:teuthology.orchestra.run.smithi040.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T22:05:48.967 INFO:teuthology.orchestra.run.smithi057.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T22:05:48.967 INFO:teuthology.orchestra.run.smithi087.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T22:05:48.986 INFO:teuthology.orchestra.run.smithi087.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T22:05:48.997 INFO:teuthology.orchestra.run.smithi040.stderr:sudo: ntpd: command not found 2024-04-15T22:05:49.000 INFO:teuthology.orchestra.run.smithi057.stderr:sudo: ntpd: command not found 2024-04-15T22:05:49.012 INFO:teuthology.orchestra.run.smithi040.stdout:506 Cannot talk to daemon 2024-04-15T22:05:49.015 INFO:teuthology.orchestra.run.smithi057.stdout:506 Cannot talk to daemon 2024-04-15T22:05:49.021 INFO:teuthology.orchestra.run.smithi087.stderr:sudo: ntpd: command not found 2024-04-15T22:05:49.030 INFO:teuthology.orchestra.run.smithi040.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T22:05:49.033 INFO:teuthology.orchestra.run.smithi057.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T22:05:49.035 INFO:teuthology.orchestra.run.smithi087.stdout:506 Cannot talk to daemon 2024-04-15T22:05:49.047 INFO:teuthology.orchestra.run.smithi040.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T22:05:49.051 INFO:teuthology.orchestra.run.smithi057.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T22:05:49.052 INFO:teuthology.orchestra.run.smithi087.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T22:05:49.070 INFO:teuthology.orchestra.run.smithi087.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T22:05:49.102 INFO:teuthology.orchestra.run.smithi040.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:05:49.105 INFO:teuthology.orchestra.run.smithi057.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:05:49.106 INFO:teuthology.orchestra.run.smithi040.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:05:49.106 INFO:teuthology.orchestra.run.smithi040.stdout:=============================================================================== 2024-04-15T22:05:49.107 INFO:teuthology.orchestra.run.smithi040.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.107 INFO:teuthology.orchestra.run.smithi040.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.107 INFO:teuthology.orchestra.run.smithi040.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.107 INFO:teuthology.orchestra.run.smithi040.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.109 INFO:teuthology.orchestra.run.smithi057.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:05:49.109 INFO:teuthology.orchestra.run.smithi057.stdout:=============================================================================== 2024-04-15T22:05:49.109 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.109 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.109 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.109 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.122 INFO:teuthology.orchestra.run.smithi087.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:05:49.126 INFO:teuthology.orchestra.run.smithi087.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:05:49.126 INFO:teuthology.orchestra.run.smithi087.stdout:=============================================================================== 2024-04-15T22:05:49.126 INFO:teuthology.orchestra.run.smithi087.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.126 INFO:teuthology.orchestra.run.smithi087.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.126 INFO:teuthology.orchestra.run.smithi087.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.126 INFO:teuthology.orchestra.run.smithi087.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:05:49.127 INFO:teuthology.run_tasks:Running task pexec... 2024-04-15T22:05:49.136 INFO:teuthology.task.pexec:Executing custom commands... 2024-04-15T22:05:49.136 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi040.front.sepia.ceph.com 2024-04-15T22:05:49.137 DEBUG:teuthology.orchestra.run.smithi040:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T22:05:49.137 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi057.front.sepia.ceph.com 2024-04-15T22:05:49.137 DEBUG:teuthology.orchestra.run.smithi057:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T22:05:49.137 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi087.front.sepia.ceph.com 2024-04-15T22:05:49.138 DEBUG:teuthology.orchestra.run.smithi087:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T22:05:49.750 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:00:49 ago on Mon 15 Apr 2024 10:05:00 PM UTC. 2024-04-15T22:05:49.751 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:00:50 ago on Mon 15 Apr 2024 10:04:59 PM UTC. 2024-04-15T22:05:49.755 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:00:53 ago on Mon 15 Apr 2024 10:04:56 PM UTC. 2024-04-15T22:05:49.904 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:05:49.905 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:05:49.906 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:05:49.907 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout: Package Architecture Version Repository Size 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout:Install 1 Package 2024-04-15T22:05:49.908 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:05:49.909 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 3.1 M 2024-04-15T22:05:49.909 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 9.8 M 2024-04-15T22:05:49.909 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout: Package Architecture Version Repository Size 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout:Install 1 Package 2024-04-15T22:05:49.915 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:05:49.916 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 3.1 M 2024-04-15T22:05:49.916 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 9.8 M 2024-04-15T22:05:49.916 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:05:49.917 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:05:49.917 INFO:teuthology.orchestra.run.smithi057.stdout: Package Architecture Version Repository Size 2024-04-15T22:05:49.917 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:05:49.917 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:05:49.917 INFO:teuthology.orchestra.run.smithi057.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T22:05:49.917 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:05:49.918 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:05:49.918 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:05:49.918 INFO:teuthology.orchestra.run.smithi057.stdout:Install 1 Package 2024-04-15T22:05:49.918 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:05:49.918 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 3.1 M 2024-04-15T22:05:49.918 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 9.8 M 2024-04-15T22:05:49.919 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:05:50.380 INFO:teuthology.orchestra.run.smithi087.stdout:runc-1.1.12-2.el9.x86_64.rpm 9.7 MB/s | 3.1 MB 00:00 2024-04-15T22:05:50.380 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:05:50.380 INFO:teuthology.orchestra.run.smithi087.stdout:Total 6.7 MB/s | 3.1 MB 00:00 2024-04-15T22:05:50.417 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:05:50.423 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:05:50.423 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:05:50.430 INFO:teuthology.orchestra.run.smithi040.stdout:runc-1.1.12-2.el9.x86_64.rpm 8.1 MB/s | 3.1 MB 00:00 2024-04-15T22:05:50.431 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:05:50.431 INFO:teuthology.orchestra.run.smithi040.stdout:Total 6.0 MB/s | 3.1 MB 00:00 2024-04-15T22:05:50.469 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:05:50.475 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:05:50.476 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:05:50.502 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:05:50.503 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:05:50.558 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:05:50.558 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:05:50.709 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:05:50.773 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:05:50.808 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:50.870 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:51.201 INFO:teuthology.orchestra.run.smithi057.stdout:runc-1.1.12-2.el9.x86_64.rpm 3.1 MB/s | 3.1 MB 00:01 2024-04-15T22:05:51.201 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:05:51.201 INFO:teuthology.orchestra.run.smithi057.stdout:Total 2.4 MB/s | 3.1 MB 00:01 2024-04-15T22:05:51.240 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:05:51.247 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:05:51.247 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:05:51.332 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:05:51.333 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:05:51.347 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:51.401 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:51.547 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:05:51.646 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:51.646 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:05:51.646 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:05:51.646 INFO:teuthology.orchestra.run.smithi087.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T22:05:51.646 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:05:51.646 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:05:51.648 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:51.681 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:51.681 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:05:51.681 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:05:51.681 INFO:teuthology.orchestra.run.smithi040.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T22:05:51.681 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:05:51.681 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:05:51.903 DEBUG:teuthology.parallel:result is None 2024-04-15T22:05:51.935 DEBUG:teuthology.parallel:result is None 2024-04-15T22:05:52.170 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:52.472 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T22:05:52.472 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:05:52.472 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:05:52.472 INFO:teuthology.orchestra.run.smithi057.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T22:05:52.472 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:05:52.472 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:05:52.716 DEBUG:teuthology.parallel:result is None 2024-04-15T22:05:52.716 INFO:teuthology.run_tasks:Running task install... 2024-04-15T22:05:52.727 DEBUG:teuthology.task.install:project ceph 2024-04-15T22:05:52.727 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'}} 2024-04-15T22:05:52.727 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T22:05:52.727 INFO:teuthology.task.install:Using flavor: default 2024-04-15T22:05:52.733 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']} 2024-04-15T22:05:52.733 INFO:teuthology.task.install:extra packages: [] 2024-04-15T22:05:52.733 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': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'tag': None, 'wait_for_package': False} 2024-04-15T22:05:52.734 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:05:52.736 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': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'tag': None, 'wait_for_package': False} 2024-04-15T22:05:52.736 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:05:52.737 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': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'tag': None, 'wait_for_package': False} 2024-04-15T22:05:52.737 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:05:52.889 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/ 2024-04-15T22:05:52.889 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2114.ga9a752df 2024-04-15T22:05:52.895 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/ 2024-04-15T22:05:52.895 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2114.ga9a752df 2024-04-15T22:05:52.899 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/ 2024-04-15T22:05:52.899 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2114.ga9a752df 2024-04-15T22:05:52.999 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T22:05:53.000 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2024-04-15T22:05:53.000 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T22:05:53.007 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T22:05:53.008 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2024-04-15T22:05:53.008 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T22:05:53.033 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 2024-04-15T22:05:53.034 DEBUG:teuthology.orchestra.run.smithi040:> 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/a9a752df26c63acad72e1b3569fd79a515ca0765/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T22:05:53.037 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 2024-04-15T22:05:53.037 DEBUG:teuthology.orchestra.run.smithi057:> 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/a9a752df26c63acad72e1b3569fd79a515ca0765/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T22:05:53.066 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T22:05:53.067 DEBUG:teuthology.orchestra.run.smithi087:> set -ex 2024-04-15T22:05:53.067 DEBUG:teuthology.orchestra.run.smithi087:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T22:05:53.100 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 2024-04-15T22:05:53.100 DEBUG:teuthology.orchestra.run.smithi087:> 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/a9a752df26c63acad72e1b3569fd79a515ca0765/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T22:05:53.106 DEBUG:teuthology.orchestra.run.smithi040:> 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 2024-04-15T22:05:53.107 DEBUG:teuthology.orchestra.run.smithi057:> 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 2024-04-15T22:05:53.173 DEBUG:teuthology.orchestra.run.smithi087:> 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 2024-04-15T22:05:53.189 DEBUG:teuthology.orchestra.run.smithi057:> 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 2024-04-15T22:05:53.190 DEBUG:teuthology.orchestra.run.smithi040:> 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 2024-04-15T22:05:53.218 INFO:teuthology.orchestra.run.smithi040.stdout:check_obsoletes = 1 2024-04-15T22:05:53.220 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum clean all 2024-04-15T22:05:53.257 INFO:teuthology.orchestra.run.smithi057.stdout:check_obsoletes = 1 2024-04-15T22:05:53.258 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum clean all 2024-04-15T22:05:53.259 DEBUG:teuthology.orchestra.run.smithi087:> 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 2024-04-15T22:05:53.288 INFO:teuthology.orchestra.run.smithi087.stdout:check_obsoletes = 1 2024-04-15T22:05:53.290 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum clean all 2024-04-15T22:05:53.466 INFO:teuthology.orchestra.run.smithi040.stdout:74 files removed 2024-04-15T22:05:53.493 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-radosgw 2024-04-15T22:05:53.517 INFO:teuthology.orchestra.run.smithi057.stdout:74 files removed 2024-04-15T22:05:53.535 INFO:teuthology.orchestra.run.smithi087.stdout:74 files removed 2024-04-15T22:05:53.545 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-radosgw 2024-04-15T22:05:53.562 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-radosgw 2024-04-15T22:05:54.221 INFO:teuthology.orchestra.run.smithi040.stdout:ceph packages for x86_64 198 kB/s | 83 kB 00:00 2024-04-15T22:05:54.334 INFO:teuthology.orchestra.run.smithi057.stdout:ceph packages for x86_64 172 kB/s | 83 kB 00:00 2024-04-15T22:05:54.344 INFO:teuthology.orchestra.run.smithi087.stdout:ceph packages for x86_64 173 kB/s | 83 kB 00:00 2024-04-15T22:05:54.605 INFO:teuthology.orchestra.run.smithi040.stdout:ceph noarch packages 35 kB/s | 11 kB 00:00 2024-04-15T22:05:54.751 INFO:teuthology.orchestra.run.smithi057.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-15T22:05:54.769 INFO:teuthology.orchestra.run.smithi087.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-15T22:05:55.031 INFO:teuthology.orchestra.run.smithi040.stdout:ceph source packages 5.0 kB/s | 1.9 kB 00:00 2024-04-15T22:05:55.160 INFO:teuthology.orchestra.run.smithi057.stdout:ceph source packages 5.2 kB/s | 1.9 kB 00:00 2024-04-15T22:05:55.187 INFO:teuthology.orchestra.run.smithi087.stdout:ceph source packages 5.0 kB/s | 1.9 kB 00:00 2024-04-15T22:05:55.475 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS-9 - AppStream 17 MB/s | 6.7 MB 00:00 2024-04-15T22:05:55.679 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS-9 - AppStream 14 MB/s | 6.7 MB 00:00 2024-04-15T22:05:56.131 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS-9 - AppStream 7.4 MB/s | 6.7 MB 00:00 2024-04-15T22:05:56.908 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS-9 - BaseOS 7.1 MB/s | 2.0 MB 00:00 2024-04-15T22:05:57.188 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS-9 - BaseOS 6.2 MB/s | 2.0 MB 00:00 2024-04-15T22:05:57.598 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS-9 - BaseOS 7.3 MB/s | 2.0 MB 00:00 2024-04-15T22:05:57.708 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS Stream 9 - BaseOS 18 MB/s | 8.0 MB 00:00 2024-04-15T22:05:59.062 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 9 - BaseOS 5.2 MB/s | 8.0 MB 00:01 2024-04-15T22:06:00.525 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS Stream 9 - AppStream 11 MB/s | 19 MB 00:01 2024-04-15T22:06:01.630 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 9 - AppStream 13 MB/s | 19 MB 00:01 2024-04-15T22:06:06.097 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 9 - CRB 7.4 MB/s | 6.2 MB 00:00 2024-04-15T22:06:06.738 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS Stream 9 - BaseOS 935 kB/s | 8.0 MB 00:08 2024-04-15T22:06:06.859 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS Stream 9 - CRB 2.3 MB/s | 6.2 MB 00:02 2024-04-15T22:06:07.732 INFO:teuthology.orchestra.run.smithi057.stdout:CentOS Stream 9 - Extras packages 38 kB/s | 16 kB 00:00 2024-04-15T22:06:08.544 INFO:teuthology.orchestra.run.smithi040.stdout:CentOS Stream 9 - Extras packages 36 kB/s | 16 kB 00:00 2024-04-15T22:06:10.773 INFO:teuthology.orchestra.run.smithi040.stdout:Extra Packages for Enterprise Linux 10 MB/s | 21 MB 00:02 2024-04-15T22:06:11.756 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS Stream 9 - AppStream 4.9 MB/s | 19 MB 00:03 2024-04-15T22:06:14.524 INFO:teuthology.orchestra.run.smithi057.stdout:Extra Packages for Enterprise Linux 3.1 MB/s | 21 MB 00:06 2024-04-15T22:06:16.005 INFO:teuthology.orchestra.run.smithi040.stdout:lab-extras 39 kB/s | 1.7 kB 00:00 2024-04-15T22:06:18.843 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:06:18.845 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:06:18.845 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:06:18.845 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:06:18.845 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:06:18.845 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-radosgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 9.9 M 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout:Upgrading: 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: librados2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.4 M 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: librbd1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: boost-program-options 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-base x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.3 M 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 21 M 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-selinux x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 25 k 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T22:06:18.846 INFO:teuthology.orchestra.run.smithi040.stdout: libcephfs2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 746 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: libradosstriper1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 501 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: librgw2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.2 M 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: python3-ceph-argparse 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 45 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: python3-ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 131 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cephfs x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 162 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T22:06:18.847 INFO:teuthology.orchestra.run.smithi040.stdout: python3-rados x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 320 k 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: python3-rbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 298 k 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: python3-rgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 99 k 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout:Installing weak dependencies: 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout:Install 30 Packages 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout:Upgrade 2 Packages 2024-04-15T22:06:18.848 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:18.849 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 59 M 2024-04-15T22:06:18.849 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:06:19.791 INFO:teuthology.orchestra.run.smithi057.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-04-15T22:06:19.913 INFO:teuthology.orchestra.run.smithi040.stdout:(1/32): ceph-base-19.0.0-2114.ga9a752df.el7.x86 6.3 MB/s | 5.3 MB 00:00 2024-04-15T22:06:19.984 INFO:teuthology.orchestra.run.smithi040.stdout:(2/32): ceph-selinux-19.0.0-2114.ga9a752df.el7. 355 kB/s | 25 kB 00:00 2024-04-15T22:06:20.114 INFO:teuthology.orchestra.run.smithi040.stdout:(3/32): libcephfs2-19.0.0-2114.ga9a752df.el7.x8 5.6 MB/s | 746 kB 00:00 2024-04-15T22:06:20.230 INFO:teuthology.orchestra.run.smithi040.stdout:(4/32): libradosstriper1-19.0.0-2114.ga9a752df. 4.2 MB/s | 501 kB 00:00 2024-04-15T22:06:20.489 INFO:teuthology.orchestra.run.smithi040.stdout:(5/32): ceph-radosgw-19.0.0-2114.ga9a752df.el7. 6.9 MB/s | 9.9 MB 00:01 2024-04-15T22:06:20.573 INFO:teuthology.orchestra.run.smithi040.stdout:(6/32): python3-ceph-argparse-19.0.0-2114.ga9a7 543 kB/s | 45 kB 00:00 2024-04-15T22:06:20.656 INFO:teuthology.orchestra.run.smithi040.stdout:(7/32): python3-ceph-common-19.0.0-2114.ga9a752 1.5 MB/s | 131 kB 00:00 2024-04-15T22:06:20.740 INFO:teuthology.orchestra.run.smithi040.stdout:(8/32): python3-cephfs-19.0.0-2114.ga9a752df.el 1.9 MB/s | 162 kB 00:00 2024-04-15T22:06:20.832 INFO:teuthology.orchestra.run.smithi040.stdout:(9/32): librgw2-19.0.0-2114.ga9a752df.el7.x86_6 8.6 MB/s | 5.2 MB 00:00 2024-04-15T22:06:20.865 INFO:teuthology.orchestra.run.smithi040.stdout:(10/32): python3-rados-19.0.0-2114.ga9a752df.el 2.5 MB/s | 320 kB 00:00 2024-04-15T22:06:20.907 INFO:teuthology.orchestra.run.smithi040.stdout:(11/32): python3-rbd-19.0.0-2114.ga9a752df.el7. 3.9 MB/s | 298 kB 00:00 2024-04-15T22:06:20.932 INFO:teuthology.orchestra.run.smithi040.stdout:(12/32): python3-rgw-19.0.0-2114.ga9a752df.el7. 1.4 MB/s | 99 kB 00:00 2024-04-15T22:06:21.158 INFO:teuthology.orchestra.run.smithi040.stdout:(13/32): ceph-common-19.0.0-2114.ga9a752df.el7. 9.9 MB/s | 21 MB 00:02 2024-04-15T22:06:21.225 INFO:teuthology.orchestra.run.smithi040.stdout:(14/32): boost-program-options-1.75.0-8.el9.x86 333 kB/s | 106 kB 00:00 2024-04-15T22:06:21.241 INFO:teuthology.orchestra.run.smithi040.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 782 kB/s | 44 kB 00:00 2024-04-15T22:06:21.284 INFO:teuthology.orchestra.run.smithi040.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 488 kB/s | 159 kB 00:00 2024-04-15T22:06:21.309 INFO:teuthology.orchestra.run.smithi040.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 7.7 MB/s | 661 kB 00:00 2024-04-15T22:06:21.334 INFO:teuthology.orchestra.run.smithi040.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 3.0 MB/s | 282 kB 00:00 2024-04-15T22:06:21.351 INFO:teuthology.orchestra.run.smithi040.stdout:(19/32): python3-prettytable-0.7.2-27.el9.noarc 624 kB/s | 41 kB 00:00 2024-04-15T22:06:21.368 INFO:teuthology.orchestra.run.smithi040.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 1.0 MB/s | 35 kB 00:00 2024-04-15T22:06:21.393 INFO:teuthology.orchestra.run.smithi040.stdout:(21/32): qatlib-24.02.0-1.el9.x86_64.rpm 3.7 MB/s | 220 kB 00:00 2024-04-15T22:06:21.418 INFO:teuthology.orchestra.run.smithi040.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 690 kB/s | 46 kB 00:00 2024-04-15T22:06:21.721 INFO:teuthology.orchestra.run.smithi040.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 87 kB/s | 26 kB 00:00 2024-04-15T22:06:21.836 INFO:teuthology.orchestra.run.smithi040.stdout:(24/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 661 kB/s | 309 kB 00:00 2024-04-15T22:06:21.861 INFO:teuthology.orchestra.run.smithi040.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 342 kB/s | 49 kB 00:00 2024-04-15T22:06:21.911 INFO:teuthology.orchestra.run.smithi040.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 894 kB/s | 67 kB 00:00 2024-04-15T22:06:21.995 INFO:teuthology.orchestra.run.smithi040.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 2.2 MB/s | 192 kB 00:00 2024-04-15T22:06:22.087 INFO:teuthology.orchestra.run.smithi040.stdout:(28/32): libarrow-9.0.0-10.el9.x86_64.rpm 6.6 MB/s | 4.4 MB 00:00 2024-04-15T22:06:22.137 INFO:teuthology.orchestra.run.smithi040.stdout:(29/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 3.0 MB/s | 838 kB 00:00 2024-04-15T22:06:22.237 INFO:teuthology.orchestra.run.smithi040.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 6.5 MB/s | 1.6 MB 00:00 2024-04-15T22:06:22.454 INFO:teuthology.orchestra.run.smithi040.stdout:(31/32): librados2-19.0.0-2114.ga9a752df.el7.x8 9.2 MB/s | 3.4 MB 00:00 2024-04-15T22:06:22.504 INFO:teuthology.orchestra.run.smithi040.stdout:(32/32): librbd1-19.0.0-2114.ga9a752df.el7.x86_ 8.6 MB/s | 3.1 MB 00:00 2024-04-15T22:06:22.511 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:06:22.511 INFO:teuthology.orchestra.run.smithi040.stdout:Total 16 MB/s | 59 MB 00:03 2024-04-15T22:06:22.512 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:06:22.551 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:06:22.551 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:06:22.660 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:06:22.662 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:06:22.662 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:06:22.662 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:06:22.662 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:06:22.662 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-radosgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 9.9 M 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout:Upgrading: 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: librados2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.4 M 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: librbd1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: boost-program-options 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-base x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.3 M 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 21 M 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-selinux x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 25 k 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: libcephfs2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 746 k 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T22:06:22.663 INFO:teuthology.orchestra.run.smithi057.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: libradosstriper1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 501 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: librgw2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.2 M 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: python3-ceph-argparse 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 45 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: python3-ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 131 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cephfs x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 162 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: python3-rados x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 320 k 2024-04-15T22:06:22.664 INFO:teuthology.orchestra.run.smithi057.stdout: python3-rbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 298 k 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout: python3-rgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 99 k 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout:Installing weak dependencies: 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout:Install 30 Packages 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout:Upgrade 2 Packages 2024-04-15T22:06:22.665 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:22.666 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 59 M 2024-04-15T22:06:22.666 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:06:23.056 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:06:23.057 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:06:23.490 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS Stream 9 - CRB 774 kB/s | 6.2 MB 00:08 2024-04-15T22:06:24.125 INFO:teuthology.orchestra.run.smithi057.stdout:(1/32): ceph-common-19.0.0-2114.ga9a752df.el7.x 15 MB/s | 21 MB 00:01 2024-04-15T22:06:24.159 INFO:teuthology.orchestra.run.smithi057.stdout:(2/32): ceph-selinux-19.0.0-2114.ga9a752df.el7. 758 kB/s | 25 kB 00:00 2024-04-15T22:06:24.243 INFO:teuthology.orchestra.run.smithi057.stdout:(3/32): libcephfs2-19.0.0-2114.ga9a752df.el7.x8 8.7 MB/s | 746 kB 00:00 2024-04-15T22:06:24.293 INFO:teuthology.orchestra.run.smithi057.stdout:(4/32): libradosstriper1-19.0.0-2114.ga9a752df. 9.8 MB/s | 501 kB 00:00 2024-04-15T22:06:24.360 INFO:teuthology.orchestra.run.smithi057.stdout:(5/32): ceph-base-19.0.0-2114.ga9a752df.el7.x86 3.4 MB/s | 5.3 MB 00:01 2024-04-15T22:06:24.477 INFO:teuthology.orchestra.run.smithi057.stdout:(6/32): python3-ceph-argparse-19.0.0-2114.ga9a7 387 kB/s | 45 kB 00:00 2024-04-15T22:06:24.530 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:06:24.602 INFO:teuthology.orchestra.run.smithi057.stdout:(7/32): librgw2-19.0.0-2114.ga9a752df.el7.x86_6 17 MB/s | 5.2 MB 00:00 2024-04-15T22:06:24.627 INFO:teuthology.orchestra.run.smithi057.stdout:(8/32): python3-ceph-common-19.0.0-2114.ga9a752 874 kB/s | 131 kB 00:00 2024-04-15T22:06:24.630 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T22:06:24.644 INFO:teuthology.orchestra.run.smithi057.stdout:(9/32): python3-cephfs-19.0.0-2114.ga9a752df.el 3.8 MB/s | 162 kB 00:00 2024-04-15T22:06:24.668 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T22:06:24.693 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T22:06:24.703 INFO:teuthology.orchestra.run.smithi057.stdout:(10/32): python3-rados-19.0.0-2114.ga9a752df.el 4.2 MB/s | 320 kB 00:00 2024-04-15T22:06:24.716 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T22:06:24.728 INFO:teuthology.orchestra.run.smithi057.stdout:(11/32): python3-rbd-19.0.0-2114.ga9a752df.el7. 3.5 MB/s | 298 kB 00:00 2024-04-15T22:06:24.732 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T22:06:24.787 INFO:teuthology.orchestra.run.smithi057.stdout:(12/32): python3-rgw-19.0.0-2114.ga9a752df.el7. 1.2 MB/s | 99 kB 00:00 2024-04-15T22:06:24.846 INFO:teuthology.orchestra.run.smithi057.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 905 kB/s | 106 kB 00:00 2024-04-15T22:06:24.867 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T22:06:24.871 INFO:teuthology.orchestra.run.smithi057.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.9 MB/s | 159 kB 00:00 2024-04-15T22:06:24.896 INFO:teuthology.orchestra.run.smithi057.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 887 kB/s | 44 kB 00:00 2024-04-15T22:06:24.922 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T22:06:25.013 INFO:teuthology.orchestra.run.smithi057.stdout:(16/32): ceph-radosgw-19.0.0-2114.ga9a752df.el7 4.4 MB/s | 9.9 MB 00:02 2024-04-15T22:06:25.038 INFO:teuthology.orchestra.run.smithi057.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 3.9 MB/s | 661 kB 00:00 2024-04-15T22:06:25.064 INFO:teuthology.orchestra.run.smithi057.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.7 MB/s | 282 kB 00:00 2024-04-15T22:06:25.089 INFO:teuthology.orchestra.run.smithi057.stdout:(19/32): python3-prettytable-0.7.2-27.el9.noarc 553 kB/s | 41 kB 00:00 2024-04-15T22:06:25.114 INFO:teuthology.orchestra.run.smithi057.stdout:(20/32): qatlib-24.02.0-1.el9.x86_64.rpm 4.3 MB/s | 220 kB 00:00 2024-04-15T22:06:25.139 INFO:teuthology.orchestra.run.smithi057.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 464 kB/s | 35 kB 00:00 2024-04-15T22:06:25.164 INFO:teuthology.orchestra.run.smithi057.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 614 kB/s | 46 kB 00:00 2024-04-15T22:06:25.266 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T22:06:25.320 INFO:teuthology.orchestra.run.smithi040.stdout: Upgrading : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:25.396 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:25.431 INFO:teuthology.orchestra.run.smithi057.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 97 kB/s | 26 kB 00:00 2024-04-15T22:06:25.449 INFO:teuthology.orchestra.run.smithi087.stdout:CentOS Stream 9 - Extras packages 21 kB/s | 16 kB 00:00 2024-04-15T22:06:25.496 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 8/34 2024-04-15T22:06:25.530 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T22:06:25.593 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T22:06:25.622 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T22:06:25.716 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 11/34 2024-04-15T22:06:25.749 INFO:teuthology.orchestra.run.smithi057.stdout:(24/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 507 kB/s | 309 kB 00:00 2024-04-15T22:06:25.774 INFO:teuthology.orchestra.run.smithi057.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 142 kB/s | 49 kB 00:00 2024-04-15T22:06:25.785 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T22:06:25.807 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T22:06:25.871 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T22:06:25.906 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T22:06:26.025 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T22:06:26.057 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T22:06:26.098 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T22:06:26.099 INFO:teuthology.orchestra.run.smithi057.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 192 kB/s | 67 kB 00:00 2024-04-15T22:06:26.130 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T22:06:26.159 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T22:06:26.201 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T22:06:26.383 INFO:teuthology.orchestra.run.smithi057.stdout:(27/32): libarrow-9.0.0-10.el9.x86_64.rpm 3.6 MB/s | 4.4 MB 00:01 2024-04-15T22:06:26.458 INFO:teuthology.orchestra.run.smithi057.stdout:(28/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 1.2 MB/s | 838 kB 00:00 2024-04-15T22:06:26.533 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T22:06:26.572 INFO:teuthology.orchestra.run.smithi040.stdout: Upgrading : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T22:06:26.600 INFO:teuthology.orchestra.run.smithi057.stdout:(29/32): re2-20211101-3.el9.x86_64.rpm 383 kB/s | 192 kB 00:00 2024-04-15T22:06:26.663 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T22:06:26.693 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 23/34 2024-04-15T22:06:26.739 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T22:06:26.883 INFO:teuthology.orchestra.run.smithi057.stdout:(30/32): librbd1-19.0.0-2114.ga9a752df.el7.x86_ 11 MB/s | 3.1 MB 00:00 2024-04-15T22:06:27.050 INFO:teuthology.orchestra.run.smithi057.stdout:(31/32): librados2-19.0.0-2114.ga9a752df.el7.x8 5.7 MB/s | 3.4 MB 00:00 2024-04-15T22:06:27.167 INFO:teuthology.orchestra.run.smithi057.stdout:(32/32): thrift-0.15.0-2.el9.x86_64.rpm 2.0 MB/s | 1.6 MB 00:00 2024-04-15T22:06:27.171 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:06:27.171 INFO:teuthology.orchestra.run.smithi057.stdout:Total 13 MB/s | 59 MB 00:04 2024-04-15T22:06:27.172 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:06:27.213 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:06:27.213 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:06:27.223 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T22:06:27.249 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T22:06:27.311 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T22:06:27.383 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 27/34 2024-04-15T22:06:27.410 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 28/34 2024-04-15T22:06:27.428 INFO:teuthology.orchestra.run.smithi087.stdout:Extra Packages for Enterprise Linux 11 MB/s | 21 MB 00:01 2024-04-15T22:06:27.728 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:06:27.728 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:06:29.292 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:06:29.371 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T22:06:29.397 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T22:06:29.423 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T22:06:29.445 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T22:06:29.462 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T22:06:29.609 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T22:06:29.677 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T22:06:29.786 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:29.823 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:30.022 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T22:06:30.083 INFO:teuthology.orchestra.run.smithi057.stdout: Upgrading : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:30.176 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:30.315 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 8/34 2024-04-15T22:06:30.377 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T22:06:30.405 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:30.422 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T22:06:30.443 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T22:06:30.451 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T22:06:30.497 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 11/34 2024-04-15T22:06:30.534 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T22:06:30.535 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T22:06:30.535 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T22:06:30.535 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:30.553 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:30.565 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T22:06:30.587 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T22:06:30.651 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T22:06:30.686 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T22:06:30.799 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T22:06:30.837 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T22:06:30.878 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T22:06:30.910 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T22:06:30.939 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T22:06:30.972 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T22:06:31.303 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T22:06:31.335 INFO:teuthology.orchestra.run.smithi057.stdout: Upgrading : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T22:06:31.426 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T22:06:31.457 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 23/34 2024-04-15T22:06:31.504 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T22:06:31.989 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T22:06:32.021 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T22:06:32.076 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T22:06:32.155 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 27/34 2024-04-15T22:06:32.182 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 28/34 2024-04-15T22:06:32.593 INFO:teuthology.orchestra.run.smithi087.stdout:lab-extras 44 kB/s | 1.7 kB 00:00 2024-04-15T22:06:34.568 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:34.604 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:35.202 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:35.249 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T22:06:35.342 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T22:06:35.342 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T22:06:35.342 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T22:06:35.342 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:35.369 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-radosgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 9.9 M 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout:Upgrading: 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout: librados2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.4 M 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout: librbd1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:06:35.372 INFO:teuthology.orchestra.run.smithi087.stdout: boost-program-options 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-base x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.3 M 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 21 M 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-selinux x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 25 k 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: libcephfs2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 746 k 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T22:06:35.373 INFO:teuthology.orchestra.run.smithi087.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: libradosstriper1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 501 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: librgw2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.2 M 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: python3-ceph-argparse 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 45 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: python3-ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 131 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cephfs x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 162 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T22:06:35.374 INFO:teuthology.orchestra.run.smithi087.stdout: python3-rados x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 320 k 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout: python3-rbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 298 k 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout: python3-rgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 99 k 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout:Installing weak dependencies: 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:06:35.375 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:06:35.376 INFO:teuthology.orchestra.run.smithi087.stdout:Install 30 Packages 2024-04-15T22:06:35.376 INFO:teuthology.orchestra.run.smithi087.stdout:Upgrade 2 Packages 2024-04-15T22:06:35.376 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:06:35.376 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:35.377 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 59 M 2024-04-15T22:06:35.377 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:06:36.238 INFO:teuthology.orchestra.run.smithi087.stdout:(1/32): ceph-base-19.0.0-2114.ga9a752df.el7.x86 7.5 MB/s | 5.3 MB 00:00 2024-04-15T22:06:36.286 INFO:teuthology.orchestra.run.smithi087.stdout:(2/32): ceph-selinux-19.0.0-2114.ga9a752df.el7. 504 kB/s | 25 kB 00:00 2024-04-15T22:06:36.436 INFO:teuthology.orchestra.run.smithi087.stdout:(3/32): libcephfs2-19.0.0-2114.ga9a752df.el7.x8 4.9 MB/s | 746 kB 00:00 2024-04-15T22:06:36.536 INFO:teuthology.orchestra.run.smithi087.stdout:(4/32): libradosstriper1-19.0.0-2114.ga9a752df. 4.9 MB/s | 501 kB 00:00 2024-04-15T22:06:37.195 INFO:teuthology.orchestra.run.smithi087.stdout:(5/32): ceph-radosgw-19.0.0-2114.ga9a752df.el7. 5.9 MB/s | 9.9 MB 00:01 2024-04-15T22:06:37.270 INFO:teuthology.orchestra.run.smithi087.stdout:(6/32): librgw2-19.0.0-2114.ga9a752df.el7.x86_6 7.0 MB/s | 5.2 MB 00:00 2024-04-15T22:06:37.287 INFO:teuthology.orchestra.run.smithi087.stdout:(7/32): python3-ceph-argparse-19.0.0-2114.ga9a7 492 kB/s | 45 kB 00:00 2024-04-15T22:06:37.329 INFO:teuthology.orchestra.run.smithi087.stdout:(8/32): python3-ceph-common-19.0.0-2114.ga9a752 2.2 MB/s | 131 kB 00:00 2024-04-15T22:06:37.588 INFO:teuthology.orchestra.run.smithi087.stdout:(9/32): ceph-common-19.0.0-2114.ga9a752df.el7.x 10 MB/s | 21 MB 00:02 2024-04-15T22:06:37.612 INFO:teuthology.orchestra.run.smithi087.stdout:(10/32): python3-cephfs-19.0.0-2114.ga9a752df.e 496 kB/s | 162 kB 00:00 2024-04-15T22:06:37.638 INFO:teuthology.orchestra.run.smithi087.stdout:(11/32): python3-rados-19.0.0-2114.ga9a752df.el 1.0 MB/s | 320 kB 00:00 2024-04-15T22:06:37.663 INFO:teuthology.orchestra.run.smithi087.stdout:(12/32): python3-rgw-19.0.0-2114.ga9a752df.el7. 1.9 MB/s | 99 kB 00:00 2024-04-15T22:06:37.714 INFO:teuthology.orchestra.run.smithi087.stdout:(13/32): python3-rbd-19.0.0-2114.ga9a752df.el7. 2.3 MB/s | 298 kB 00:00 2024-04-15T22:06:37.789 INFO:teuthology.orchestra.run.smithi087.stdout:(14/32): boost-program-options-1.75.0-8.el9.x86 701 kB/s | 106 kB 00:00 2024-04-15T22:06:37.814 INFO:teuthology.orchestra.run.smithi087.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 597 kB/s | 44 kB 00:00 2024-04-15T22:06:37.907 INFO:teuthology.orchestra.run.smithi087.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 731 kB/s | 159 kB 00:00 2024-04-15T22:06:37.932 INFO:teuthology.orchestra.run.smithi087.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 4.5 MB/s | 661 kB 00:00 2024-04-15T22:06:37.957 INFO:teuthology.orchestra.run.smithi087.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.9 MB/s | 282 kB 00:00 2024-04-15T22:06:37.982 INFO:teuthology.orchestra.run.smithi087.stdout:(19/32): python3-prettytable-0.7.2-27.el9.noarc 555 kB/s | 41 kB 00:00 2024-04-15T22:06:38.007 INFO:teuthology.orchestra.run.smithi087.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 697 kB/s | 35 kB 00:00 2024-04-15T22:06:38.041 INFO:teuthology.orchestra.run.smithi087.stdout:(21/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.6 MB/s | 220 kB 00:00 2024-04-15T22:06:38.066 INFO:teuthology.orchestra.run.smithi087.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 554 kB/s | 46 kB 00:00 2024-04-15T22:06:38.358 INFO:teuthology.orchestra.run.smithi087.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 89 kB/s | 26 kB 00:00 2024-04-15T22:06:38.492 INFO:teuthology.orchestra.run.smithi087.stdout:(24/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 639 kB/s | 309 kB 00:00 2024-04-15T22:06:38.517 INFO:teuthology.orchestra.run.smithi087.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 306 kB/s | 49 kB 00:00 2024-04-15T22:06:38.567 INFO:teuthology.orchestra.run.smithi087.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 895 kB/s | 67 kB 00:00 2024-04-15T22:06:38.676 INFO:teuthology.orchestra.run.smithi087.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 1.7 MB/s | 192 kB 00:00 2024-04-15T22:06:38.818 INFO:teuthology.orchestra.run.smithi087.stdout:(28/32): libarrow-9.0.0-10.el9.x86_64.rpm 5.9 MB/s | 4.4 MB 00:00 2024-04-15T22:06:38.860 INFO:teuthology.orchestra.run.smithi087.stdout:(29/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 2.4 MB/s | 838 kB 00:00 2024-04-15T22:06:38.951 INFO:teuthology.orchestra.run.smithi087.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 5.7 MB/s | 1.6 MB 00:00 2024-04-15T22:06:39.194 INFO:teuthology.orchestra.run.smithi087.stdout:(31/32): librados2-19.0.0-2114.ga9a752df.el7.x8 9.0 MB/s | 3.4 MB 00:00 2024-04-15T22:06:39.244 INFO:teuthology.orchestra.run.smithi087.stdout:(32/32): librbd1-19.0.0-2114.ga9a752df.el7.x86_ 8.2 MB/s | 3.1 MB 00:00 2024-04-15T22:06:39.250 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:06:39.250 INFO:teuthology.orchestra.run.smithi087.stdout:Total 15 MB/s | 59 MB 00:03 2024-04-15T22:06:39.250 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:06:39.284 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:06:39.284 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:06:39.780 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:06:39.780 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout:skipping the directory /sys 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout:skipping the directory /proc 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout:skipping the directory /mnt 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout:skipping the directory /var/tmp 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout:skipping the directory /home 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout:skipping the directory /root 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout:skipping the directory /tmp 2024-04-15T22:06:40.804 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:41.195 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:06:41.300 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T22:06:41.331 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T22:06:41.357 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T22:06:41.380 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T22:06:41.397 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T22:06:41.598 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T22:06:41.652 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T22:06:41.737 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T22:06:41.763 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T22:06:41.763 INFO:teuthology.orchestra.run.smithi040.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:06:41.763 INFO:teuthology.orchestra.run.smithi040.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T22:06:41.763 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T22:06:41.763 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T22:06:41.763 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:41.765 INFO:teuthology.orchestra.run.smithi040.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T22:06:41.973 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T22:06:41.974 INFO:teuthology.orchestra.run.smithi040.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:42.030 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T22:06:42.067 INFO:teuthology.orchestra.run.smithi087.stdout: Upgrading : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:42.162 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:42.246 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 8/34 2024-04-15T22:06:42.277 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T22:06:42.323 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T22:06:42.352 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T22:06:42.395 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 11/34 2024-04-15T22:06:42.464 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T22:06:42.496 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T22:06:42.560 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T22:06:42.603 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T22:06:42.718 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T22:06:42.754 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T22:06:42.794 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T22:06:42.819 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T22:06:42.848 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T22:06:42.881 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 1/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 3/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 4/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 5/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 6/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:43.136 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 8/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 9/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 10/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 11/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 13/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T22:06:43.137 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T22:06:43.138 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T22:06:43.138 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T22:06:43.138 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T22:06:43.138 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T22:06:43.138 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T22:06:43.138 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T22:06:43.138 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T22:06:43.138 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T22:06:43.139 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T22:06:43.139 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:43.139 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T22:06:43.139 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 33/34 2024-04-15T22:06:43.195 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T22:06:43.227 INFO:teuthology.orchestra.run.smithi087.stdout: Upgrading : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T22:06:43.300 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T22:06:43.332 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 23/34 2024-04-15T22:06:43.376 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T22:06:43.839 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T22:06:43.871 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T22:06:43.935 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T22:06:44.003 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 27/34 2024-04-15T22:06:44.033 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 28/34 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout:Upgraded: 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.176 INFO:teuthology.orchestra.run.smithi040.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.177 INFO:teuthology.orchestra.run.smithi040.stdout: python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:44.178 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:06:44.491 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-test 2024-04-15T22:06:45.077 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:00:30 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:06:45.244 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:06:45.244 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-test x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 48 M 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout: libcephsqlite x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 164 k 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T22:06:45.245 INFO:teuthology.orchestra.run.smithi040.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T22:06:45.246 INFO:teuthology.orchestra.run.smithi040.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T22:06:45.246 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:45.246 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:06:45.246 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:06:45.246 INFO:teuthology.orchestra.run.smithi040.stdout:Install 6 Packages 2024-04-15T22:06:45.246 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:45.246 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 49 M 2024-04-15T22:06:45.247 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 206 M 2024-04-15T22:06:45.247 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:06:45.456 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:45.456 INFO:teuthology.orchestra.run.smithi057.stdout:skipping the directory /sys 2024-04-15T22:06:45.457 INFO:teuthology.orchestra.run.smithi057.stdout:skipping the directory /proc 2024-04-15T22:06:45.457 INFO:teuthology.orchestra.run.smithi057.stdout:skipping the directory /mnt 2024-04-15T22:06:45.457 INFO:teuthology.orchestra.run.smithi057.stdout:skipping the directory /var/tmp 2024-04-15T22:06:45.457 INFO:teuthology.orchestra.run.smithi057.stdout:skipping the directory /home 2024-04-15T22:06:45.457 INFO:teuthology.orchestra.run.smithi057.stdout:skipping the directory /root 2024-04-15T22:06:45.457 INFO:teuthology.orchestra.run.smithi057.stdout:skipping the directory /tmp 2024-04-15T22:06:45.457 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:45.668 INFO:teuthology.orchestra.run.smithi040.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 1.4 MB/s | 217 kB 00:00 2024-04-15T22:06:45.719 INFO:teuthology.orchestra.run.smithi040.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 5.9 MB/s | 300 kB 00:00 2024-04-15T22:06:45.752 INFO:teuthology.orchestra.run.smithi040.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.9 MB/s | 63 kB 00:00 2024-04-15T22:06:45.777 INFO:teuthology.orchestra.run.smithi040.stdout:(4/6): libcephsqlite-19.0.0-2114.ga9a752df.el7. 631 kB/s | 164 kB 00:00 2024-04-15T22:06:45.978 INFO:teuthology.orchestra.run.smithi040.stdout:(5/6): jq-1.6-16.el9.x86_64.rpm 831 kB/s | 187 kB 00:00 2024-04-15T22:06:46.261 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:46.304 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:46.395 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T22:06:46.421 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T22:06:46.421 INFO:teuthology.orchestra.run.smithi057.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:06:46.421 INFO:teuthology.orchestra.run.smithi057.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T22:06:46.421 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T22:06:46.421 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T22:06:46.421 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:46.423 INFO:teuthology.orchestra.run.smithi057.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T22:06:46.506 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T22:06:46.506 INFO:teuthology.orchestra.run.smithi057.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:46.956 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T22:06:47.004 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T22:06:47.134 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T22:06:47.134 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T22:06:47.134 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T22:06:47.134 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:06:47.165 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:47.672 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:47.672 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 1/34 2024-04-15T22:06:47.672 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2/34 2024-04-15T22:06:47.672 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 3/34 2024-04-15T22:06:47.672 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 4/34 2024-04-15T22:06:47.672 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 5/34 2024-04-15T22:06:47.672 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 6/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 8/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 9/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 10/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 11/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 13/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T22:06:47.673 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:47.674 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T22:06:47.675 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 33/34 2024-04-15T22:06:48.145 INFO:teuthology.orchestra.run.smithi040.stdout:(6/6): ceph-test-19.0.0-2114.ga9a752df.el7.x86_ 18 MB/s | 48 MB 00:02 2024-04-15T22:06:48.148 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:06:48.149 INFO:teuthology.orchestra.run.smithi040.stdout:Total 17 MB/s | 49 MB 00:02 2024-04-15T22:06:48.164 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:06:48.187 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:06:48.187 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:06:48.593 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:06:48.593 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:06:48.613 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:48.613 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:48.613 INFO:teuthology.orchestra.run.smithi057.stdout:Upgraded: 2024-04-15T22:06:48.613 INFO:teuthology.orchestra.run.smithi057.stdout: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.613 INFO:teuthology.orchestra.run.smithi057.stdout: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.613 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:06:48.613 INFO:teuthology.orchestra.run.smithi057.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.614 INFO:teuthology.orchestra.run.smithi057.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T22:06:48.615 INFO:teuthology.orchestra.run.smithi057.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T22:06:48.616 INFO:teuthology.orchestra.run.smithi057.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T22:06:48.616 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:48.616 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:06:48.952 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-test 2024-04-15T22:06:49.177 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:06:49.269 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T22:06:49.312 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T22:06:49.352 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T22:06:49.397 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T22:06:49.425 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T22:06:49.533 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:00:30 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:06:49.701 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:06:49.702 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-test x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 48 M 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout: libcephsqlite x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 164 k 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:06:49.703 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:06:49.704 INFO:teuthology.orchestra.run.smithi057.stdout:Install 6 Packages 2024-04-15T22:06:49.704 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:06:49.704 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 49 M 2024-04-15T22:06:49.704 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 206 M 2024-04-15T22:06:49.704 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:06:50.123 INFO:teuthology.orchestra.run.smithi057.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 1.3 MB/s | 217 kB 00:00 2024-04-15T22:06:50.173 INFO:teuthology.orchestra.run.smithi057.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 6.0 MB/s | 300 kB 00:00 2024-04-15T22:06:50.207 INFO:teuthology.orchestra.run.smithi057.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.8 MB/s | 63 kB 00:00 2024-04-15T22:06:50.232 INFO:teuthology.orchestra.run.smithi057.stdout:(4/6): libcephsqlite-19.0.0-2114.ga9a752df.el7. 593 kB/s | 164 kB 00:00 2024-04-15T22:06:50.316 INFO:teuthology.orchestra.run.smithi057.stdout:(5/6): jq-1.6-16.el9.x86_64.rpm 1.7 MB/s | 187 kB 00:00 2024-04-15T22:06:52.766 INFO:teuthology.orchestra.run.smithi057.stdout:(6/6): ceph-test-19.0.0-2114.ga9a752df.el7.x86_ 17 MB/s | 48 MB 00:02 2024-04-15T22:06:52.769 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:06:52.769 INFO:teuthology.orchestra.run.smithi057.stdout:Total 16 MB/s | 49 MB 00:03 2024-04-15T22:06:52.784 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:06:52.807 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:06:52.807 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:06:53.205 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:06:53.206 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:06:53.800 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:06:53.879 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T22:06:53.951 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T22:06:53.992 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T22:06:54.033 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T22:06:54.060 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T22:06:54.165 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T22:06:54.260 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T22:06:56.538 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:56.539 INFO:teuthology.orchestra.run.smithi087.stdout:skipping the directory /sys 2024-04-15T22:06:56.539 INFO:teuthology.orchestra.run.smithi087.stdout:skipping the directory /proc 2024-04-15T22:06:56.539 INFO:teuthology.orchestra.run.smithi087.stdout:skipping the directory /mnt 2024-04-15T22:06:56.539 INFO:teuthology.orchestra.run.smithi087.stdout:skipping the directory /var/tmp 2024-04-15T22:06:56.539 INFO:teuthology.orchestra.run.smithi087.stdout:skipping the directory /home 2024-04-15T22:06:56.539 INFO:teuthology.orchestra.run.smithi087.stdout:skipping the directory /root 2024-04-15T22:06:56.539 INFO:teuthology.orchestra.run.smithi087.stdout:skipping the directory /tmp 2024-04-15T22:06:56.539 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:06:56.818 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T22:06:56.818 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 1/6 2024-04-15T22:06:56.818 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2/6 2024-04-15T22:06:56.818 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T22:06:56.818 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T22:06:56.818 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T22:06:57.277 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T22:06:57.277 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:57.277 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:06:57.278 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:57.278 INFO:teuthology.orchestra.run.smithi040.stdout: jq-1.6-16.el9.x86_64 2024-04-15T22:06:57.278 INFO:teuthology.orchestra.run.smithi040.stdout: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:57.278 INFO:teuthology.orchestra.run.smithi040.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T22:06:57.278 INFO:teuthology.orchestra.run.smithi040.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T22:06:57.278 INFO:teuthology.orchestra.run.smithi040.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T22:06:57.278 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:57.278 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:06:57.416 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T22:06:57.441 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T22:06:57.441 INFO:teuthology.orchestra.run.smithi087.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:06:57.442 INFO:teuthology.orchestra.run.smithi087.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T22:06:57.442 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T22:06:57.442 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T22:06:57.442 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:06:57.443 INFO:teuthology.orchestra.run.smithi087.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T22:06:57.482 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph 2024-04-15T22:06:57.509 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T22:06:57.510 INFO:teuthology.orchestra.run.smithi087.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:58.077 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:00:43 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:06:58.242 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:06:58.244 INFO:teuthology.orchestra.run.smithi040.stdout:========================================================================================= 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout:========================================================================================= 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: ceph x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 6.6 k 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mds x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 2.4 M 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 1.5 M 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 248 k 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mon x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 4.7 M 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-osd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 17 M 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T22:06:58.245 INFO:teuthology.orchestra.run.smithi040.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T22:06:58.246 INFO:teuthology.orchestra.run.smithi040.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:58.247 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:06:58.248 INFO:teuthology.orchestra.run.smithi040.stdout:========================================================================================= 2024-04-15T22:06:58.248 INFO:teuthology.orchestra.run.smithi040.stdout:Install 36 Packages 2024-04-15T22:06:58.248 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:06:58.248 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 30 M 2024-04-15T22:06:58.248 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 107 M 2024-04-15T22:06:58.248 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:06:58.650 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:58.650 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 1/34 2024-04-15T22:06:58.650 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2/34 2024-04-15T22:06:58.650 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 3/34 2024-04-15T22:06:58.650 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 4/34 2024-04-15T22:06:58.650 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 5/34 2024-04-15T22:06:58.650 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 6/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 8/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 9/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 10/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 11/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 13/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T22:06:58.651 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T22:06:58.652 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T22:06:58.652 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T22:06:58.652 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T22:06:58.652 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T22:06:58.652 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T22:06:58.652 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T22:06:58.652 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T22:06:58.652 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T22:06:58.653 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T22:06:58.653 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T22:06:58.653 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T22:06:58.654 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T22:06:58.654 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T22:06:58.654 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 33/34 2024-04-15T22:06:58.820 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T22:06:58.833 INFO:teuthology.orchestra.run.smithi040.stdout:(1/36): ceph-19.0.0-2114.ga9a752df.el7.x86_64.r 42 kB/s | 6.6 kB 00:00 2024-04-15T22:06:58.895 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T22:06:59.084 INFO:teuthology.orchestra.run.smithi040.stdout:(2/36): ceph-mgr-19.0.0-2114.ga9a752df.el7.x86_ 3.7 MB/s | 1.5 MB 00:00 2024-04-15T22:06:59.125 INFO:teuthology.orchestra.run.smithi040.stdout:(3/36): ceph-mds-19.0.0-2114.ga9a752df.el7.x86_ 5.3 MB/s | 2.4 MB 00:00 2024-04-15T22:06:59.209 INFO:teuthology.orchestra.run.smithi040.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2114.ga9a7 2.9 MB/s | 248 kB 00:00 2024-04-15T22:06:59.393 INFO:teuthology.orchestra.run.smithi040.stdout:(5/36): lua-5.4.4-4.el9.x86_64.rpm 1.0 MB/s | 187 kB 00:00 2024-04-15T22:06:59.435 INFO:teuthology.orchestra.run.smithi040.stdout:(6/36): python3-mako-1.1.4-6.el9.noarch.rpm 3.4 MB/s | 144 kB 00:00 2024-04-15T22:06:59.460 INFO:teuthology.orchestra.run.smithi040.stdout:(7/36): python3-markupsafe-1.1.1-12.el9.x86_64. 1.2 MB/s | 32 kB 00:00 2024-04-15T22:06:59.485 INFO:teuthology.orchestra.run.smithi040.stdout:(8/36): python3-pytz-2021.1-5.el9.noarch.rpm 1.8 MB/s | 47 kB 00:00 2024-04-15T22:06:59.569 INFO:teuthology.orchestra.run.smithi040.stdout:(9/36): ceph-mon-19.0.0-2114.ga9a752df.el7.x86_ 6.4 MB/s | 4.7 MB 00:00 2024-04-15T22:06:59.586 INFO:teuthology.orchestra.run.smithi040.stdout:(10/36): python3-toml-0.10.2-6.el9.noarch.rpm 385 kB/s | 39 kB 00:00 2024-04-15T22:06:59.628 INFO:teuthology.orchestra.run.smithi040.stdout:(11/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 4.0 MB/s | 241 kB 00:00 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout:Upgraded: 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.671 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T22:06:59.672 INFO:teuthology.orchestra.run.smithi087.stdout: python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:06:59.673 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:06:59.736 INFO:teuthology.orchestra.run.smithi040.stdout:(12/36): python3-cryptography-36.0.1-4.el9.x86_ 7.6 MB/s | 1.1 MB 00:00 2024-04-15T22:06:59.761 INFO:teuthology.orchestra.run.smithi040.stdout:(13/36): python3-ply-3.11-14.el9.noarch.rpm 773 kB/s | 103 kB 00:00 2024-04-15T22:06:59.787 INFO:teuthology.orchestra.run.smithi040.stdout:(14/36): python3-pycparser-2.20-6.el9.noarch.rp 2.4 MB/s | 124 kB 00:00 2024-04-15T22:06:59.820 INFO:teuthology.orchestra.run.smithi040.stdout:(15/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.1 MB/s | 187 kB 00:00 2024-04-15T22:06:59.988 INFO:teuthology.orchestra.run.smithi040.stdout:(16/36): ceph-osd-19.0.0-2114.ga9a752df.el7.x86 19 MB/s | 17 MB 00:00 2024-04-15T22:07:00.062 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-test 2024-04-15T22:07:00.121 INFO:teuthology.orchestra.run.smithi040.stdout:(17/36): lua-devel-5.4.4-4.el9.x86_64.rpm 74 kB/s | 22 kB 00:00 2024-04-15T22:07:00.255 INFO:teuthology.orchestra.run.smithi040.stdout:(18/36): luarocks-3.9.2-1.el9.noarch.rpm 567 kB/s | 151 kB 00:00 2024-04-15T22:07:00.280 INFO:teuthology.orchestra.run.smithi040.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 274 kB/s | 43 kB 00:00 2024-04-15T22:07:00.338 INFO:teuthology.orchestra.run.smithi040.stdout:(20/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.9 MB/s | 172 kB 00:00 2024-04-15T22:07:00.363 INFO:teuthology.orchestra.run.smithi040.stdout:(21/36): python3-cherrypy-18.6.1-2.el9.noarch.r 4.2 MB/s | 358 kB 00:00 2024-04-15T22:07:00.397 INFO:teuthology.orchestra.run.smithi040.stdout:(22/36): python3-requests-2.25.1-8.el9.noarch.r 205 kB/s | 125 kB 00:00 2024-04-15T22:07:00.423 INFO:teuthology.orchestra.run.smithi040.stdout:(23/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 128 kB/s | 11 kB 00:00 2024-04-15T22:07:00.448 INFO:teuthology.orchestra.run.smithi040.stdout:(24/36): python3-jaraco-classes-3.2.1-5.el9.noa 211 kB/s | 18 kB 00:00 2024-04-15T22:07:00.473 INFO:teuthology.orchestra.run.smithi040.stdout:(25/36): python3-jaraco-collections-3.0.0-8.el9 307 kB/s | 23 kB 00:00 2024-04-15T22:07:00.498 INFO:teuthology.orchestra.run.smithi040.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 389 kB/s | 19 kB 00:00 2024-04-15T22:07:00.524 INFO:teuthology.orchestra.run.smithi040.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 260 kB/s | 20 kB 00:00 2024-04-15T22:07:00.549 INFO:teuthology.orchestra.run.smithi040.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 613 kB/s | 46 kB 00:00 2024-04-15T22:07:00.574 INFO:teuthology.orchestra.run.smithi040.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-04-15T22:07:00.599 INFO:teuthology.orchestra.run.smithi040.stdout:(30/36): python3-pecan-1.4.2-3.el9.noarch.rpm 5.3 MB/s | 272 kB 00:00 2024-04-15T22:07:00.625 INFO:teuthology.orchestra.run.smithi040.stdout:(31/36): python3-portend-3.1.0-2.el9.noarch.rpm 219 kB/s | 16 kB 00:00 2024-04-15T22:07:00.650 INFO:teuthology.orchestra.run.smithi040.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.2 MB/s | 90 kB 00:00 2024-04-15T22:07:00.655 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:00:28 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:00.675 INFO:teuthology.orchestra.run.smithi040.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 477 kB/s | 36 kB 00:00 2024-04-15T22:07:00.709 INFO:teuthology.orchestra.run.smithi040.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.9 MB/s | 230 kB 00:00 2024-04-15T22:07:00.742 INFO:teuthology.orchestra.run.smithi040.stdout:(35/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.6 MB/s | 427 kB 00:00 2024-04-15T22:07:00.759 INFO:teuthology.orchestra.run.smithi040.stdout:(36/36): python3-zc-lockfile-2.0-10.el9.noarch. 239 kB/s | 20 kB 00:00 2024-04-15T22:07:00.765 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:00.765 INFO:teuthology.orchestra.run.smithi040.stdout:Total 12 MB/s | 30 MB 00:02 2024-04-15T22:07:00.791 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:00.807 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:00.808 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:00.808 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:07:00.808 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:00.808 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:00.808 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-test x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 48 M 2024-04-15T22:07:00.808 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:07:00.808 INFO:teuthology.orchestra.run.smithi087.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout: libcephsqlite x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 164 k 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout:Install 6 Packages 2024-04-15T22:07:00.809 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:00.810 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 49 M 2024-04-15T22:07:00.810 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 206 M 2024-04-15T22:07:00.810 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:00.836 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:00.837 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:01.073 INFO:teuthology.orchestra.run.smithi087.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 1.3 MB/s | 217 kB 00:00 2024-04-15T22:07:01.132 INFO:teuthology.orchestra.run.smithi087.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 5.0 MB/s | 300 kB 00:00 2024-04-15T22:07:01.166 INFO:teuthology.orchestra.run.smithi087.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.8 MB/s | 63 kB 00:00 2024-04-15T22:07:01.231 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T22:07:01.231 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 1/6 2024-04-15T22:07:01.231 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2/6 2024-04-15T22:07:01.231 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T22:07:01.231 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T22:07:01.231 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T22:07:01.272 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:01.272 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:01.324 INFO:teuthology.orchestra.run.smithi087.stdout:(4/6): libcephsqlite-19.0.0-2114.ga9a752df.el7. 392 kB/s | 164 kB 00:00 2024-04-15T22:07:01.679 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout: jq-1.6-16.el9.x86_64 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:01.680 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:01.766 INFO:teuthology.orchestra.run.smithi087.stdout:(5/6): jq-1.6-16.el9.x86_64.rpm 312 kB/s | 187 kB 00:00 2024-04-15T22:07:01.943 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph 2024-04-15T22:07:02.535 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:00:43 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:02.639 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:02.695 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T22:07:02.704 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout:========================================================================================= 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout:========================================================================================= 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout: ceph x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 6.6 k 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mds x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 2.4 M 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 1.5 M 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 248 k 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mon x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 4.7 M 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-osd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 17 M 2024-04-15T22:07:02.707 INFO:teuthology.orchestra.run.smithi057.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T22:07:02.708 INFO:teuthology.orchestra.run.smithi057.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T22:07:02.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T22:07:02.710 INFO:teuthology.orchestra.run.smithi057.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T22:07:02.710 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:02.710 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:02.710 INFO:teuthology.orchestra.run.smithi057.stdout:========================================================================================= 2024-04-15T22:07:02.710 INFO:teuthology.orchestra.run.smithi057.stdout:Install 36 Packages 2024-04-15T22:07:02.710 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:02.710 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 30 M 2024-04-15T22:07:02.711 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 107 M 2024-04-15T22:07:02.711 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:02.728 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T22:07:02.756 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T22:07:02.830 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T22:07:02.871 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T22:07:02.904 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T22:07:03.002 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T22:07:03.077 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T22:07:03.133 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T22:07:03.206 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T22:07:03.216 INFO:teuthology.orchestra.run.smithi087.stdout:(6/6): ceph-test-19.0.0-2114.ga9a752df.el7.x86_ 21 MB/s | 48 MB 00:02 2024-04-15T22:07:03.219 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:03.220 INFO:teuthology.orchestra.run.smithi087.stdout:Total 20 MB/s | 49 MB 00:02 2024-04-15T22:07:03.234 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:03.256 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:03.256 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:03.259 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T22:07:03.275 INFO:teuthology.orchestra.run.smithi057.stdout:(1/36): ceph-19.0.0-2114.ga9a752df.el7.x86_64.r 40 kB/s | 6.6 kB 00:00 2024-04-15T22:07:03.297 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T22:07:03.355 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T22:07:03.419 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T22:07:03.534 INFO:teuthology.orchestra.run.smithi057.stdout:(2/36): ceph-mgr-19.0.0-2114.ga9a752df.el7.x86_ 3.5 MB/s | 1.5 MB 00:00 2024-04-15T22:07:03.623 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T22:07:03.644 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:03.645 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:03.676 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T22:07:03.718 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T22:07:03.757 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T22:07:03.786 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T22:07:03.851 INFO:teuthology.orchestra.run.smithi057.stdout:(3/36): ceph-mon-19.0.0-2114.ga9a752df.el7.x86_ 8.2 MB/s | 4.7 MB 00:00 2024-04-15T22:07:03.875 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T22:07:03.906 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T22:07:03.939 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T22:07:03.951 INFO:teuthology.orchestra.run.smithi057.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2114.ga9a7 2.4 MB/s | 248 kB 00:00 2024-04-15T22:07:03.980 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T22:07:04.015 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T22:07:04.049 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T22:07:04.077 INFO:teuthology.orchestra.run.smithi057.stdout:(5/36): lua-5.4.4-4.el9.x86_64.rpm 1.5 MB/s | 187 kB 00:00 2024-04-15T22:07:04.118 INFO:teuthology.orchestra.run.smithi057.stdout:(6/36): python3-mako-1.1.4-6.el9.noarch.rpm 3.4 MB/s | 144 kB 00:00 2024-04-15T22:07:04.144 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T22:07:04.177 INFO:teuthology.orchestra.run.smithi057.stdout:(7/36): ceph-mds-19.0.0-2114.ga9a752df.el7.x86_ 2.2 MB/s | 2.4 MB 00:01 2024-04-15T22:07:04.188 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T22:07:04.202 INFO:teuthology.orchestra.run.smithi057.stdout:(8/36): python3-markupsafe-1.1.1-12.el9.x86_64. 378 kB/s | 32 kB 00:00 2024-04-15T22:07:04.221 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:04.228 INFO:teuthology.orchestra.run.smithi057.stdout:(9/36): python3-pytz-2021.1-5.el9.noarch.rpm 945 kB/s | 47 kB 00:00 2024-04-15T22:07:04.253 INFO:teuthology.orchestra.run.smithi057.stdout:(10/36): python3-toml-0.10.2-6.el9.noarch.rpm 773 kB/s | 39 kB 00:00 2024-04-15T22:07:04.263 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T22:07:04.278 INFO:teuthology.orchestra.run.smithi057.stdout:(11/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 4.7 MB/s | 241 kB 00:00 2024-04-15T22:07:04.330 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T22:07:04.337 INFO:teuthology.orchestra.run.smithi057.stdout:(12/36): python3-cryptography-36.0.1-4.el9.x86_ 14 MB/s | 1.1 MB 00:00 2024-04-15T22:07:04.362 INFO:teuthology.orchestra.run.smithi057.stdout:(13/36): python3-ply-3.11-14.el9.noarch.rpm 1.2 MB/s | 103 kB 00:00 2024-04-15T22:07:04.372 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T22:07:04.387 INFO:teuthology.orchestra.run.smithi057.stdout:(14/36): python3-pycparser-2.20-6.el9.noarch.rp 2.4 MB/s | 124 kB 00:00 2024-04-15T22:07:04.405 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T22:07:04.413 INFO:teuthology.orchestra.run.smithi057.stdout:(15/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.7 MB/s | 187 kB 00:00 2024-04-15T22:07:04.414 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T22:07:04.458 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T22:07:04.494 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T22:07:04.537 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T22:07:04.579 INFO:teuthology.orchestra.run.smithi057.stdout:(16/36): ceph-osd-19.0.0-2114.ga9a752df.el7.x86 16 MB/s | 17 MB 00:01 2024-04-15T22:07:04.663 INFO:teuthology.orchestra.run.smithi057.stdout:(17/36): luarocks-3.9.2-1.el9.noarch.rpm 1.8 MB/s | 151 kB 00:00 2024-04-15T22:07:04.688 INFO:teuthology.orchestra.run.smithi057.stdout:(18/36): python3-requests-2.25.1-8.el9.noarch.r 416 kB/s | 125 kB 00:00 2024-04-15T22:07:04.705 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 31/36 2024-04-15T22:07:04.705 INFO:teuthology.orchestra.run.smithi057.stdout:(19/36): lua-devel-5.4.4-4.el9.x86_64.rpm 76 kB/s | 22 kB 00:00 2024-04-15T22:07:04.722 INFO:teuthology.orchestra.run.smithi057.stdout:(20/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 734 kB/s | 43 kB 00:00 2024-04-15T22:07:04.735 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T22:07:04.748 INFO:teuthology.orchestra.run.smithi057.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 429 kB/s | 11 kB 00:00 2024-04-15T22:07:04.761 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T22:07:04.761 INFO:teuthology.orchestra.run.smithi040.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:04.761 INFO:teuthology.orchestra.run.smithi040.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T22:07:04.761 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T22:07:04.761 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T22:07:04.761 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:04.773 INFO:teuthology.orchestra.run.smithi057.stdout:(22/36): python3-jaraco-classes-3.2.1-5.el9.noa 711 kB/s | 18 kB 00:00 2024-04-15T22:07:04.798 INFO:teuthology.orchestra.run.smithi057.stdout:(23/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.5 MB/s | 172 kB 00:00 2024-04-15T22:07:04.823 INFO:teuthology.orchestra.run.smithi057.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 463 kB/s | 23 kB 00:00 2024-04-15T22:07:04.849 INFO:teuthology.orchestra.run.smithi057.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 389 kB/s | 19 kB 00:00 2024-04-15T22:07:04.874 INFO:teuthology.orchestra.run.smithi057.stdout:(26/36): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-04-15T22:07:04.899 INFO:teuthology.orchestra.run.smithi057.stdout:(27/36): python3-logutils-0.3.5-21.el9.noarch.r 925 kB/s | 46 kB 00:00 2024-04-15T22:07:04.924 INFO:teuthology.orchestra.run.smithi057.stdout:(28/36): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-04-15T22:07:04.950 INFO:teuthology.orchestra.run.smithi057.stdout:(29/36): python3-cherrypy-18.6.1-2.el9.noarch.r 1.4 MB/s | 358 kB 00:00 2024-04-15T22:07:04.975 INFO:teuthology.orchestra.run.smithi057.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 327 kB/s | 16 kB 00:00 2024-04-15T22:07:05.000 INFO:teuthology.orchestra.run.smithi057.stdout:(31/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-04-15T22:07:05.025 INFO:teuthology.orchestra.run.smithi057.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 716 kB/s | 36 kB 00:00 2024-04-15T22:07:05.051 INFO:teuthology.orchestra.run.smithi057.stdout:(33/36): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-04-15T22:07:05.076 INFO:teuthology.orchestra.run.smithi057.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-04-15T22:07:05.101 INFO:teuthology.orchestra.run.smithi057.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 400 kB/s | 20 kB 00:00 2024-04-15T22:07:05.134 INFO:teuthology.orchestra.run.smithi057.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-04-15T22:07:05.137 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:05.137 INFO:teuthology.orchestra.run.smithi057.stdout:Total 12 MB/s | 30 MB 00:02 2024-04-15T22:07:05.163 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:05.208 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:05.208 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:05.639 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:05.639 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:06.277 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T22:07:06.305 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T22:07:06.305 INFO:teuthology.orchestra.run.smithi040.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:06.305 INFO:teuthology.orchestra.run.smithi040.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T22:07:06.305 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T22:07:06.305 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T22:07:06.305 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:06.769 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T22:07:06.794 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T22:07:06.794 INFO:teuthology.orchestra.run.smithi040.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:06.794 INFO:teuthology.orchestra.run.smithi040.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T22:07:06.794 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T22:07:06.794 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T22:07:06.794 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:06.970 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:07.028 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T22:07:07.029 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T22:07:07.052 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T22:07:07.052 INFO:teuthology.orchestra.run.smithi040.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:07.052 INFO:teuthology.orchestra.run.smithi040.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T22:07:07.052 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T22:07:07.053 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T22:07:07.053 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:07.061 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T22:07:07.089 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T22:07:07.120 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T22:07:07.163 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T22:07:07.223 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T22:07:07.263 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T22:07:07.360 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T22:07:07.445 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T22:07:07.508 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T22:07:07.583 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T22:07:07.642 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T22:07:07.680 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T22:07:07.747 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T22:07:07.810 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T22:07:08.003 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T22:07:08.051 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T22:07:08.095 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T22:07:08.132 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T22:07:08.162 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T22:07:08.242 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T22:07:08.280 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T22:07:08.314 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T22:07:08.354 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T22:07:08.390 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T22:07:08.423 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T22:07:08.517 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T22:07:08.563 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T22:07:08.639 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T22:07:08.781 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T22:07:08.913 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T22:07:08.956 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T22:07:08.956 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 1/36 2024-04-15T22:07:08.956 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2/36 2024-04-15T22:07:08.956 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 3/36 2024-04-15T22:07:08.956 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 4/36 2024-04-15T22:07:08.956 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 5/36 2024-04-15T22:07:08.956 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 6/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T22:07:08.957 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T22:07:08.958 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T22:07:08.959 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T22:07:08.959 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T22:07:08.959 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T22:07:08.959 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T22:07:08.959 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T22:07:08.959 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T22:07:09.010 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T22:07:09.079 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 31/36 2024-04-15T22:07:09.085 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T22:07:09.108 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T22:07:09.134 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T22:07:09.134 INFO:teuthology.orchestra.run.smithi057.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:09.134 INFO:teuthology.orchestra.run.smithi057.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T22:07:09.134 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T22:07:09.134 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T22:07:09.134 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:10.004 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T22:07:10.004 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:10.004 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:10.004 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:10.004 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:10.004 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:10.004 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T22:07:10.005 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T22:07:10.006 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:10.007 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:10.363 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-base 2024-04-15T22:07:10.651 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T22:07:10.679 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T22:07:10.679 INFO:teuthology.orchestra.run.smithi057.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:10.679 INFO:teuthology.orchestra.run.smithi057.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T22:07:10.679 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T22:07:10.679 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T22:07:10.679 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:10.957 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:00:55 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:11.057 INFO:teuthology.orchestra.run.smithi040.stdout:Package ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:11.113 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:11.115 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:07:11.115 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:11.144 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T22:07:11.167 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T22:07:11.168 INFO:teuthology.orchestra.run.smithi057.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:11.168 INFO:teuthology.orchestra.run.smithi057.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T22:07:11.168 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T22:07:11.168 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T22:07:11.168 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:11.184 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install cephadm 2024-04-15T22:07:11.402 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T22:07:11.426 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T22:07:11.426 INFO:teuthology.orchestra.run.smithi057.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:11.426 INFO:teuthology.orchestra.run.smithi057.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T22:07:11.426 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T22:07:11.427 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T22:07:11.427 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:11.447 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T22:07:11.447 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 1/6 2024-04-15T22:07:11.447 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2/6 2024-04-15T22:07:11.447 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T22:07:11.447 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T22:07:11.447 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T22:07:11.494 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T22:07:11.770 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:00:56 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:11.927 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:11.928 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:11.928 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout: cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 749 k 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout:Install 1 Package 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 749 k 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 755 k 2024-04-15T22:07:11.929 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:11.972 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout: jq-1.6-16.el9.x86_64 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:11.973 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:12.204 INFO:teuthology.orchestra.run.smithi040.stdout:cephadm-19.0.0-2114.ga9a752df.el7.noarch.rpm 2.7 MB/s | 749 kB 00:00 2024-04-15T22:07:12.205 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:12.205 INFO:teuthology.orchestra.run.smithi040.stdout:Total 2.6 MB/s | 749 kB 00:00 2024-04-15T22:07:12.205 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:12.211 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:12.211 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:12.217 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:12.217 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:12.218 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph 2024-04-15T22:07:12.294 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:12.731 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:12.794 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:00:40 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:12.827 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:12.948 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:12.950 INFO:teuthology.orchestra.run.smithi087.stdout:========================================================================================= 2024-04-15T22:07:12.950 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout:========================================================================================= 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: ceph x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 6.6 k 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mds x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 2.4 M 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 1.5 M 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 248 k 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mon x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 4.7 M 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-osd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 17 M 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T22:07:12.951 INFO:teuthology.orchestra.run.smithi087.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T22:07:12.952 INFO:teuthology.orchestra.run.smithi087.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T22:07:12.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T22:07:12.954 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:12.954 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:12.954 INFO:teuthology.orchestra.run.smithi087.stdout:========================================================================================= 2024-04-15T22:07:12.954 INFO:teuthology.orchestra.run.smithi087.stdout:Install 36 Packages 2024-04-15T22:07:12.954 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:12.955 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 30 M 2024-04-15T22:07:12.955 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 107 M 2024-04-15T22:07:12.955 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:13.220 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:13.269 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T22:07:13.269 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 1/36 2024-04-15T22:07:13.269 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2/36 2024-04-15T22:07:13.269 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 3/36 2024-04-15T22:07:13.269 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 4/36 2024-04-15T22:07:13.269 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 5/36 2024-04-15T22:07:13.269 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 6/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T22:07:13.270 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T22:07:13.271 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T22:07:13.271 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T22:07:13.271 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T22:07:13.271 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T22:07:13.271 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T22:07:13.271 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T22:07:13.271 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T22:07:13.272 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T22:07:13.272 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T22:07:13.272 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T22:07:13.272 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T22:07:13.272 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T22:07:13.272 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T22:07:13.272 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T22:07:13.272 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T22:07:13.490 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:13.490 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:13.491 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:13.491 INFO:teuthology.orchestra.run.smithi040.stdout: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:13.491 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:13.491 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:13.709 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T22:07:13.818 INFO:teuthology.orchestra.run.smithi087.stdout:(1/36): ceph-19.0.0-2114.ga9a752df.el7.x86_64.r 41 kB/s | 6.6 kB 00:00 2024-04-15T22:07:14.010 INFO:teuthology.orchestra.run.smithi087.stdout:(2/36): ceph-mgr-19.0.0-2114.ga9a752df.el7.x86_ 4.2 MB/s | 1.5 MB 00:00 2024-04-15T22:07:14.036 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T22:07:14.036 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:14.036 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T22:07:14.037 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T22:07:14.038 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:14.039 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:14.299 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:00:59 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:14.330 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-base 2024-04-15T22:07:14.402 INFO:teuthology.orchestra.run.smithi087.stdout:(3/36): ceph-mon-19.0.0-2114.ga9a752df.el7.x86_ 8.0 MB/s | 4.7 MB 00:00 2024-04-15T22:07:14.455 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:14.456 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:14.456 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repo Size 2024-04-15T22:07:14.456 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:14.456 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:14.456 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 145 k 2024-04-15T22:07:14.456 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:14.456 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:14.456 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:14.457 INFO:teuthology.orchestra.run.smithi040.stdout:Install 1 Package 2024-04-15T22:07:14.457 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:14.457 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 145 k 2024-04-15T22:07:14.457 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 435 k 2024-04-15T22:07:14.457 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:14.478 INFO:teuthology.orchestra.run.smithi087.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2114.ga9a7 3.2 MB/s | 248 kB 00:00 2024-04-15T22:07:14.586 INFO:teuthology.orchestra.run.smithi087.stdout:(5/36): lua-5.4.4-4.el9.x86_64.rpm 1.7 MB/s | 187 kB 00:00 2024-04-15T22:07:14.628 INFO:teuthology.orchestra.run.smithi087.stdout:(6/36): python3-mako-1.1.4-6.el9.noarch.rpm 3.4 MB/s | 144 kB 00:00 2024-04-15T22:07:14.662 INFO:teuthology.orchestra.run.smithi087.stdout:(7/36): python3-markupsafe-1.1.1-12.el9.x86_64. 949 kB/s | 32 kB 00:00 2024-04-15T22:07:14.695 INFO:teuthology.orchestra.run.smithi087.stdout:(8/36): python3-pytz-2021.1-5.el9.noarch.rpm 1.4 MB/s | 47 kB 00:00 2024-04-15T22:07:14.729 INFO:teuthology.orchestra.run.smithi087.stdout:(9/36): python3-toml-0.10.2-6.el9.noarch.rpm 1.1 MB/s | 39 kB 00:00 2024-04-15T22:07:14.771 INFO:teuthology.orchestra.run.smithi087.stdout:(10/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 5.6 MB/s | 241 kB 00:00 2024-04-15T22:07:14.869 INFO:teuthology.orchestra.run.smithi040.stdout:ceph-immutable-object-cache-19.0.0-2114.ga9a752 351 kB/s | 145 kB 00:00 2024-04-15T22:07:14.870 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:14.870 INFO:teuthology.orchestra.run.smithi040.stdout:Total 350 kB/s | 145 kB 00:00 2024-04-15T22:07:14.870 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:14.879 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:14.879 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:14.917 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:00:55 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:14.934 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:14.934 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:14.938 INFO:teuthology.orchestra.run.smithi087.stdout:(11/36): ceph-osd-19.0.0-2114.ga9a752df.el7.x86 18 MB/s | 17 MB 00:00 2024-04-15T22:07:14.971 INFO:teuthology.orchestra.run.smithi087.stdout:(12/36): python3-cryptography-36.0.1-4.el9.x86_ 5.7 MB/s | 1.1 MB 00:00 2024-04-15T22:07:14.997 INFO:teuthology.orchestra.run.smithi087.stdout:(13/36): python3-ply-3.11-14.el9.noarch.rpm 1.8 MB/s | 103 kB 00:00 2024-04-15T22:07:15.018 INFO:teuthology.orchestra.run.smithi057.stdout:Package ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:15.022 INFO:teuthology.orchestra.run.smithi087.stdout:(14/36): python3-pycparser-2.20-6.el9.noarch.rp 2.4 MB/s | 124 kB 00:00 2024-04-15T22:07:15.048 INFO:teuthology.orchestra.run.smithi087.stdout:(15/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.7 MB/s | 187 kB 00:00 2024-04-15T22:07:15.074 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:15.075 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:07:15.075 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:15.087 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:15.089 INFO:teuthology.orchestra.run.smithi087.stdout:(16/36): ceph-mds-19.0.0-2114.ga9a752df.el7.x86 1.6 MB/s | 2.4 MB 00:01 2024-04-15T22:07:15.140 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install cephadm 2024-04-15T22:07:15.148 INFO:teuthology.orchestra.run.smithi087.stdout:(17/36): python3-requests-2.25.1-8.el9.noarch.r 999 kB/s | 125 kB 00:00 2024-04-15T22:07:15.153 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:15.179 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:15.179 INFO:teuthology.orchestra.run.smithi040.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:15.179 INFO:teuthology.orchestra.run.smithi040.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T22:07:15.179 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:15.198 INFO:teuthology.orchestra.run.smithi087.stdout:(18/36): luarocks-3.9.2-1.el9.noarch.rpm 1.4 MB/s | 151 kB 00:00 2024-04-15T22:07:15.215 INFO:teuthology.orchestra.run.smithi087.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 649 kB/s | 43 kB 00:00 2024-04-15T22:07:15.240 INFO:teuthology.orchestra.run.smithi087.stdout:(20/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 4.0 MB/s | 172 kB 00:00 2024-04-15T22:07:15.266 INFO:teuthology.orchestra.run.smithi087.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 431 kB/s | 11 kB 00:00 2024-04-15T22:07:15.291 INFO:teuthology.orchestra.run.smithi087.stdout:(22/36): python3-cherrypy-18.6.1-2.el9.noarch.r 4.6 MB/s | 358 kB 00:00 2024-04-15T22:07:15.308 INFO:teuthology.orchestra.run.smithi087.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 422 kB/s | 18 kB 00:00 2024-04-15T22:07:15.324 INFO:teuthology.orchestra.run.smithi087.stdout:(24/36): lua-devel-5.4.4-4.el9.x86_64.rpm 80 kB/s | 22 kB 00:00 2024-04-15T22:07:15.341 INFO:teuthology.orchestra.run.smithi087.stdout:(25/36): python3-jaraco-collections-3.0.0-8.el9 461 kB/s | 23 kB 00:00 2024-04-15T22:07:15.358 INFO:teuthology.orchestra.run.smithi087.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 386 kB/s | 19 kB 00:00 2024-04-15T22:07:15.375 INFO:teuthology.orchestra.run.smithi087.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 390 kB/s | 20 kB 00:00 2024-04-15T22:07:15.392 INFO:teuthology.orchestra.run.smithi087.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 918 kB/s | 46 kB 00:00 2024-04-15T22:07:15.418 INFO:teuthology.orchestra.run.smithi087.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 1.3 MB/s | 79 kB 00:00 2024-04-15T22:07:15.435 INFO:teuthology.orchestra.run.smithi087.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 391 kB/s | 16 kB 00:00 2024-04-15T22:07:15.460 INFO:teuthology.orchestra.run.smithi087.stdout:(31/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 2.1 MB/s | 90 kB 00:00 2024-04-15T22:07:15.477 INFO:teuthology.orchestra.run.smithi087.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 857 kB/s | 36 kB 00:00 2024-04-15T22:07:15.502 INFO:teuthology.orchestra.run.smithi087.stdout:(33/36): python3-pecan-1.4.2-3.el9.noarch.rpm 2.1 MB/s | 272 kB 00:00 2024-04-15T22:07:15.527 INFO:teuthology.orchestra.run.smithi087.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.3 MB/s | 230 kB 00:00 2024-04-15T22:07:15.545 INFO:teuthology.orchestra.run.smithi087.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 478 kB/s | 20 kB 00:00 2024-04-15T22:07:15.578 INFO:teuthology.orchestra.run.smithi087.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.1 MB/s | 427 kB 00:00 2024-04-15T22:07:15.581 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:15.581 INFO:teuthology.orchestra.run.smithi087.stdout:Total 11 MB/s | 30 MB 00:02 2024-04-15T22:07:15.605 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:15.647 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:15.647 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:15.725 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:00:56 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:15.882 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout: cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 749 k 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout:Install 1 Package 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 749 k 2024-04-15T22:07:15.883 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 755 k 2024-04-15T22:07:15.884 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:16.048 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:16.048 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:16.117 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:16.117 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:16.117 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:16.117 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:16.117 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:16.117 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:16.332 INFO:teuthology.orchestra.run.smithi057.stdout:cephadm-19.0.0-2114.ga9a752df.el7.noarch.rpm 1.6 MB/s | 749 kB 00:00 2024-04-15T22:07:16.332 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:16.333 INFO:teuthology.orchestra.run.smithi057.stdout:Total 1.6 MB/s | 749 kB 00:00 2024-04-15T22:07:16.333 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:16.338 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:16.338 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:16.344 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:16.345 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:16.366 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-mgr 2024-04-15T22:07:16.419 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:16.882 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:16.957 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:01 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:16.980 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:17.060 INFO:teuthology.orchestra.run.smithi040.stdout:Package ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:17.115 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:17.116 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:07:17.116 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:17.182 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T22:07:17.353 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:17.365 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:17.430 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T22:07:17.463 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T22:07:17.491 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T22:07:17.561 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T22:07:17.598 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T22:07:17.628 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:17.629 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:17.629 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:17.629 INFO:teuthology.orchestra.run.smithi057.stdout: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:17.629 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:17.629 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:17.631 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T22:07:17.722 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T22:07:17.770 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:02 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:17.793 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T22:07:17.803 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T22:07:17.850 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T22:07:17.921 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T22:07:17.927 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout:====================================================================================== 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout:====================================================================================== 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 3.5 M 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 32 k 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 15 k 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T22:07:17.929 INFO:teuthology.orchestra.run.smithi040.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout:====================================================================================== 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout:Install 12 Packages 2024-04-15T22:07:17.930 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:17.931 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 8.6 M 2024-04-15T22:07:17.931 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 103 M 2024-04-15T22:07:17.931 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:17.975 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T22:07:18.014 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T22:07:18.063 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T22:07:18.122 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T22:07:18.311 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T22:07:18.359 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T22:07:18.391 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:00:59 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:18.397 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T22:07:18.432 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T22:07:18.463 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T22:07:18.464 INFO:teuthology.orchestra.run.smithi040.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2114.ga9a 80 kB/s | 15 kB 00:00 2024-04-15T22:07:18.539 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T22:07:18.550 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repo Size 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 145 k 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout:Install 1 Package 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:18.551 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 145 k 2024-04-15T22:07:18.552 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 435 k 2024-04-15T22:07:18.552 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:18.556 INFO:teuthology.orchestra.run.smithi040.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2114.ga9 111 kB/s | 32 kB 00:00 2024-04-15T22:07:18.581 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T22:07:18.607 INFO:teuthology.orchestra.run.smithi040.stdout:(3/12): protobuf-3.14.0-13.el9.x86_64.rpm 7.1 MB/s | 1.0 MB 00:00 2024-04-15T22:07:18.623 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T22:07:18.632 INFO:teuthology.orchestra.run.smithi040.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 3.1 MB/s | 238 kB 00:00 2024-04-15T22:07:18.663 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T22:07:18.698 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T22:07:18.733 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T22:07:18.774 INFO:teuthology.orchestra.run.smithi040.stdout:(5/12): ceph-mgr-dashboard-19.0.0-2114.ga9a752d 7.0 MB/s | 3.5 MB 00:00 2024-04-15T22:07:18.779 INFO:teuthology.orchestra.run.smithi057.stdout:ceph-immutable-object-cache-19.0.0-2114.ga9a752 638 kB/s | 145 kB 00:00 2024-04-15T22:07:18.779 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:18.779 INFO:teuthology.orchestra.run.smithi057.stdout:Total 634 kB/s | 145 kB 00:00 2024-04-15T22:07:18.780 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:18.788 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:18.788 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:18.826 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T22:07:18.843 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:18.843 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:18.864 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T22:07:18.935 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T22:07:18.989 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:19.024 INFO:teuthology.orchestra.run.smithi040.stdout:(6/12): protobuf-compiler-3.14.0-13.el9.x86_64. 2.0 MB/s | 863 kB 00:00 2024-04-15T22:07:19.038 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:19.063 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:19.063 INFO:teuthology.orchestra.run.smithi057.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:19.063 INFO:teuthology.orchestra.run.smithi057.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T22:07:19.063 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:19.072 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T22:07:19.174 INFO:teuthology.orchestra.run.smithi040.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 52 kB/s | 19 kB 00:00 2024-04-15T22:07:19.205 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T22:07:19.390 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 31/36 2024-04-15T22:07:19.416 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T22:07:19.440 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T22:07:19.441 INFO:teuthology.orchestra.run.smithi087.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:19.441 INFO:teuthology.orchestra.run.smithi087.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T22:07:19.441 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T22:07:19.441 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T22:07:19.441 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:19.450 INFO:teuthology.orchestra.run.smithi040.stdout:(8/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 671 kB/s | 548 kB 00:00 2024-04-15T22:07:19.484 INFO:teuthology.orchestra.run.smithi040.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 468 kB/s | 144 kB 00:00 2024-04-15T22:07:19.559 INFO:teuthology.orchestra.run.smithi040.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 282 kB/s | 31 kB 00:00 2024-04-15T22:07:19.667 INFO:teuthology.orchestra.run.smithi040.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.0 MB/s | 188 kB 00:00 2024-04-15T22:07:19.918 INFO:teuthology.orchestra.run.smithi040.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 2.3 MB/s | 2.0 MB 00:00 2024-04-15T22:07:19.923 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:19.924 INFO:teuthology.orchestra.run.smithi040.stdout:Total 4.3 MB/s | 8.6 MB 00:01 2024-04-15T22:07:19.944 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:19.963 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:19.964 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:20.046 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:20.046 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:20.046 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:20.046 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:20.047 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:20.047 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:20.150 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:20.150 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:20.290 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-mgr 2024-04-15T22:07:20.794 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:20.869 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T22:07:20.877 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:01 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:20.912 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T22:07:20.934 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T22:07:20.959 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T22:07:20.962 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T22:07:20.962 INFO:teuthology.orchestra.run.smithi087.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:20.963 INFO:teuthology.orchestra.run.smithi087.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T22:07:20.963 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T22:07:20.963 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T22:07:20.963 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:20.980 INFO:teuthology.orchestra.run.smithi057.stdout:Package ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:20.997 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T22:07:21.036 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:21.037 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:07:21.037 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:21.098 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T22:07:21.109 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T22:07:21.235 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T22:07:21.327 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T22:07:21.377 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T22:07:21.401 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T22:07:21.405 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T22:07:21.426 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T22:07:21.426 INFO:teuthology.orchestra.run.smithi087.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:21.426 INFO:teuthology.orchestra.run.smithi087.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T22:07:21.426 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T22:07:21.426 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T22:07:21.426 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:21.437 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 10/12 2024-04-15T22:07:21.660 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T22:07:21.680 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:02 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:21.685 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T22:07:21.685 INFO:teuthology.orchestra.run.smithi087.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:21.685 INFO:teuthology.orchestra.run.smithi087.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T22:07:21.685 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T22:07:21.685 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T22:07:21.686 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:21.750 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T22:07:21.839 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:21.840 INFO:teuthology.orchestra.run.smithi057.stdout:====================================================================================== 2024-04-15T22:07:21.840 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:07:21.840 INFO:teuthology.orchestra.run.smithi057.stdout:====================================================================================== 2024-04-15T22:07:21.840 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:21.840 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 3.5 M 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 32 k 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 15 k 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T22:07:21.841 INFO:teuthology.orchestra.run.smithi057.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T22:07:21.842 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:21.842 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:21.842 INFO:teuthology.orchestra.run.smithi057.stdout:====================================================================================== 2024-04-15T22:07:21.842 INFO:teuthology.orchestra.run.smithi057.stdout:Install 12 Packages 2024-04-15T22:07:21.842 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:21.843 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 8.6 M 2024-04-15T22:07:21.843 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 103 M 2024-04-15T22:07:21.843 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:22.533 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 11/12 2024-04-15T22:07:22.563 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T22:07:22.590 INFO:teuthology.orchestra.run.smithi057.stdout:(1/12): ceph-grafana-dashboards-19.0.0-2114.ga9 126 kB/s | 32 kB 00:00 2024-04-15T22:07:22.616 INFO:teuthology.orchestra.run.smithi057.stdout:(2/12): ceph-prometheus-alerts-19.0.0-2114.ga9a 55 kB/s | 15 kB 00:00 2024-04-15T22:07:22.765 INFO:teuthology.orchestra.run.smithi057.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.9 MB/s | 238 kB 00:00 2024-04-15T22:07:22.801 INFO:teuthology.orchestra.run.smithi057.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 4.8 MB/s | 1.0 MB 00:00 2024-04-15T22:07:23.041 INFO:teuthology.orchestra.run.smithi057.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 2.2 MB/s | 548 kB 00:00 2024-04-15T22:07:23.100 INFO:teuthology.orchestra.run.smithi057.stdout:(6/12): ceph-mgr-dashboard-19.0.0-2114.ga9a752d 4.6 MB/s | 3.5 MB 00:00 2024-04-15T22:07:23.125 INFO:teuthology.orchestra.run.smithi057.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 232 kB/s | 19 kB 00:00 2024-04-15T22:07:23.175 INFO:teuthology.orchestra.run.smithi057.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 2.8 MB/s | 144 kB 00:00 2024-04-15T22:07:23.225 INFO:teuthology.orchestra.run.smithi057.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 614 kB/s | 31 kB 00:00 2024-04-15T22:07:23.276 INFO:teuthology.orchestra.run.smithi057.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 3.7 MB/s | 188 kB 00:00 2024-04-15T22:07:23.368 INFO:teuthology.orchestra.run.smithi057.stdout:(11/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 7.6 MB/s | 2.0 MB 00:00 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 1/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 3/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 4/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 5/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 6/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T22:07:23.499 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T22:07:23.500 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T22:07:23.501 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T22:07:23.501 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T22:07:23.501 INFO:teuthology.orchestra.run.smithi057.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 1.1 MB/s | 863 kB 00:00 2024-04-15T22:07:23.502 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T22:07:23.502 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T22:07:23.502 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T22:07:23.503 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T22:07:23.503 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T22:07:23.503 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T22:07:23.503 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T22:07:23.503 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T22:07:23.503 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T22:07:23.503 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T22:07:23.506 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:23.506 INFO:teuthology.orchestra.run.smithi057.stdout:Total 5.2 MB/s | 8.6 MB 00:01 2024-04-15T22:07:23.526 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:23.545 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:23.545 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:23.733 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:23.733 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:23.863 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T22:07:23.863 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 1/12 2024-04-15T22:07:23.863 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 2/12 2024-04-15T22:07:23.863 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 3/12 2024-04-15T22:07:23.864 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T22:07:23.864 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T22:07:23.864 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T22:07:23.864 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T22:07:23.864 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T22:07:23.864 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T22:07:23.864 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T22:07:23.864 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T22:07:24.226 INFO:teuthology.orchestra.run.smithi040.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T22:07:24.227 INFO:teuthology.orchestra.run.smithi040.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T22:07:24.227 INFO:teuthology.orchestra.run.smithi040.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T22:07:24.227 INFO:teuthology.orchestra.run.smithi040.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T22:07:24.227 INFO:teuthology.orchestra.run.smithi040.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T22:07:24.227 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:24.227 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T22:07:24.245 INFO:teuthology.orchestra.run.smithi087.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T22:07:24.246 INFO:teuthology.orchestra.run.smithi087.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T22:07:24.247 INFO:teuthology.orchestra.run.smithi087.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T22:07:24.248 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:24.248 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:24.279 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:24.369 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T22:07:24.404 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T22:07:24.452 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T22:07:24.480 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T22:07:24.491 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T22:07:24.556 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-base 2024-04-15T22:07:24.572 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T22:07:24.749 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T22:07:24.845 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T22:07:24.894 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T22:07:24.921 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T22:07:24.953 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 10/12 2024-04-15T22:07:25.082 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:10 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:25.135 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:00:53 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:25.233 INFO:teuthology.orchestra.run.smithi087.stdout:Package ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:25.239 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout:============================================================================================ 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout:============================================================================================ 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 7.4 M 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T22:07:25.241 INFO:teuthology.orchestra.run.smithi040.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout:============================================================================================ 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout:Install 12 Packages 2024-04-15T22:07:25.242 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:25.243 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 37 M 2024-04-15T22:07:25.243 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 209 M 2024-04-15T22:07:25.243 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:25.286 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:25.287 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:07:25.287 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:25.347 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install cephadm 2024-04-15T22:07:25.626 INFO:teuthology.orchestra.run.smithi040.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 236 kB/s | 32 kB 00:00 2024-04-15T22:07:25.659 INFO:teuthology.orchestra.run.smithi040.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 535 kB/s | 17 kB 00:00 2024-04-15T22:07:25.735 INFO:teuthology.orchestra.run.smithi040.stdout:(3/12): openblas-0.3.21-2.el9.x86_64.rpm 463 kB/s | 34 kB 00:00 2024-04-15T22:07:25.785 INFO:teuthology.orchestra.run.smithi040.stdout:(4/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 10 MB/s | 3.0 MB 00:00 2024-04-15T22:07:25.925 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:00:53 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:25.943 INFO:teuthology.orchestra.run.smithi040.stdout:(5/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 23 MB/s | 4.7 MB 00:00 2024-04-15T22:07:26.010 INFO:teuthology.orchestra.run.smithi040.stdout:(6/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 21 MB/s | 4.8 MB 00:00 2024-04-15T22:07:26.035 INFO:teuthology.orchestra.run.smithi040.stdout:(7/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.4 MB/s | 217 kB 00:00 2024-04-15T22:07:26.052 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 11/12 2024-04-15T22:07:26.076 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:26.077 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:26.077 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:07:26.077 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:26.077 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:26.077 INFO:teuthology.orchestra.run.smithi087.stdout: cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 749 k 2024-04-15T22:07:26.077 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:26.077 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:26.077 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:26.078 INFO:teuthology.orchestra.run.smithi087.stdout:Install 1 Package 2024-04-15T22:07:26.078 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:26.078 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 749 k 2024-04-15T22:07:26.078 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 755 k 2024-04-15T22:07:26.078 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:26.087 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T22:07:26.178 INFO:teuthology.orchestra.run.smithi040.stdout:(8/12): libgfortran-11.4.1-3.el9.x86_64.rpm 5.6 MB/s | 803 kB 00:00 2024-04-15T22:07:26.336 INFO:teuthology.orchestra.run.smithi040.stdout:(9/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 48 MB/s | 16 MB 00:00 2024-04-15T22:07:26.359 INFO:teuthology.orchestra.run.smithi087.stdout:cephadm-19.0.0-2114.ga9a752df.el7.noarch.rpm 2.6 MB/s | 749 kB 00:00 2024-04-15T22:07:26.359 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:26.360 INFO:teuthology.orchestra.run.smithi087.stdout:Total 2.6 MB/s | 749 kB 00:00 2024-04-15T22:07:26.360 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:26.365 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:26.365 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:26.371 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:26.371 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:26.446 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:26.461 INFO:teuthology.orchestra.run.smithi040.stdout:(10/12): ceph-mgr-diskprediction-local-19.0.0-2 7.6 MB/s | 7.4 MB 00:00 2024-04-15T22:07:26.520 INFO:teuthology.orchestra.run.smithi040.stdout:(11/12): libquadmath-11.4.1-3.el9.x86_64.rpm 575 kB/s | 195 kB 00:00 2024-04-15T22:07:26.703 INFO:teuthology.orchestra.run.smithi040.stdout:(12/12): python3-devel-3.9.17-2.el9.x86_64.rpm 718 kB/s | 245 kB 00:00 2024-04-15T22:07:26.706 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:26.706 INFO:teuthology.orchestra.run.smithi040.stdout:Total 25 MB/s | 37 MB 00:01 2024-04-15T22:07:26.748 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:26.773 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:26.773 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:26.868 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:26.963 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:27.140 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:27.140 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:27.347 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:27.398 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T22:07:27.398 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 1/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 2/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 3/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T22:07:27.399 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T22:07:27.626 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T22:07:27.626 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:27.626 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:07:27.626 INFO:teuthology.orchestra.run.smithi087.stdout: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:27.626 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:27.626 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T22:07:27.755 INFO:teuthology.orchestra.run.smithi057.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T22:07:27.756 INFO:teuthology.orchestra.run.smithi057.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T22:07:27.756 INFO:teuthology.orchestra.run.smithi057.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T22:07:27.756 INFO:teuthology.orchestra.run.smithi057.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T22:07:27.756 INFO:teuthology.orchestra.run.smithi057.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T22:07:27.756 INFO:teuthology.orchestra.run.smithi057.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T22:07:27.756 INFO:teuthology.orchestra.run.smithi057.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T22:07:27.756 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:27.756 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:27.821 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T22:07:27.864 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:27.935 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T22:07:27.966 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T22:07:28.006 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T22:07:28.073 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T22:07:28.120 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T22:07:28.295 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T22:07:28.327 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T22:07:28.404 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:00:56 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:28.405 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T22:07:28.554 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:28.555 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:28.555 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repo Size 2024-04-15T22:07:28.555 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:28.555 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:28.555 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 145 k 2024-04-15T22:07:28.555 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:28.556 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:28.556 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:28.556 INFO:teuthology.orchestra.run.smithi087.stdout:Install 1 Package 2024-04-15T22:07:28.556 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:28.556 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 145 k 2024-04-15T22:07:28.556 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 435 k 2024-04-15T22:07:28.556 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:28.597 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:09 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:28.756 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:28.757 INFO:teuthology.orchestra.run.smithi057.stdout:============================================================================================ 2024-04-15T22:07:28.757 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:07:28.757 INFO:teuthology.orchestra.run.smithi057.stdout:============================================================================================ 2024-04-15T22:07:28.757 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:28.757 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 7.4 M 2024-04-15T22:07:28.757 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:07:28.757 INFO:teuthology.orchestra.run.smithi057.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout:============================================================================================ 2024-04-15T22:07:28.758 INFO:teuthology.orchestra.run.smithi057.stdout:Install 12 Packages 2024-04-15T22:07:28.759 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:28.759 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 37 M 2024-04-15T22:07:28.759 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 209 M 2024-04-15T22:07:28.759 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:28.906 INFO:teuthology.orchestra.run.smithi087.stdout:ceph-immutable-object-cache-19.0.0-2114.ga9a752 414 kB/s | 145 kB 00:00 2024-04-15T22:07:28.906 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:28.907 INFO:teuthology.orchestra.run.smithi087.stdout:Total 412 kB/s | 145 kB 00:00 2024-04-15T22:07:28.907 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:28.914 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:28.915 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:28.966 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:28.967 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:29.091 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T22:07:29.116 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:29.173 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:29.199 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:29.199 INFO:teuthology.orchestra.run.smithi087.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:29.199 INFO:teuthology.orchestra.run.smithi087.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T22:07:29.199 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:29.202 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T22:07:29.300 INFO:teuthology.orchestra.run.smithi057.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 210 kB/s | 32 kB 00:00 2024-04-15T22:07:29.333 INFO:teuthology.orchestra.run.smithi057.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 532 kB/s | 17 kB 00:00 2024-04-15T22:07:29.375 INFO:teuthology.orchestra.run.smithi057.stdout:(3/12): openblas-0.3.21-2.el9.x86_64.rpm 861 kB/s | 34 kB 00:00 2024-04-15T22:07:29.442 INFO:teuthology.orchestra.run.smithi057.stdout:(4/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 10 MB/s | 3.0 MB 00:00 2024-04-15T22:07:29.859 INFO:teuthology.orchestra.run.smithi057.stdout:(5/12): ceph-mgr-diskprediction-local-19.0.0-21 10 MB/s | 7.4 MB 00:00 2024-04-15T22:07:30.101 INFO:teuthology.orchestra.run.smithi057.stdout:(6/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 6.5 MB/s | 4.7 MB 00:00 2024-04-15T22:07:30.108 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T22:07:30.108 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:30.108 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:07:30.109 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:30.109 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:30.109 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:30.159 INFO:teuthology.orchestra.run.smithi057.stdout:(7/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 726 kB/s | 217 kB 00:00 2024-04-15T22:07:30.226 INFO:teuthology.orchestra.run.smithi057.stdout:(8/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 6.1 MB/s | 4.8 MB 00:00 2024-04-15T22:07:30.366 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-mgr 2024-04-15T22:07:30.476 INFO:teuthology.orchestra.run.smithi057.stdout:(9/12): libquadmath-11.4.1-3.el9.x86_64.rpm 788 kB/s | 195 kB 00:00 2024-04-15T22:07:30.501 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T22:07:30.643 INFO:teuthology.orchestra.run.smithi057.stdout:(10/12): libgfortran-11.4.1-3.el9.x86_64.rpm 1.6 MB/s | 803 kB 00:00 2024-04-15T22:07:30.835 INFO:teuthology.orchestra.run.smithi057.stdout:(11/12): python3-devel-3.9.17-2.el9.x86_64.rpm 686 kB/s | 245 kB 00:00 2024-04-15T22:07:30.958 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:00:58 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:31.002 INFO:teuthology.orchestra.run.smithi057.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 17 MB/s | 16 MB 00:00 2024-04-15T22:07:31.006 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:31.006 INFO:teuthology.orchestra.run.smithi057.stdout:Total 16 MB/s | 37 MB 00:02 2024-04-15T22:07:31.048 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:31.061 INFO:teuthology.orchestra.run.smithi087.stdout:Package ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:31.073 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:31.073 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:31.113 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:31.115 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:07:31.115 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:31.183 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T22:07:31.451 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:31.451 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:31.582 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T22:07:31.610 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T22:07:31.755 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:00:59 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:31.907 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:31.908 INFO:teuthology.orchestra.run.smithi087.stdout:====================================================================================== 2024-04-15T22:07:31.908 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:07:31.908 INFO:teuthology.orchestra.run.smithi087.stdout:====================================================================================== 2024-04-15T22:07:31.908 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:31.908 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 3.5 M 2024-04-15T22:07:31.908 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 32 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 15 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:31.909 INFO:teuthology.orchestra.run.smithi087.stdout:====================================================================================== 2024-04-15T22:07:31.910 INFO:teuthology.orchestra.run.smithi087.stdout:Install 12 Packages 2024-04-15T22:07:31.910 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:31.910 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 8.6 M 2024-04-15T22:07:31.910 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 103 M 2024-04-15T22:07:31.910 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:32.169 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:32.242 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T22:07:32.298 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T22:07:32.392 INFO:teuthology.orchestra.run.smithi087.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2114.ga9a 80 kB/s | 15 kB 00:00 2024-04-15T22:07:32.399 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T22:07:32.435 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T22:07:32.492 INFO:teuthology.orchestra.run.smithi087.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2114.ga9 109 kB/s | 32 kB 00:00 2024-04-15T22:07:32.550 INFO:teuthology.orchestra.run.smithi087.stdout:(3/12): protobuf-3.14.0-13.el9.x86_64.rpm 6.4 MB/s | 1.0 MB 00:00 2024-04-15T22:07:32.592 INFO:teuthology.orchestra.run.smithi087.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 2.3 MB/s | 238 kB 00:00 2024-04-15T22:07:32.619 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T22:07:32.651 INFO:teuthology.orchestra.run.smithi087.stdout:(5/12): ceph-mgr-dashboard-19.0.0-2114.ga9a752d 7.8 MB/s | 3.5 MB 00:00 2024-04-15T22:07:32.658 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T22:07:32.737 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T22:07:32.793 INFO:teuthology.orchestra.run.smithi087.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 137 kB/s | 19 kB 00:00 2024-04-15T22:07:32.851 INFO:teuthology.orchestra.run.smithi087.stdout:(7/12): protobuf-compiler-3.14.0-13.el9.x86_64. 2.8 MB/s | 863 kB 00:00 2024-04-15T22:07:32.952 INFO:teuthology.orchestra.run.smithi087.stdout:(8/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.5 MB/s | 548 kB 00:00 2024-04-15T22:07:33.002 INFO:teuthology.orchestra.run.smithi087.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 614 kB/s | 31 kB 00:00 2024-04-15T22:07:33.052 INFO:teuthology.orchestra.run.smithi087.stdout:(10/12): python3-grpcio-tools-1.46.7-10.el9.x86 721 kB/s | 144 kB 00:00 2024-04-15T22:07:33.077 INFO:teuthology.orchestra.run.smithi087.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.5 MB/s | 188 kB 00:00 2024-04-15T22:07:33.119 INFO:teuthology.orchestra.run.smithi087.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 6.2 MB/s | 2.0 MB 00:00 2024-04-15T22:07:33.122 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:33.122 INFO:teuthology.orchestra.run.smithi087.stdout:Total 7.1 MB/s | 8.6 MB 00:01 2024-04-15T22:07:33.140 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:33.158 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:33.158 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:33.343 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:33.343 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:33.447 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T22:07:33.567 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T22:07:33.863 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:33.936 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T22:07:33.980 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T22:07:34.026 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T22:07:34.057 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T22:07:34.165 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 1/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T22:07:34.228 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T22:07:34.229 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T22:07:34.229 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T22:07:34.315 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T22:07:34.408 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T22:07:34.461 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T22:07:34.489 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T22:07:34.521 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 10/12 2024-04-15T22:07:34.667 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T22:07:34.667 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:34.668 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:34.869 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T22:07:35.051 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-mgr-rook 2024-04-15T22:07:35.575 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 11/12 2024-04-15T22:07:35.606 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T22:07:35.645 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:20 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:35.806 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:35.807 INFO:teuthology.orchestra.run.smithi040.stdout:======================================================================================== 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout:======================================================================================== 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-rook noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 49 k 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T22:07:35.808 INFO:teuthology.orchestra.run.smithi040.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout:======================================================================================== 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout:Install 13 Packages 2024-04-15T22:07:35.809 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:35.810 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 2.0 M 2024-04-15T22:07:35.810 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 26 M 2024-04-15T22:07:35.810 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:35.959 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T22:07:35.990 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T22:07:36.120 INFO:teuthology.orchestra.run.smithi040.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 191 kB/s | 24 kB 00:00 2024-04-15T22:07:36.145 INFO:teuthology.orchestra.run.smithi040.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 118 kB/s | 18 kB 00:00 2024-04-15T22:07:36.195 INFO:teuthology.orchestra.run.smithi040.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.3 MB/s | 174 kB 00:00 2024-04-15T22:07:36.221 INFO:teuthology.orchestra.run.smithi040.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.7 MB/s | 132 kB 00:00 2024-04-15T22:07:36.263 INFO:teuthology.orchestra.run.smithi040.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.1 MB/s | 211 kB 00:00 2024-04-15T22:07:36.288 INFO:teuthology.orchestra.run.smithi040.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 643 kB/s | 43 kB 00:00 2024-04-15T22:07:36.313 INFO:teuthology.orchestra.run.smithi040.stdout:(7/13): ceph-mgr-rook-19.0.0-2114.ga9a752df.el7 153 kB/s | 49 kB 00:00 2024-04-15T22:07:36.531 INFO:teuthology.orchestra.run.smithi040.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 120 kB/s | 32 kB 00:00 2024-04-15T22:07:36.555 INFO:teuthology.orchestra.run.smithi040.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 56 kB/s | 15 kB 00:00 2024-04-15T22:07:36.689 INFO:teuthology.orchestra.run.smithi040.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 443 kB/s | 59 kB 00:00 2024-04-15T22:07:36.723 INFO:teuthology.orchestra.run.smithi040.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 495 kB/s | 203 kB 00:00 2024-04-15T22:07:36.781 INFO:teuthology.orchestra.run.smithi040.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 976 kB/s | 90 kB 00:00 2024-04-15T22:07:36.983 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T22:07:36.983 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 1/12 2024-04-15T22:07:36.983 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 2/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 3/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T22:07:36.984 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T22:07:37.048 INFO:teuthology.orchestra.run.smithi040.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 2.0 MB/s | 1.0 MB 00:00 2024-04-15T22:07:37.053 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:37.053 INFO:teuthology.orchestra.run.smithi040.stdout:Total 1.6 MB/s | 2.0 MB 00:01 2024-04-15T22:07:37.054 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:37.069 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:37.069 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:37.171 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:37.172 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:37.333 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T22:07:37.333 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:37.333 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:07:37.333 INFO:teuthology.orchestra.run.smithi087.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T22:07:37.334 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:37.335 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:37.591 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T22:07:37.691 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:37.868 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T22:07:37.927 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T22:07:37.992 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T22:07:38.035 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T22:07:38.077 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T22:07:38.174 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:06 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:38.178 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T22:07:38.295 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T22:07:38.326 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:38.328 INFO:teuthology.orchestra.run.smithi087.stdout:============================================================================================ 2024-04-15T22:07:38.328 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:07:38.328 INFO:teuthology.orchestra.run.smithi087.stdout:============================================================================================ 2024-04-15T22:07:38.328 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:38.328 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 7.4 M 2024-04-15T22:07:38.328 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:07:38.328 INFO:teuthology.orchestra.run.smithi087.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T22:07:38.329 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:38.330 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:38.330 INFO:teuthology.orchestra.run.smithi087.stdout:============================================================================================ 2024-04-15T22:07:38.330 INFO:teuthology.orchestra.run.smithi087.stdout:Install 12 Packages 2024-04-15T22:07:38.330 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:38.330 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 37 M 2024-04-15T22:07:38.331 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 209 M 2024-04-15T22:07:38.331 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:38.346 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 1/12 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T22:07:38.538 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T22:07:38.539 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T22:07:38.539 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T22:07:38.539 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T22:07:38.938 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T22:07:38.938 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:38.938 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:38.938 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:38.938 INFO:teuthology.orchestra.run.smithi057.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T22:07:38.938 INFO:teuthology.orchestra.run.smithi057.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T22:07:38.938 INFO:teuthology.orchestra.run.smithi057.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:38.939 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:39.035 INFO:teuthology.orchestra.run.smithi087.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 187 kB/s | 32 kB 00:00 2024-04-15T22:07:39.077 INFO:teuthology.orchestra.run.smithi087.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 418 kB/s | 17 kB 00:00 2024-04-15T22:07:39.144 INFO:teuthology.orchestra.run.smithi087.stdout:(3/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 11 MB/s | 3.0 MB 00:00 2024-04-15T22:07:39.150 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T22:07:39.169 INFO:teuthology.orchestra.run.smithi087.stdout:(4/12): openblas-0.3.21-2.el9.x86_64.rpm 380 kB/s | 34 kB 00:00 2024-04-15T22:07:39.221 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T22:07:39.259 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T22:07:39.285 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-mgr-rook 2024-04-15T22:07:39.308 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T22:07:39.336 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T22:07:39.436 INFO:teuthology.orchestra.run.smithi087.stdout:(5/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 16 MB/s | 4.7 MB 00:00 2024-04-15T22:07:39.511 INFO:teuthology.orchestra.run.smithi087.stdout:(6/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 14 MB/s | 4.8 MB 00:00 2024-04-15T22:07:39.536 INFO:teuthology.orchestra.run.smithi087.stdout:(7/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.1 MB/s | 217 kB 00:00 2024-04-15T22:07:39.637 INFO:teuthology.orchestra.run.smithi087.stdout:(8/12): ceph-mgr-diskprediction-local-19.0.0-21 9.6 MB/s | 7.4 MB 00:00 2024-04-15T22:07:39.720 INFO:teuthology.orchestra.run.smithi087.stdout:(9/12): libquadmath-11.4.1-3.el9.x86_64.rpm 2.4 MB/s | 195 kB 00:00 2024-04-15T22:07:39.881 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:20 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:39.904 INFO:teuthology.orchestra.run.smithi087.stdout:(10/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 40 MB/s | 16 MB 00:00 2024-04-15T22:07:39.929 INFO:teuthology.orchestra.run.smithi087.stdout:(11/12): libgfortran-11.4.1-3.el9.x86_64.rpm 2.0 MB/s | 803 kB 00:00 2024-04-15T22:07:40.041 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout:======================================================================================== 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout:======================================================================================== 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-rook noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 49 k 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T22:07:40.043 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout:======================================================================================== 2024-04-15T22:07:40.044 INFO:teuthology.orchestra.run.smithi057.stdout:Install 13 Packages 2024-04-15T22:07:40.045 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:40.045 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 2.0 M 2024-04-15T22:07:40.045 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 26 M 2024-04-15T22:07:40.045 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:40.079 INFO:teuthology.orchestra.run.smithi087.stdout:(12/12): python3-devel-3.9.17-2.el9.x86_64.rpm 689 kB/s | 245 kB 00:00 2024-04-15T22:07:40.081 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:40.082 INFO:teuthology.orchestra.run.smithi087.stdout:Total 21 MB/s | 37 MB 00:01 2024-04-15T22:07:40.123 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:40.131 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T22:07:40.131 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 1/13 2024-04-15T22:07:40.131 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T22:07:40.131 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T22:07:40.131 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T22:07:40.132 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T22:07:40.132 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T22:07:40.132 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T22:07:40.132 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T22:07:40.132 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T22:07:40.132 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T22:07:40.132 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T22:07:40.132 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T22:07:40.146 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:40.146 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:40.490 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T22:07:40.490 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:40.490 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:40.491 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:40.499 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:40.499 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:40.649 INFO:teuthology.orchestra.run.smithi057.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 120 kB/s | 24 kB 00:00 2024-04-15T22:07:40.674 INFO:teuthology.orchestra.run.smithi057.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 79 kB/s | 18 kB 00:00 2024-04-15T22:07:40.723 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T22:07:40.816 INFO:teuthology.orchestra.run.smithi057.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.0 MB/s | 174 kB 00:00 2024-04-15T22:07:40.841 INFO:teuthology.orchestra.run.smithi057.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 792 kB/s | 132 kB 00:00 2024-04-15T22:07:40.891 INFO:teuthology.orchestra.run.smithi057.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 2.7 MB/s | 211 kB 00:00 2024-04-15T22:07:40.917 INFO:teuthology.orchestra.run.smithi057.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 568 kB/s | 43 kB 00:00 2024-04-15T22:07:40.942 INFO:teuthology.orchestra.run.smithi057.stdout:(7/13): ceph-mgr-rook-19.0.0-2114.ga9a752df.el7 99 kB/s | 49 kB 00:00 2024-04-15T22:07:41.206 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:41.217 INFO:teuthology.orchestra.run.smithi057.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 99 kB/s | 32 kB 00:00 2024-04-15T22:07:41.242 INFO:teuthology.orchestra.run.smithi057.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 46 kB/s | 15 kB 00:00 2024-04-15T22:07:41.268 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T22:07:41.292 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T22:07:41.308 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:26 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:41.384 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T22:07:41.392 INFO:teuthology.orchestra.run.smithi057.stdout:(10/13): python3-google-auth-2.28.2-1.el9.noarc 450 kB/s | 203 kB 00:00 2024-04-15T22:07:41.418 INFO:teuthology.orchestra.run.smithi057.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 337 kB/s | 59 kB 00:00 2024-04-15T22:07:41.420 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T22:07:41.466 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout:======================================================================================== 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout:======================================================================================== 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 139 k 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T22:07:41.467 INFO:teuthology.orchestra.run.smithi040.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T22:07:41.468 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:41.468 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:41.468 INFO:teuthology.orchestra.run.smithi040.stdout:======================================================================================== 2024-04-15T22:07:41.468 INFO:teuthology.orchestra.run.smithi040.stdout:Install 6 Packages 2024-04-15T22:07:41.468 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:41.468 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 6.8 M 2024-04-15T22:07:41.468 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 33 M 2024-04-15T22:07:41.469 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:41.518 INFO:teuthology.orchestra.run.smithi057.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 717 kB/s | 90 kB 00:00 2024-04-15T22:07:41.560 INFO:teuthology.orchestra.run.smithi057.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 3.0 MB/s | 1.0 MB 00:00 2024-04-15T22:07:41.564 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:41.564 INFO:teuthology.orchestra.run.smithi057.stdout:Total 1.3 MB/s | 2.0 MB 00:01 2024-04-15T22:07:41.565 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:41.580 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:41.580 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:41.598 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T22:07:41.627 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T22:07:41.680 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:41.681 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:41.704 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T22:07:42.193 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:42.364 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T22:07:42.366 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T22:07:42.367 INFO:teuthology.orchestra.run.smithi040.stdout:(1/6): ceph-mgr-cephadm-19.0.0-2114.ga9a752df.e 609 kB/s | 139 kB 00:00 2024-04-15T22:07:42.421 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T22:07:42.451 INFO:teuthology.orchestra.run.smithi040.stdout:(2/6): python3-babel-2.9.1-2.el9.noarch.rpm 18 MB/s | 5.8 MB 00:00 2024-04-15T22:07:42.484 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T22:07:42.498 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T22:07:42.521 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T22:07:42.562 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T22:07:42.635 INFO:teuthology.orchestra.run.smithi040.stdout:(3/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 500 kB/s | 248 kB 00:00 2024-04-15T22:07:42.659 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T22:07:42.786 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T22:07:42.839 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T22:07:42.860 INFO:teuthology.orchestra.run.smithi040.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 150 kB/s | 58 kB 00:00 2024-04-15T22:07:43.035 INFO:teuthology.orchestra.run.smithi040.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 127 kB/s | 51 kB 00:00 2024-04-15T22:07:43.598 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T22:07:43.660 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T22:07:43.694 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T22:07:43.702 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T22:07:43.743 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T22:07:43.772 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T22:07:44.527 INFO:teuthology.orchestra.run.smithi040.stdout:(6/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 254 kB/s | 548 kB 00:02 2024-04-15T22:07:44.531 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:44.531 INFO:teuthology.orchestra.run.smithi040.stdout:Total 2.2 MB/s | 6.8 MB 00:03 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 1/13 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T22:07:44.548 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T22:07:44.549 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T22:07:44.549 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T22:07:44.549 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T22:07:44.549 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T22:07:44.549 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:44.559 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:44.559 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:44.655 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:44.657 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:44.725 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T22:07:44.759 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T22:07:44.936 INFO:teuthology.orchestra.run.smithi057.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T22:07:44.937 INFO:teuthology.orchestra.run.smithi057.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T22:07:44.937 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T22:07:44.937 INFO:teuthology.orchestra.run.smithi057.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T22:07:44.937 INFO:teuthology.orchestra.run.smithi057.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T22:07:44.937 INFO:teuthology.orchestra.run.smithi057.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T22:07:44.937 INFO:teuthology.orchestra.run.smithi057.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T22:07:44.937 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:44.937 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:44.962 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:45.131 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T22:07:45.150 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T22:07:45.179 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T22:07:45.736 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:26 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:45.738 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T22:07:45.826 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T22:07:45.893 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:45.894 INFO:teuthology.orchestra.run.smithi057.stdout:======================================================================================== 2024-04-15T22:07:45.894 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:07:45.894 INFO:teuthology.orchestra.run.smithi057.stdout:======================================================================================== 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 139 k 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:45.895 INFO:teuthology.orchestra.run.smithi057.stdout:======================================================================================== 2024-04-15T22:07:45.896 INFO:teuthology.orchestra.run.smithi057.stdout:Install 6 Packages 2024-04-15T22:07:45.896 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:45.896 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 6.8 M 2024-04-15T22:07:45.896 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 33 M 2024-04-15T22:07:45.896 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:45.900 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T22:07:45.924 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T22:07:46.345 INFO:teuthology.orchestra.run.smithi057.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.6 MB/s | 248 kB 00:00 2024-04-15T22:07:46.487 INFO:teuthology.orchestra.run.smithi057.stdout:(2/6): python3-babel-2.9.1-2.el9.noarch.rpm 20 MB/s | 5.8 MB 00:00 2024-04-15T22:07:46.578 INFO:teuthology.orchestra.run.smithi057.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 631 kB/s | 58 kB 00:00 2024-04-15T22:07:46.620 INFO:teuthology.orchestra.run.smithi057.stdout:(4/6): ceph-mgr-cephadm-19.0.0-2114.ga9a752df.e 327 kB/s | 139 kB 00:00 2024-04-15T22:07:46.637 INFO:teuthology.orchestra.run.smithi057.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 872 kB/s | 51 kB 00:00 2024-04-15T22:07:46.696 INFO:teuthology.orchestra.run.smithi057.stdout:(6/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.5 MB/s | 548 kB 00:00 2024-04-15T22:07:46.698 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:46.698 INFO:teuthology.orchestra.run.smithi057.stdout:Total 8.5 MB/s | 6.8 MB 00:00 2024-04-15T22:07:46.711 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:46.722 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:46.722 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:46.750 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T22:07:46.751 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/6 2024-04-15T22:07:46.751 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T22:07:46.751 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T22:07:46.751 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T22:07:46.751 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T22:07:46.817 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:46.817 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:47.047 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:47.120 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:47.276 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-fuse 2024-04-15T22:07:47.309 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T22:07:47.345 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T22:07:47.345 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 1/12 2024-04-15T22:07:47.345 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T22:07:47.345 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T22:07:47.345 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T22:07:47.345 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T22:07:47.345 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T22:07:47.346 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T22:07:47.346 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T22:07:47.346 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T22:07:47.346 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T22:07:47.346 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T22:07:47.373 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T22:07:47.777 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T22:07:47.777 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:47.777 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:07:47.777 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:47.778 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:47.865 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:32 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:47.922 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T22:07:48.010 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T22:07:48.024 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:48.024 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:48.024 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 891 k 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout:Install 2 Packages 2024-04-15T22:07:48.025 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:48.026 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 969 k 2024-04-15T22:07:48.026 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 2.8 M 2024-04-15T22:07:48.026 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:48.071 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T22:07:48.101 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T22:07:48.154 INFO:teuthology.orchestra.run.smithi040.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 615 kB/s | 79 kB 00:00 2024-04-15T22:07:48.210 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-mgr-rook 2024-04-15T22:07:48.354 INFO:teuthology.orchestra.run.smithi040.stdout:(2/2): ceph-fuse-19.0.0-2114.ga9a752df.el7.x86_ 2.7 MB/s | 891 kB 00:00 2024-04-15T22:07:48.355 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:48.355 INFO:teuthology.orchestra.run.smithi040.stdout:Total 2.9 MB/s | 969 kB 00:00 2024-04-15T22:07:48.356 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:48.378 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:48.378 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:48.454 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:48.454 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:48.642 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:48.794 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T22:07:48.798 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:16 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:48.874 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T22:07:48.895 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T22:07:48.895 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/6 2024-04-15T22:07:48.895 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T22:07:48.895 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T22:07:48.895 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T22:07:48.895 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T22:07:48.951 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:48.952 INFO:teuthology.orchestra.run.smithi087.stdout:======================================================================================== 2024-04-15T22:07:48.952 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout:======================================================================================== 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-rook noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 49 k 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T22:07:48.953 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T22:07:48.954 INFO:teuthology.orchestra.run.smithi087.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T22:07:48.954 INFO:teuthology.orchestra.run.smithi087.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T22:07:48.954 INFO:teuthology.orchestra.run.smithi087.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T22:07:48.954 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:48.954 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:48.954 INFO:teuthology.orchestra.run.smithi087.stdout:======================================================================================== 2024-04-15T22:07:48.954 INFO:teuthology.orchestra.run.smithi087.stdout:Install 13 Packages 2024-04-15T22:07:48.954 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:48.955 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 2.0 M 2024-04-15T22:07:48.955 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 26 M 2024-04-15T22:07:48.955 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:49.158 INFO:teuthology.orchestra.run.smithi087.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 201 kB/s | 24 kB 00:00 2024-04-15T22:07:49.175 INFO:teuthology.orchestra.run.smithi087.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 131 kB/s | 18 kB 00:00 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T22:07:49.192 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:49.193 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:49.225 INFO:teuthology.orchestra.run.smithi087.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.6 MB/s | 174 kB 00:00 2024-04-15T22:07:49.250 INFO:teuthology.orchestra.run.smithi087.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.7 MB/s | 132 kB 00:00 2024-04-15T22:07:49.276 INFO:teuthology.orchestra.run.smithi087.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 4.1 MB/s | 211 kB 00:00 2024-04-15T22:07:49.293 INFO:teuthology.orchestra.run.smithi087.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 43 kB 00:00 2024-04-15T22:07:49.310 INFO:teuthology.orchestra.run.smithi087.stdout:(7/13): ceph-mgr-rook-19.0.0-2114.ga9a752df.el7 181 kB/s | 49 kB 00:00 2024-04-15T22:07:49.360 INFO:teuthology.orchestra.run.smithi087.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 224 kB/s | 15 kB 00:00 2024-04-15T22:07:49.377 INFO:teuthology.orchestra.run.smithi087.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 320 kB/s | 32 kB 00:00 2024-04-15T22:07:49.401 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-fuse 2024-04-15T22:07:49.502 INFO:teuthology.orchestra.run.smithi087.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 472 kB/s | 59 kB 00:00 2024-04-15T22:07:49.516 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T22:07:49.516 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/2 2024-04-15T22:07:49.769 INFO:teuthology.orchestra.run.smithi087.stdout:(11/13): python3-kubernetes-26.1.0-2.el9.noarch 2.5 MB/s | 1.0 MB 00:00 2024-04-15T22:07:49.837 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T22:07:49.837 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:49.837 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:49.837 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T22:07:49.837 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:49.838 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:49.902 INFO:teuthology.orchestra.run.smithi087.stdout:(12/13): python3-google-auth-2.28.2-1.el9.noarc 342 kB/s | 203 kB 00:00 2024-04-15T22:07:49.990 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:30 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:50.061 INFO:teuthology.orchestra.run.smithi087.stdout:(13/13): python3-websocket-client-1.2.3-2.el9.n 160 kB/s | 90 kB 00:00 2024-04-15T22:07:50.063 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:50.063 INFO:teuthology.orchestra.run.smithi087.stdout:Total 1.8 MB/s | 2.0 MB 00:01 2024-04-15T22:07:50.064 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:50.077 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:50.077 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:50.099 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install ceph-volume 2024-04-15T22:07:50.150 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 891 k 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout:Install 2 Packages 2024-04-15T22:07:50.151 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:50.152 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 969 k 2024-04-15T22:07:50.152 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 2.8 M 2024-04-15T22:07:50.152 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:50.168 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:50.168 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:50.349 INFO:teuthology.orchestra.run.smithi057.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 400 kB/s | 79 kB 00:00 2024-04-15T22:07:50.441 INFO:teuthology.orchestra.run.smithi057.stdout:(2/2): ceph-fuse-19.0.0-2114.ga9a752df.el7.x86_ 3.0 MB/s | 891 kB 00:00 2024-04-15T22:07:50.442 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:50.442 INFO:teuthology.orchestra.run.smithi057.stdout:Total 3.3 MB/s | 969 kB 00:00 2024-04-15T22:07:50.442 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:50.463 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:50.463 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:50.538 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:50.539 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:50.677 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:50.695 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:35 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:50.722 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:50.851 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T22:07:50.855 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:50.855 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repository Size 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-volume noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 264 k 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout:Installing dependencies: 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout:Install 2 Packages 2024-04-15T22:07:50.856 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:50.857 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 332 k 2024-04-15T22:07:50.857 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 1.5 M 2024-04-15T22:07:50.857 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:50.871 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T22:07:50.905 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T22:07:50.944 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T22:07:50.977 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T22:07:50.977 INFO:teuthology.orchestra.run.smithi040.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 573 kB/s | 69 kB 00:00 2024-04-15T22:07:51.015 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T22:07:51.056 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T22:07:51.167 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T22:07:51.244 INFO:teuthology.orchestra.run.smithi040.stdout:(2/2): ceph-volume-19.0.0-2114.ga9a752df.el7.no 682 kB/s | 264 kB 00:00 2024-04-15T22:07:51.245 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:51.246 INFO:teuthology.orchestra.run.smithi040.stdout:Total 854 kB/s | 332 kB 00:00 2024-04-15T22:07:51.246 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:51.255 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:51.255 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:51.282 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T22:07:51.295 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:51.296 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:51.333 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T22:07:51.452 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:51.599 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T22:07:51.599 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/2 2024-04-15T22:07:51.625 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T22:07:51.663 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T22:07:51.680 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T22:07:51.680 INFO:teuthology.orchestra.run.smithi040.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:51.680 INFO:teuthology.orchestra.run.smithi040.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T22:07:51.680 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:51.882 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T22:07:51.882 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:51.882 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:51.882 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T22:07:51.882 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:51.882 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:52.051 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T22:07:52.102 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T22:07:52.138 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T22:07:52.153 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install ceph-volume 2024-04-15T22:07:52.186 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T22:07:52.208 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T22:07:52.382 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 1/2 2024-04-15T22:07:52.705 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T22:07:52.705 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:52.705 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:52.705 INFO:teuthology.orchestra.run.smithi040.stdout: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:52.705 INFO:teuthology.orchestra.run.smithi040.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T22:07:52.705 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:52.705 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:52.751 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:33 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:52.912 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:52.912 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:52.912 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repository Size 2024-04-15T22:07:52.912 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:52.912 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:52.912 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-volume noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 264 k 2024-04-15T22:07:52.912 INFO:teuthology.orchestra.run.smithi057.stdout:Installing dependencies: 2024-04-15T22:07:52.913 INFO:teuthology.orchestra.run.smithi057.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T22:07:52.913 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:52.913 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:52.913 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:52.913 INFO:teuthology.orchestra.run.smithi057.stdout:Install 2 Packages 2024-04-15T22:07:52.913 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:52.914 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 332 k 2024-04-15T22:07:52.914 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 1.5 M 2024-04-15T22:07:52.914 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 1/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T22:07:52.996 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T22:07:52.997 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T22:07:52.997 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T22:07:53.010 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install librados-devel 2024-04-15T22:07:53.036 INFO:teuthology.orchestra.run.smithi057.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 562 kB/s | 69 kB 00:00 2024-04-15T22:07:53.195 INFO:teuthology.orchestra.run.smithi057.stdout:(2/2): ceph-volume-19.0.0-2114.ga9a752df.el7.no 938 kB/s | 264 kB 00:00 2024-04-15T22:07:53.196 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:53.196 INFO:teuthology.orchestra.run.smithi057.stdout:Total 1.1 MB/s | 332 kB 00:00 2024-04-15T22:07:53.196 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:53.206 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:53.206 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:53.242 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:53.242 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:53.376 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T22:07:53.376 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:53.376 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:07:53.376 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:53.376 INFO:teuthology.orchestra.run.smithi087.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T22:07:53.376 INFO:teuthology.orchestra.run.smithi087.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T22:07:53.376 INFO:teuthology.orchestra.run.smithi087.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T22:07:53.376 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:53.377 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:53.399 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:53.593 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T22:07:53.608 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:38 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:53.622 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T22:07:53.626 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T22:07:53.638 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T22:07:53.639 INFO:teuthology.orchestra.run.smithi057.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:07:53.639 INFO:teuthology.orchestra.run.smithi057.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T22:07:53.639 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:53.767 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:53.768 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:53.768 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repo Size 2024-04-15T22:07:53.768 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:53.768 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:53.768 INFO:teuthology.orchestra.run.smithi040.stdout: librados-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 127 k 2024-04-15T22:07:53.768 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:53.769 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:53.769 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:53.769 INFO:teuthology.orchestra.run.smithi040.stdout:Install 1 Package 2024-04-15T22:07:53.769 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:53.769 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 127 k 2024-04-15T22:07:53.769 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 456 k 2024-04-15T22:07:53.769 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:53.983 INFO:teuthology.orchestra.run.smithi040.stdout:librados-devel-19.0.0-2114.ga9a752df.el7.x86_64 593 kB/s | 127 kB 00:00 2024-04-15T22:07:53.983 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:53.984 INFO:teuthology.orchestra.run.smithi040.stdout:Total 589 kB/s | 127 kB 00:00 2024-04-15T22:07:53.984 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:53.990 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:53.990 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:54.048 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:54.048 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:54.205 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:22 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:54.272 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:54.359 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:54.360 INFO:teuthology.orchestra.run.smithi087.stdout:======================================================================================== 2024-04-15T22:07:54.360 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:07:54.360 INFO:teuthology.orchestra.run.smithi087.stdout:======================================================================================== 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 139 k 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout:======================================================================================== 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout:Install 6 Packages 2024-04-15T22:07:54.361 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:54.362 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 6.8 M 2024-04-15T22:07:54.362 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 33 M 2024-04-15T22:07:54.362 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:54.365 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 1/2 2024-04-15T22:07:54.384 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:54.708 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T22:07:54.708 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:54.708 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:54.709 INFO:teuthology.orchestra.run.smithi057.stdout: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:54.709 INFO:teuthology.orchestra.run.smithi057.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T22:07:54.709 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:54.709 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:54.801 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:55.001 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install librados-devel 2024-04-15T22:07:55.090 INFO:teuthology.orchestra.run.smithi087.stdout:(1/6): python3-babel-2.9.1-2.el9.noarch.rpm 23 MB/s | 5.8 MB 00:00 2024-04-15T22:07:55.115 INFO:teuthology.orchestra.run.smithi087.stdout:(2/6): ceph-mgr-cephadm-19.0.0-2114.ga9a752df.e 513 kB/s | 139 kB 00:00 2024-04-15T22:07:55.145 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:55.145 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:55.145 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:55.145 INFO:teuthology.orchestra.run.smithi040.stdout: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:55.145 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:55.145 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:55.332 INFO:teuthology.orchestra.run.smithi087.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 266 kB/s | 58 kB 00:00 2024-04-15T22:07:55.364 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install libcephfs2 2024-04-15T22:07:55.424 INFO:teuthology.orchestra.run.smithi087.stdout:(4/6): python3-typing-extensions-4.4.0-2.el9.no 557 kB/s | 51 kB 00:00 2024-04-15T22:07:55.457 INFO:teuthology.orchestra.run.smithi087.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.5 MB/s | 548 kB 00:00 2024-04-15T22:07:55.507 INFO:teuthology.orchestra.run.smithi087.stdout:(6/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 373 kB/s | 248 kB 00:00 2024-04-15T22:07:55.508 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:55.509 INFO:teuthology.orchestra.run.smithi087.stdout:Total 5.9 MB/s | 6.8 MB 00:01 2024-04-15T22:07:55.522 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:55.533 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:55.533 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:55.596 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:36 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:55.621 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:55.621 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:55.755 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:55.756 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:55.756 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repo Size 2024-04-15T22:07:55.756 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout: librados-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 127 k 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout:Install 1 Package 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 127 k 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 456 k 2024-04-15T22:07:55.757 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:55.916 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:55.960 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:40 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:55.986 INFO:teuthology.orchestra.run.smithi057.stdout:librados-devel-19.0.0-2114.ga9a752df.el7.x86_64 554 kB/s | 127 kB 00:00 2024-04-15T22:07:55.987 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:55.987 INFO:teuthology.orchestra.run.smithi057.stdout:Total 549 kB/s | 127 kB 00:00 2024-04-15T22:07:55.987 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:55.993 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:55.994 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:56.053 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:56.053 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:56.063 INFO:teuthology.orchestra.run.smithi040.stdout:Package libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:56.081 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T22:07:56.118 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:56.120 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:07:56.120 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:56.134 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T22:07:56.192 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install libcephfs-devel 2024-04-15T22:07:56.258 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:56.359 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:56.647 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T22:07:56.728 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T22:07:56.779 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:56.786 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:41 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:56.790 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T22:07:56.813 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T22:07:56.943 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:56.944 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:56.944 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repo Size 2024-04-15T22:07:56.944 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:56.944 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout: libcephfs-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 32 k 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout:Install 1 Package 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 32 k 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 142 k 2024-04-15T22:07:56.945 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:07:57.057 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:57.057 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:57.057 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:57.057 INFO:teuthology.orchestra.run.smithi057.stdout: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:57.057 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:57.057 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:57.111 INFO:teuthology.orchestra.run.smithi040.stdout:libcephfs-devel-19.0.0-2114.ga9a752df.el7.x86_6 190 kB/s | 32 kB 00:00 2024-04-15T22:07:57.112 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:57.112 INFO:teuthology.orchestra.run.smithi040.stdout:Total 189 kB/s | 32 kB 00:00 2024-04-15T22:07:57.112 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:07:57.116 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:07:57.116 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:07:57.143 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:07:57.143 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:07:57.248 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:07:57.294 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install libcephfs2 2024-04-15T22:07:57.362 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:57.674 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T22:07:57.675 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/6 2024-04-15T22:07:57.675 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T22:07:57.675 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T22:07:57.675 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T22:07:57.675 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T22:07:57.746 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:57.891 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:38 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:57.974 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T22:07:57.974 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:57.974 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:07:57.974 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:07:57.974 INFO:teuthology.orchestra.run.smithi087.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T22:07:57.974 INFO:teuthology.orchestra.run.smithi087.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T22:07:57.974 INFO:teuthology.orchestra.run.smithi087.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T22:07:57.975 INFO:teuthology.orchestra.run.smithi087.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T22:07:57.975 INFO:teuthology.orchestra.run.smithi087.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T22:07:57.975 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:57.975 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:07:57.996 INFO:teuthology.orchestra.run.smithi057.stdout:Package libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:58.011 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:58.011 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:58.011 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:07:58.011 INFO:teuthology.orchestra.run.smithi040.stdout: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:58.011 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:07:58.011 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:58.051 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:58.053 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:07:58.053 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:07:58.112 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install libcephfs-devel 2024-04-15T22:07:58.177 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install librados2 2024-04-15T22:07:58.189 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-fuse 2024-04-15T22:07:58.700 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:39 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:07:58.768 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:43 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:58.769 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:26 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:07:58.856 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repo Size 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout: libcephfs-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 32 k 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:07:58.857 INFO:teuthology.orchestra.run.smithi057.stdout:Install 1 Package 2024-04-15T22:07:58.858 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:58.858 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 32 k 2024-04-15T22:07:58.858 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 142 k 2024-04-15T22:07:58.858 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:07:58.870 INFO:teuthology.orchestra.run.smithi040.stdout:Package librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:58.923 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:07:58.923 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:58.923 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:07:58.923 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:58.923 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:07:58.924 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 891 k 2024-04-15T22:07:58.924 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:07:58.924 INFO:teuthology.orchestra.run.smithi087.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T22:07:58.924 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:58.924 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:07:58.924 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:07:58.924 INFO:teuthology.orchestra.run.smithi087.stdout:Install 2 Packages 2024-04-15T22:07:58.924 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:07:58.925 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 969 k 2024-04-15T22:07:58.925 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 2.8 M 2024-04-15T22:07:58.925 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:07:58.926 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:58.927 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:07:58.927 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:58.998 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install librbd1 2024-04-15T22:07:59.044 INFO:teuthology.orchestra.run.smithi057.stdout:libcephfs-devel-19.0.0-2114.ga9a752df.el7.x86_6 170 kB/s | 32 kB 00:00 2024-04-15T22:07:59.045 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:59.045 INFO:teuthology.orchestra.run.smithi057.stdout:Total 169 kB/s | 32 kB 00:00 2024-04-15T22:07:59.045 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:07:59.049 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:07:59.049 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:07:59.072 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:07:59.072 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:07:59.109 INFO:teuthology.orchestra.run.smithi087.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 427 kB/s | 79 kB 00:00 2024-04-15T22:07:59.164 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:07:59.234 INFO:teuthology.orchestra.run.smithi087.stdout:(2/2): ceph-fuse-19.0.0-2114.ga9a752df.el7.x86_ 2.8 MB/s | 891 kB 00:00 2024-04-15T22:07:59.236 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:07:59.236 INFO:teuthology.orchestra.run.smithi087.stdout:Total 3.0 MB/s | 969 kB 00:00 2024-04-15T22:07:59.236 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:07:59.256 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:07:59.256 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:07:59.295 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:59.329 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:07:59.329 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:07:59.505 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:07:59.586 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:44 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:07:59.646 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T22:07:59.651 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:59.689 INFO:teuthology.orchestra.run.smithi040.stdout:Package librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:07:59.718 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T22:07:59.744 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:07:59.745 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:07:59.745 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:07:59.814 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install python3-rados 2024-04-15T22:07:59.917 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:07:59.917 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:59.917 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:07:59.917 INFO:teuthology.orchestra.run.smithi057.stdout: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:07:59.917 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:07:59.917 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:00.079 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install librados2 2024-04-15T22:08:00.382 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T22:08:00.382 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/2 2024-04-15T22:08:00.409 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:45 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:08:00.512 INFO:teuthology.orchestra.run.smithi040.stdout:Package python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:00.567 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:08:00.568 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:08:00.568 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:08:00.643 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install python3-rgw 2024-04-15T22:08:00.664 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T22:08:00.664 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:00.664 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:08:00.664 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T22:08:00.664 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:00.664 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:00.669 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:41 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:00.772 INFO:teuthology.orchestra.run.smithi057.stdout:Package librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:00.827 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:00.828 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:08:00.828 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:00.887 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install librbd1 2024-04-15T22:08:00.946 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install ceph-volume 2024-04-15T22:08:01.236 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:46 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:08:01.339 INFO:teuthology.orchestra.run.smithi040.stdout:Package python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:01.395 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:08:01.396 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:08:01.397 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:08:01.466 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install python3-cephfs 2024-04-15T22:08:01.476 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:42 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:01.541 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:29 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:01.578 INFO:teuthology.orchestra.run.smithi057.stdout:Package librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:01.634 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:01.635 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:08:01.635 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:01.698 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:01.699 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:01.699 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repository Size 2024-04-15T22:08:01.699 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:01.699 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-volume noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 264 k 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout:Installing dependencies: 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout:Install 2 Packages 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 332 k 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 1.5 M 2024-04-15T22:08:01.700 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:08:01.701 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install python3-rados 2024-04-15T22:08:01.822 INFO:teuthology.orchestra.run.smithi087.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 562 kB/s | 69 kB 00:00 2024-04-15T22:08:01.955 INFO:teuthology.orchestra.run.smithi087.stdout:(2/2): ceph-volume-19.0.0-2114.ga9a752df.el7.no 1.0 MB/s | 264 kB 00:00 2024-04-15T22:08:01.956 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:01.957 INFO:teuthology.orchestra.run.smithi087.stdout:Total 1.3 MB/s | 332 kB 00:00 2024-04-15T22:08:01.957 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:08:01.965 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:08:01.966 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:08:02.006 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:08:02.006 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:08:02.057 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:08:02.150 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:08:02.161 INFO:teuthology.orchestra.run.smithi040.stdout:Package python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:02.216 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:08:02.218 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:08:02.218 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:08:02.288 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install python3-rbd 2024-04-15T22:08:02.292 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:43 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:02.330 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T22:08:02.366 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T22:08:02.383 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T22:08:02.383 INFO:teuthology.orchestra.run.smithi087.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:08:02.383 INFO:teuthology.orchestra.run.smithi087.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T22:08:02.383 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:02.395 INFO:teuthology.orchestra.run.smithi057.stdout:Package python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:02.450 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:02.451 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:08:02.451 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:02.507 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install python3-rgw 2024-04-15T22:08:02.886 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:08:02.993 INFO:teuthology.orchestra.run.smithi040.stdout:Package python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:03.050 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:08:03.051 INFO:teuthology.orchestra.run.smithi040.stdout:Nothing to do. 2024-04-15T22:08:03.051 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:08:03.099 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:44 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:03.117 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 1/2 2024-04-15T22:08:03.124 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install rbd-fuse 2024-04-15T22:08:03.203 INFO:teuthology.orchestra.run.smithi057.stdout:Package python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:03.260 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:03.261 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:08:03.261 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:03.329 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install python3-cephfs 2024-04-15T22:08:03.479 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T22:08:03.479 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:03.479 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:08:03.479 INFO:teuthology.orchestra.run.smithi087.stdout: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T22:08:03.479 INFO:teuthology.orchestra.run.smithi087.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T22:08:03.479 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:03.479 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:03.721 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:08:03.819 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install librados-devel 2024-04-15T22:08:03.879 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:08:03.880 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:03.880 INFO:teuthology.orchestra.run.smithi040.stdout: Package Architecture Version Repository Size 2024-04-15T22:08:03.880 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:03.880 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:08:03.880 INFO:teuthology.orchestra.run.smithi040.stdout: rbd-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 85 k 2024-04-15T22:08:03.880 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:03.880 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:08:03.880 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:03.881 INFO:teuthology.orchestra.run.smithi040.stdout:Install 1 Package 2024-04-15T22:08:03.881 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:03.881 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 85 k 2024-04-15T22:08:03.881 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 231 k 2024-04-15T22:08:03.881 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:08:03.920 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:44 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:04.023 INFO:teuthology.orchestra.run.smithi057.stdout:Package python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:04.078 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:04.079 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:08:04.079 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:04.090 INFO:teuthology.orchestra.run.smithi040.stdout:rbd-fuse-19.0.0-2114.ga9a752df.el7.x86_64.rpm 408 kB/s | 85 kB 00:00 2024-04-15T22:08:04.090 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:04.091 INFO:teuthology.orchestra.run.smithi040.stdout:Total 406 kB/s | 85 kB 00:00 2024-04-15T22:08:04.091 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:08:04.099 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:08:04.099 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:08:04.133 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install python3-rbd 2024-04-15T22:08:04.157 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:08:04.157 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:08:04.304 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:08:04.408 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:04.414 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:32 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:04.567 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:04.568 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:04.568 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repo Size 2024-04-15T22:08:04.568 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:04.568 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:08:04.568 INFO:teuthology.orchestra.run.smithi087.stdout: librados-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 127 k 2024-04-15T22:08:04.568 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:04.569 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:08:04.569 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:04.569 INFO:teuthology.orchestra.run.smithi087.stdout:Install 1 Package 2024-04-15T22:08:04.569 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:04.569 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 127 k 2024-04-15T22:08:04.569 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 456 k 2024-04-15T22:08:04.569 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:08:04.727 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:45 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:04.786 INFO:teuthology.orchestra.run.smithi087.stdout:librados-devel-19.0.0-2114.ga9a752df.el7.x86_64 583 kB/s | 127 kB 00:00 2024-04-15T22:08:04.787 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:04.787 INFO:teuthology.orchestra.run.smithi087.stdout:Total 579 kB/s | 127 kB 00:00 2024-04-15T22:08:04.787 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:08:04.793 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:08:04.793 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:08:04.823 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:04.831 INFO:teuthology.orchestra.run.smithi057.stdout:Package python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:04.849 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:08:04.850 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:08:04.887 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:04.888 INFO:teuthology.orchestra.run.smithi057.stdout:Nothing to do. 2024-04-15T22:08:04.888 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:04.949 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install rbd-fuse 2024-04-15T22:08:05.052 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:08:05.086 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:05.086 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:05.086 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:08:05.086 INFO:teuthology.orchestra.run.smithi040.stdout: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:05.086 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:05.086 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:08:05.160 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:05.324 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install rbd-mirror 2024-04-15T22:08:05.537 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:46 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:05.622 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:05.695 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout: Package Architecture Version Repository Size 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout: rbd-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 85 k 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:Install 1 Package 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 85 k 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 231 k 2024-04-15T22:08:05.696 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:08:05.912 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:05.912 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:05.912 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:08:05.912 INFO:teuthology.orchestra.run.smithi087.stdout: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:05.912 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:05.912 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:05.913 INFO:teuthology.orchestra.run.smithi057.stdout:rbd-fuse-19.0.0-2114.ga9a752df.el7.x86_64.rpm 393 kB/s | 85 kB 00:00 2024-04-15T22:08:05.914 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:05.914 INFO:teuthology.orchestra.run.smithi057.stdout:Total 391 kB/s | 85 kB 00:00 2024-04-15T22:08:05.914 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:08:05.921 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:50 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:08:05.922 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:08:05.922 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:08:05.980 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:08:05.980 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:08:06.081 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:08:06.082 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:06.082 INFO:teuthology.orchestra.run.smithi040.stdout: Package Arch Version Repo Size 2024-04-15T22:08:06.082 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:06.082 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:08:06.082 INFO:teuthology.orchestra.run.smithi040.stdout: rbd-mirror x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T22:08:06.082 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:06.082 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:08:06.082 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:06.083 INFO:teuthology.orchestra.run.smithi040.stdout:Install 1 Package 2024-04-15T22:08:06.083 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:06.083 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 3.1 M 2024-04-15T22:08:06.083 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 13 M 2024-04-15T22:08:06.083 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:08:06.120 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:08:06.147 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install libcephfs2 2024-04-15T22:08:06.232 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:06.452 INFO:teuthology.orchestra.run.smithi040.stdout:rbd-mirror-19.0.0-2114.ga9a752df.el7.x86_64.rpm 8.4 MB/s | 3.1 MB 00:00 2024-04-15T22:08:06.452 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:06.453 INFO:teuthology.orchestra.run.smithi040.stdout:Total 8.3 MB/s | 3.1 MB 00:00 2024-04-15T22:08:06.453 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:08:06.462 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:08:06.463 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:08:06.538 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:08:06.539 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:08:06.621 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:06.738 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:34 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:06.841 INFO:teuthology.orchestra.run.smithi087.stdout:Package libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:06.895 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:06.896 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:08:06.896 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:06.906 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:06.907 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:06.907 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:08:06.907 INFO:teuthology.orchestra.run.smithi057.stdout: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:06.907 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:06.907 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:06.958 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install libcephfs-devel 2024-04-15T22:08:06.976 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:08:07.044 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:07.069 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:07.069 INFO:teuthology.orchestra.run.smithi040.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:08:07.069 INFO:teuthology.orchestra.run.smithi040.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T22:08:07.069 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T22:08:07.069 INFO:teuthology.orchestra.run.smithi040.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T22:08:07.069 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:07.151 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install rbd-mirror 2024-04-15T22:08:07.537 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:35 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:07.690 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repo Size 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout: libcephfs-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 32 k 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:Install 1 Package 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 32 k 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 142 k 2024-04-15T22:08:07.691 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:08:07.757 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:07.919 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:07.920 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:07.920 INFO:teuthology.orchestra.run.smithi057.stdout: Package Arch Version Repo Size 2024-04-15T22:08:07.920 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout: rbd-mirror x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout:Install 1 Package 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 3.1 M 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 13 M 2024-04-15T22:08:07.921 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:08:07.931 INFO:teuthology.orchestra.run.smithi087.stdout:libcephfs-devel-19.0.0-2114.ga9a752df.el7.x86_6 132 kB/s | 32 kB 00:00 2024-04-15T22:08:07.931 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:07.932 INFO:teuthology.orchestra.run.smithi087.stdout:Total 132 kB/s | 32 kB 00:00 2024-04-15T22:08:07.932 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:08:07.937 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:08:07.938 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:08:07.973 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:08:07.973 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:08:08.100 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:08:08.152 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:08.152 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:08.153 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:08:08.153 INFO:teuthology.orchestra.run.smithi040.stdout: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:08.153 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:08.153 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:08:08.204 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:08.380 DEBUG:teuthology.orchestra.run.smithi040:> sudo yum -y install rbd-nbd 2024-04-15T22:08:08.475 INFO:teuthology.orchestra.run.smithi057.stdout:rbd-mirror-19.0.0-2114.ga9a752df.el7.x86_64.rpm 5.6 MB/s | 3.1 MB 00:00 2024-04-15T22:08:08.476 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:08.476 INFO:teuthology.orchestra.run.smithi057.stdout:Total 5.6 MB/s | 3.1 MB 00:00 2024-04-15T22:08:08.476 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:08:08.487 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:08:08.487 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:08:08.563 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:08:08.563 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:08:08.586 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:08.844 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:08.844 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:08.844 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:08:08.844 INFO:teuthology.orchestra.run.smithi087.stdout: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:08.844 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:08.844 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:08.975 INFO:teuthology.orchestra.run.smithi040.stdout:Last metadata expiration check: 0:01:53 ago on Mon 15 Apr 2024 10:06:15 PM UTC. 2024-04-15T22:08:09.009 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:08:09.012 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install librados2 2024-04-15T22:08:09.076 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:09.101 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:09.101 INFO:teuthology.orchestra.run.smithi057.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:08:09.101 INFO:teuthology.orchestra.run.smithi057.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T22:08:09.102 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T22:08:09.102 INFO:teuthology.orchestra.run.smithi057.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T22:08:09.102 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:09.132 INFO:teuthology.orchestra.run.smithi040.stdout:Dependencies resolved. 2024-04-15T22:08:09.133 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:09.133 INFO:teuthology.orchestra.run.smithi040.stdout: Package Architecture Version Repository Size 2024-04-15T22:08:09.133 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:09.133 INFO:teuthology.orchestra.run.smithi040.stdout:Installing: 2024-04-15T22:08:09.133 INFO:teuthology.orchestra.run.smithi040.stdout: rbd-nbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 171 k 2024-04-15T22:08:09.133 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:09.133 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction Summary 2024-04-15T22:08:09.134 INFO:teuthology.orchestra.run.smithi040.stdout:================================================================================ 2024-04-15T22:08:09.134 INFO:teuthology.orchestra.run.smithi040.stdout:Install 1 Package 2024-04-15T22:08:09.134 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:09.134 INFO:teuthology.orchestra.run.smithi040.stdout:Total download size: 171 k 2024-04-15T22:08:09.134 INFO:teuthology.orchestra.run.smithi040.stdout:Installed size: 494 k 2024-04-15T22:08:09.134 INFO:teuthology.orchestra.run.smithi040.stdout:Downloading Packages: 2024-04-15T22:08:09.438 INFO:teuthology.orchestra.run.smithi040.stdout:rbd-nbd-19.0.0-2114.ga9a752df.el7.x86_64.rpm 563 kB/s | 171 kB 00:00 2024-04-15T22:08:09.439 INFO:teuthology.orchestra.run.smithi040.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:09.439 INFO:teuthology.orchestra.run.smithi040.stdout:Total 561 kB/s | 171 kB 00:00 2024-04-15T22:08:09.439 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction check 2024-04-15T22:08:09.448 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction check succeeded. 2024-04-15T22:08:09.448 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction test 2024-04-15T22:08:09.507 INFO:teuthology.orchestra.run.smithi040.stdout:Transaction test succeeded. 2024-04-15T22:08:09.507 INFO:teuthology.orchestra.run.smithi040.stdout:Running transaction 2024-04-15T22:08:09.595 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:37 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:09.662 INFO:teuthology.orchestra.run.smithi040.stdout: Preparing : 1/1 2024-04-15T22:08:09.694 INFO:teuthology.orchestra.run.smithi087.stdout:Package librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:09.747 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:09.748 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:08:09.748 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:09.782 INFO:teuthology.orchestra.run.smithi040.stdout: Installing : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:09.811 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install librbd1 2024-04-15T22:08:10.197 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:10.197 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:10.197 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:08:10.197 INFO:teuthology.orchestra.run.smithi057.stdout: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:10.197 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:10.197 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:10.214 INFO:teuthology.orchestra.run.smithi040.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:10.391 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:38 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:10.411 DEBUG:teuthology.orchestra.run.smithi057:> sudo yum -y install rbd-nbd 2024-04-15T22:08:10.490 INFO:teuthology.orchestra.run.smithi087.stdout:Package librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:10.508 INFO:teuthology.orchestra.run.smithi040.stdout: Verifying : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:10.508 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:10.508 INFO:teuthology.orchestra.run.smithi040.stdout:Installed: 2024-04-15T22:08:10.508 INFO:teuthology.orchestra.run.smithi040.stdout: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:10.509 INFO:teuthology.orchestra.run.smithi040.stdout: 2024-04-15T22:08:10.509 INFO:teuthology.orchestra.run.smithi040.stdout:Complete! 2024-04-15T22:08:10.542 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:10.543 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:08:10.543 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:10.610 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install python3-rados 2024-04-15T22:08:10.743 DEBUG:teuthology.parallel:result is None 2024-04-15T22:08:11.004 INFO:teuthology.orchestra.run.smithi057.stdout:Last metadata expiration check: 0:01:52 ago on Mon 15 Apr 2024 10:06:19 PM UTC. 2024-04-15T22:08:11.165 INFO:teuthology.orchestra.run.smithi057.stdout:Dependencies resolved. 2024-04-15T22:08:11.166 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:11.166 INFO:teuthology.orchestra.run.smithi057.stdout: Package Architecture Version Repository Size 2024-04-15T22:08:11.166 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout:Installing: 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout: rbd-nbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 171 k 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction Summary 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout:================================================================================ 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout:Install 1 Package 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout:Total download size: 171 k 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout:Installed size: 494 k 2024-04-15T22:08:11.167 INFO:teuthology.orchestra.run.smithi057.stdout:Downloading Packages: 2024-04-15T22:08:11.188 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:39 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:11.287 INFO:teuthology.orchestra.run.smithi087.stdout:Package python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:11.339 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:11.340 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:08:11.340 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:11.399 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install python3-rgw 2024-04-15T22:08:11.519 INFO:teuthology.orchestra.run.smithi057.stdout:rbd-nbd-19.0.0-2114.ga9a752df.el7.x86_64.rpm 487 kB/s | 171 kB 00:00 2024-04-15T22:08:11.520 INFO:teuthology.orchestra.run.smithi057.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:11.520 INFO:teuthology.orchestra.run.smithi057.stdout:Total 484 kB/s | 171 kB 00:00 2024-04-15T22:08:11.520 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction check 2024-04-15T22:08:11.529 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction check succeeded. 2024-04-15T22:08:11.529 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction test 2024-04-15T22:08:11.589 INFO:teuthology.orchestra.run.smithi057.stdout:Transaction test succeeded. 2024-04-15T22:08:11.589 INFO:teuthology.orchestra.run.smithi057.stdout:Running transaction 2024-04-15T22:08:11.747 INFO:teuthology.orchestra.run.smithi057.stdout: Preparing : 1/1 2024-04-15T22:08:11.846 INFO:teuthology.orchestra.run.smithi057.stdout: Installing : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:11.978 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:39 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:12.077 INFO:teuthology.orchestra.run.smithi087.stdout:Package python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:12.129 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:12.130 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:08:12.130 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:12.187 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install python3-cephfs 2024-04-15T22:08:12.290 INFO:teuthology.orchestra.run.smithi057.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:12.564 INFO:teuthology.orchestra.run.smithi057.stdout: Verifying : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:12.564 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:12.564 INFO:teuthology.orchestra.run.smithi057.stdout:Installed: 2024-04-15T22:08:12.564 INFO:teuthology.orchestra.run.smithi057.stdout: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:12.564 INFO:teuthology.orchestra.run.smithi057.stdout: 2024-04-15T22:08:12.564 INFO:teuthology.orchestra.run.smithi057.stdout:Complete! 2024-04-15T22:08:12.767 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:40 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:12.813 DEBUG:teuthology.parallel:result is None 2024-04-15T22:08:12.865 INFO:teuthology.orchestra.run.smithi087.stdout:Package python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:12.916 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:12.917 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:08:12.918 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:12.970 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install python3-rbd 2024-04-15T22:08:13.549 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:41 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:13.647 INFO:teuthology.orchestra.run.smithi087.stdout:Package python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T22:08:13.699 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:13.700 INFO:teuthology.orchestra.run.smithi087.stdout:Nothing to do. 2024-04-15T22:08:13.700 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:13.754 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install rbd-fuse 2024-04-15T22:08:14.329 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:42 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:14.479 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:14.480 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:14.480 INFO:teuthology.orchestra.run.smithi087.stdout: Package Architecture Version Repository Size 2024-04-15T22:08:14.480 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:14.480 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:08:14.480 INFO:teuthology.orchestra.run.smithi087.stdout: rbd-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 85 k 2024-04-15T22:08:14.480 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:14.481 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:08:14.481 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:14.481 INFO:teuthology.orchestra.run.smithi087.stdout:Install 1 Package 2024-04-15T22:08:14.481 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:14.481 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 85 k 2024-04-15T22:08:14.481 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 231 k 2024-04-15T22:08:14.481 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:08:14.701 INFO:teuthology.orchestra.run.smithi087.stdout:rbd-fuse-19.0.0-2114.ga9a752df.el7.x86_64.rpm 389 kB/s | 85 kB 00:00 2024-04-15T22:08:14.701 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:14.701 INFO:teuthology.orchestra.run.smithi087.stdout:Total 386 kB/s | 85 kB 00:00 2024-04-15T22:08:14.701 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:08:14.708 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:08:14.709 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:08:14.764 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:08:14.764 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:08:14.902 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:08:15.006 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:15.411 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:15.707 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:15.707 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:15.707 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:08:15.707 INFO:teuthology.orchestra.run.smithi087.stdout: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:15.707 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:15.707 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:15.964 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install rbd-mirror 2024-04-15T22:08:16.547 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:44 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:16.706 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:16.706 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:16.706 INFO:teuthology.orchestra.run.smithi087.stdout: Package Arch Version Repo Size 2024-04-15T22:08:16.706 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:16.706 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:08:16.707 INFO:teuthology.orchestra.run.smithi087.stdout: rbd-mirror x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T22:08:16.707 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:16.707 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:08:16.707 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:16.707 INFO:teuthology.orchestra.run.smithi087.stdout:Install 1 Package 2024-04-15T22:08:16.707 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:16.707 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 3.1 M 2024-04-15T22:08:16.708 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 13 M 2024-04-15T22:08:16.708 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:08:17.270 INFO:teuthology.orchestra.run.smithi087.stdout:rbd-mirror-19.0.0-2114.ga9a752df.el7.x86_64.rpm 5.5 MB/s | 3.1 MB 00:00 2024-04-15T22:08:17.271 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:17.271 INFO:teuthology.orchestra.run.smithi087.stdout:Total 5.5 MB/s | 3.1 MB 00:00 2024-04-15T22:08:17.271 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:08:17.280 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:08:17.280 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:08:17.352 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:08:17.353 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:08:17.766 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:08:17.838 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:17.862 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:17.862 INFO:teuthology.orchestra.run.smithi087.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T22:08:17.862 INFO:teuthology.orchestra.run.smithi087.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T22:08:17.863 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T22:08:17.863 INFO:teuthology.orchestra.run.smithi087.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T22:08:17.863 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:18.958 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:18.958 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:18.958 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:08:18.958 INFO:teuthology.orchestra.run.smithi087.stdout: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:18.958 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:18.958 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:19.201 DEBUG:teuthology.orchestra.run.smithi087:> sudo yum -y install rbd-nbd 2024-04-15T22:08:19.795 INFO:teuthology.orchestra.run.smithi087.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 10:06:32 PM UTC. 2024-04-15T22:08:19.946 INFO:teuthology.orchestra.run.smithi087.stdout:Dependencies resolved. 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout: Package Architecture Version Repository Size 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout:Installing: 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout: rbd-nbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 171 k 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction Summary 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout:================================================================================ 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout:Install 1 Package 2024-04-15T22:08:19.947 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:19.948 INFO:teuthology.orchestra.run.smithi087.stdout:Total download size: 171 k 2024-04-15T22:08:19.948 INFO:teuthology.orchestra.run.smithi087.stdout:Installed size: 494 k 2024-04-15T22:08:19.948 INFO:teuthology.orchestra.run.smithi087.stdout:Downloading Packages: 2024-04-15T22:08:20.173 INFO:teuthology.orchestra.run.smithi087.stdout:rbd-nbd-19.0.0-2114.ga9a752df.el7.x86_64.rpm 759 kB/s | 171 kB 00:00 2024-04-15T22:08:20.174 INFO:teuthology.orchestra.run.smithi087.stdout:-------------------------------------------------------------------------------- 2024-04-15T22:08:20.174 INFO:teuthology.orchestra.run.smithi087.stdout:Total 754 kB/s | 171 kB 00:00 2024-04-15T22:08:20.174 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction check 2024-04-15T22:08:20.182 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction check succeeded. 2024-04-15T22:08:20.182 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction test 2024-04-15T22:08:20.239 INFO:teuthology.orchestra.run.smithi087.stdout:Transaction test succeeded. 2024-04-15T22:08:20.240 INFO:teuthology.orchestra.run.smithi087.stdout:Running transaction 2024-04-15T22:08:20.386 INFO:teuthology.orchestra.run.smithi087.stdout: Preparing : 1/1 2024-04-15T22:08:20.488 INFO:teuthology.orchestra.run.smithi087.stdout: Installing : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:20.939 INFO:teuthology.orchestra.run.smithi087.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:21.239 INFO:teuthology.orchestra.run.smithi087.stdout: Verifying : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T22:08:21.239 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:21.239 INFO:teuthology.orchestra.run.smithi087.stdout:Installed: 2024-04-15T22:08:21.239 INFO:teuthology.orchestra.run.smithi087.stdout: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T22:08:21.239 INFO:teuthology.orchestra.run.smithi087.stdout: 2024-04-15T22:08:21.239 INFO:teuthology.orchestra.run.smithi087.stdout:Complete! 2024-04-15T22:08:21.475 DEBUG:teuthology.parallel:result is None 2024-04-15T22:08:21.476 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:21.867 DEBUG:teuthology.orchestra.run.smithi040:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T22:08:21.892 INFO:teuthology.orchestra.run.smithi040.stdout:19.0.0-2114.ga9a752df.el7 2024-04-15T22:08:21.893 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114.ga9a752df.el7 2024-04-15T22:08:21.893 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114.ga9a752df is installed. 2024-04-15T22:08:21.894 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:22.527 DEBUG:teuthology.orchestra.run.smithi057:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T22:08:22.553 INFO:teuthology.orchestra.run.smithi057.stdout:19.0.0-2114.ga9a752df.el7 2024-04-15T22:08:22.554 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114.ga9a752df.el7 2024-04-15T22:08:22.554 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114.ga9a752df is installed. 2024-04-15T22:08:22.555 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:22.694 DEBUG:teuthology.orchestra.run.smithi087:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T22:08:22.720 INFO:teuthology.orchestra.run.smithi087.stdout:19.0.0-2114.ga9a752df.el7 2024-04-15T22:08:22.721 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114.ga9a752df.el7 2024-04-15T22:08:22.721 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114.ga9a752df is installed. 2024-04-15T22:08:22.722 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-15T22:08:22.722 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2024-04-15T22:08:22.723 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T22:08:22.757 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2024-04-15T22:08:22.757 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T22:08:22.790 DEBUG:teuthology.orchestra.run.smithi087:> set -ex 2024-04-15T22:08:22.791 DEBUG:teuthology.orchestra.run.smithi087:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T22:08:22.821 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-15T22:08:22.821 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2024-04-15T22:08:22.821 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T22:08:22.854 DEBUG:teuthology.orchestra.run.smithi040:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T22:08:22.925 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2024-04-15T22:08:22.926 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T22:08:22.958 DEBUG:teuthology.orchestra.run.smithi057:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T22:08:23.029 DEBUG:teuthology.orchestra.run.smithi087:> set -ex 2024-04-15T22:08:23.029 DEBUG:teuthology.orchestra.run.smithi087:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T22:08:23.058 DEBUG:teuthology.orchestra.run.smithi087:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T22:08:23.135 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-15T22:08:23.135 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2024-04-15T22:08:23.135 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T22:08:23.168 DEBUG:teuthology.orchestra.run.smithi040:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T22:08:23.240 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2024-04-15T22:08:23.240 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T22:08:23.272 DEBUG:teuthology.orchestra.run.smithi057:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T22:08:23.343 DEBUG:teuthology.orchestra.run.smithi087:> set -ex 2024-04-15T22:08:23.343 DEBUG:teuthology.orchestra.run.smithi087:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T22:08:23.372 DEBUG:teuthology.orchestra.run.smithi087:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T22:08:23.440 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-15T22:08:23.440 DEBUG:teuthology.orchestra.run.smithi040:> set -ex 2024-04-15T22:08:23.440 DEBUG:teuthology.orchestra.run.smithi040:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T22:08:23.473 DEBUG:teuthology.orchestra.run.smithi040:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T22:08:23.545 DEBUG:teuthology.orchestra.run.smithi057:> set -ex 2024-04-15T22:08:23.545 DEBUG:teuthology.orchestra.run.smithi057:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T22:08:23.578 DEBUG:teuthology.orchestra.run.smithi057:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T22:08:23.649 DEBUG:teuthology.orchestra.run.smithi087:> set -ex 2024-04-15T22:08:23.649 DEBUG:teuthology.orchestra.run.smithi087:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T22:08:23.677 DEBUG:teuthology.orchestra.run.smithi087:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T22:08:23.745 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T22:08:23.853 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, '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\\)', 'MON_DOWN'], 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T22:08:23.854 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:23.854 INFO:tasks.cephadm:Cluster fsid is ad5f4926-fb74-11ee-bc8f-c7b262605968 2024-04-15T22:08:23.854 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T22:08:23.854 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.40', 'mon.b': '172.21.15.57', 'mon.c': '172.21.15.87'} 2024-04-15T22:08:23.855 INFO:tasks.cephadm:First mon is mon.a on smithi040 2024-04-15T22:08:23.855 INFO:tasks.cephadm:First mgr is a 2024-04-15T22:08:23.855 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T22:08:23.855 DEBUG:teuthology.orchestra.run.smithi040:> sudo hostname $(hostname -s) 2024-04-15T22:08:23.889 DEBUG:teuthology.orchestra.run.smithi057:> sudo hostname $(hostname -s) 2024-04-15T22:08:23.922 DEBUG:teuthology.orchestra.run.smithi087:> sudo hostname $(hostname -s) 2024-04-15T22:08:23.950 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T22:08:23.951 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:24.088 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54895/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2114-ga9a752df', 'node_name': '172.21.5.39+adami09', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2114.ga9a752df'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-14 16:04:37.608971', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2024-04-15T22:08:24.301 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 a9a752df26c63acad72e1b3569fd79a515ca0765 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:24.302 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm 2024-04-15T22:08:24.303 DEBUG:teuthology.orchestra.run.smithi040:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:24.773 INFO:teuthology.orchestra.run.smithi040.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 22:08 /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:24.773 DEBUG:teuthology.orchestra.run.smithi057:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:25.225 INFO:teuthology.orchestra.run.smithi057.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 22:08 /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:25.226 DEBUG:teuthology.orchestra.run.smithi087:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:25.901 INFO:teuthology.orchestra.run.smithi087.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 22:08 /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:25.902 DEBUG:teuthology.orchestra.run.smithi040:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:25.921 DEBUG:teuthology.orchestra.run.smithi057:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:25.941 DEBUG:teuthology.orchestra.run.smithi087:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:25.974 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 on all hosts... 2024-04-15T22:08:25.975 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:08:25.977 DEBUG:teuthology.orchestra.run.smithi057:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:08:25.983 DEBUG:teuthology.orchestra.run.smithi087:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T22:08:26.790 INFO:teuthology.orchestra.run.smithi040.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:08:26.928 INFO:teuthology.orchestra.run.smithi057.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:08:26.976 INFO:teuthology.orchestra.run.smithi087.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:08:26.983 INFO:teuthology.orchestra.run.smithi040.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:26.983 INFO:teuthology.orchestra.run.smithi040.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:08:26.983 INFO:teuthology.orchestra.run.smithi040.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T22:08:26.983 INFO:teuthology.orchestra.run.smithi040.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:27.006 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:08:27.007 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi040 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:08:27.008 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T22:08:27.010 DEBUG:teuthology.misc:Transferring archived files from smithi040:/var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi040/crash 2024-04-15T22:08:27.011 DEBUG:teuthology.orchestra.run.smithi040:> sudo tar c -f - -C /var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:08:27.053 INFO:teuthology.orchestra.run.smithi040.stderr:tar: /var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:08:27.054 INFO:teuthology.orchestra.run.smithi040.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:08:27.055 DEBUG:teuthology.misc:Transferring archived files from smithi057:/var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi057/crash 2024-04-15T22:08:27.056 DEBUG:teuthology.orchestra.run.smithi057:> sudo tar c -f - -C /var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:08:27.100 INFO:teuthology.orchestra.run.smithi057.stderr:tar: /var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:08:27.100 INFO:teuthology.orchestra.run.smithi057.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:08:27.103 DEBUG:teuthology.misc:Transferring archived files from smithi087:/var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi087/crash 2024-04-15T22:08:27.104 DEBUG:teuthology.orchestra.run.smithi087:> sudo tar c -f - -C /var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T22:08:27.134 INFO:teuthology.orchestra.run.smithi057.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:27.134 INFO:teuthology.orchestra.run.smithi057.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:08:27.134 INFO:teuthology.orchestra.run.smithi057.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T22:08:27.134 INFO:teuthology.orchestra.run.smithi057.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:27.146 INFO:teuthology.orchestra.run.smithi087.stderr:tar: /var/lib/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T22:08:27.147 INFO:teuthology.orchestra.run.smithi087.stderr:tar: Error is not recoverable: exiting now 2024-04-15T22:08:27.147 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T22:08:27.147 DEBUG:teuthology.orchestra.run.smithi040:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-04-15T22:08:27.152 INFO:teuthology.orchestra.run.smithi087.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:27.152 INFO:teuthology.orchestra.run.smithi087.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T22:08:27.152 INFO:teuthology.orchestra.run.smithi087.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T22:08:27.152 INFO:teuthology.orchestra.run.smithi087.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T22:08:27.177 INFO:teuthology.orchestra.run.smithi040.stderr:grep: /var/log/ceph/ad5f4926-fb74-11ee-bc8f-c7b262605968/ceph.log: No such file or directory 2024-04-15T22:08:27.179 INFO:tasks.cephadm:Compressing logs... 2024-04-15T22:08:27.179 DEBUG:teuthology.orchestra.run.smithi040:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T22:08:27.221 DEBUG:teuthology.orchestra.run.smithi057:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T22:08:27.224 DEBUG:teuthology.orchestra.run.smithi087:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T22:08:27.249 INFO:teuthology.orchestra.run.smithi057.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T22:08:27.249 INFO:teuthology.orchestra.run.smithi057.stderr:: No such file or directory 2024-04-15T22:08:27.249 INFO:teuthology.orchestra.run.smithi057.stderr:/var/log/ceph/cephadm.log: 73.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:08:27.251 INFO:teuthology.orchestra.run.smithi057.stderr: 2024-04-15T22:08:27.251 INFO:teuthology.orchestra.run.smithi057.stderr:real 0m0.016s 2024-04-15T22:08:27.251 INFO:teuthology.orchestra.run.smithi057.stderr:user 0m0.013s 2024-04-15T22:08:27.251 INFO:teuthology.orchestra.run.smithi057.stderr:sys 0m0.016s 2024-04-15T22:08:27.252 INFO:teuthology.orchestra.run.smithi040.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T22:08:27.252 INFO:teuthology.orchestra.run.smithi040.stderr:: No such file or directory 2024-04-15T22:08:27.252 INFO:teuthology.orchestra.run.smithi040.stderr:/var/log/ceph/cephadm.log: 73.9% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:08:27.252 INFO:teuthology.orchestra.run.smithi087.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T22:08:27.252 INFO:teuthology.orchestra.run.smithi087.stderr:: No such file or directory 2024-04-15T22:08:27.252 INFO:teuthology.orchestra.run.smithi087.stderr:/var/log/ceph/cephadm.log: 73.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T22:08:27.254 INFO:teuthology.orchestra.run.smithi087.stderr: 2024-04-15T22:08:27.254 INFO:teuthology.orchestra.run.smithi087.stderr:real 0m0.015s 2024-04-15T22:08:27.254 INFO:teuthology.orchestra.run.smithi087.stderr:user 0m0.012s 2024-04-15T22:08:27.254 INFO:teuthology.orchestra.run.smithi087.stderr:sys 0m0.016s 2024-04-15T22:08:27.254 INFO:teuthology.orchestra.run.smithi040.stderr: 2024-04-15T22:08:27.254 INFO:teuthology.orchestra.run.smithi040.stderr:real 0m0.020s 2024-04-15T22:08:27.255 INFO:teuthology.orchestra.run.smithi040.stderr:user 0m0.007s 2024-04-15T22:08:27.255 INFO:teuthology.orchestra.run.smithi040.stderr:sys 0m0.021s 2024-04-15T22:08:27.255 INFO:tasks.cephadm:Archiving logs... 2024-04-15T22:08:27.255 DEBUG:teuthology.misc:Transferring archived files from smithi040:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi040/log 2024-04-15T22:08:27.256 DEBUG:teuthology.orchestra.run.smithi040:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:08:27.323 DEBUG:teuthology.misc:Transferring archived files from smithi057:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi057/log 2024-04-15T22:08:27.324 DEBUG:teuthology.orchestra.run.smithi057:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:08:27.356 DEBUG:teuthology.misc:Transferring archived files from smithi087:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi087/log 2024-04-15T22:08:27.357 DEBUG:teuthology.orchestra.run.smithi087:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T22:08:27.386 INFO:tasks.cephadm:Removing cluster... 2024-04-15T22:08:27.386 DEBUG:teuthology.orchestra.run.smithi040:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad5f4926-fb74-11ee-bc8f-c7b262605968 --force 2024-04-15T22:08:27.578 INFO:teuthology.orchestra.run.smithi040.stdout:Deleting cluster with fsid: ad5f4926-fb74-11ee-bc8f-c7b262605968 2024-04-15T22:08:27.852 DEBUG:teuthology.orchestra.run.smithi057:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad5f4926-fb74-11ee-bc8f-c7b262605968 --force 2024-04-15T22:08:28.033 INFO:teuthology.orchestra.run.smithi057.stdout:Deleting cluster with fsid: ad5f4926-fb74-11ee-bc8f-c7b262605968 2024-04-15T22:08:28.293 DEBUG:teuthology.orchestra.run.smithi087:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad5f4926-fb74-11ee-bc8f-c7b262605968 --force 2024-04-15T22:08:28.481 INFO:teuthology.orchestra.run.smithi087.stdout:Deleting cluster with fsid: ad5f4926-fb74-11ee-bc8f-c7b262605968 2024-04-15T22:08:28.737 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T22:08:28.737 DEBUG:teuthology.orchestra.run.smithi040:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:28.755 DEBUG:teuthology.orchestra.run.smithi057:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:28.772 DEBUG:teuthology.orchestra.run.smithi087:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T22:08:28.788 INFO:tasks.cephadm:Teardown complete 2024-04-15T22:08:28.788 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, 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_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi040 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:08:28.993 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=7c980895a8854520bd39455645a087b3 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1771, 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_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/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_ceph_461a84e6fbbf089011eafd13b98169fb9e9b8cc9/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi040 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T22:08:28.997 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T22:08:29.008 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-15T22:08:29.052 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-04-15T22:08:29.052 DEBUG:teuthology.orchestra.run.smithi040:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T22:08:29.065 DEBUG:teuthology.orchestra.run.smithi057:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T22:08:29.067 DEBUG:teuthology.orchestra.run.smithi087:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T22:08:29.160 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T22:08:29.170 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T22:08:29.170 DEBUG:teuthology.orchestra.run.smithi040:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:08:29.172 DEBUG:teuthology.orchestra.run.smithi057:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:08:29.175 DEBUG:teuthology.orchestra.run.smithi087:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T22:08:29.187 INFO:teuthology.orchestra.run.smithi040.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:08:29.188 INFO:teuthology.orchestra.run.smithi057.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:08:29.189 INFO:teuthology.orchestra.run.smithi087.stderr:bash: line 1: ntpq: command not found 2024-04-15T22:08:29.192 INFO:teuthology.orchestra.run.smithi040.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:08:29.192 INFO:teuthology.orchestra.run.smithi040.stdout:=============================================================================== 2024-04-15T22:08:29.192 INFO:teuthology.orchestra.run.smithi040.stdout:^* hv01.front.sepia.ceph.com 3 6 77 24 +994us[ +991us] +/- 55ms 2024-04-15T22:08:29.192 INFO:teuthology.orchestra.run.smithi040.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 25 -368us[ -371us] +/- 69ms 2024-04-15T22:08:29.192 INFO:teuthology.orchestra.run.smithi040.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 25 -856us[ -859us] +/- 66ms 2024-04-15T22:08:29.193 INFO:teuthology.orchestra.run.smithi040.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:08:29.194 INFO:teuthology.orchestra.run.smithi087.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:08:29.194 INFO:teuthology.orchestra.run.smithi087.stdout:=============================================================================== 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi087.stdout:^* hv01.front.sepia.ceph.com 3 6 77 24 +1000us[ +931us] +/- 55ms 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi087.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 24 -358us[ -358us] +/- 69ms 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi087.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 24 -864us[ -864us] +/- 66ms 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi087.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi057.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi057.stdout:=============================================================================== 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi057.stdout:^* hv01.front.sepia.ceph.com 3 6 77 24 +984us[ +974us] +/- 55ms 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi057.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 24 -366us[ -366us] +/- 69ms 2024-04-15T22:08:29.195 INFO:teuthology.orchestra.run.smithi057.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 25 -849us[ -858us] +/- 66ms 2024-04-15T22:08:29.196 INFO:teuthology.orchestra.run.smithi057.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T22:08:29.196 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T22:08:29.244 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T22:08:29.245 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T22:08:29.309 DEBUG:teuthology.orchestra.run.smithi040:> 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 2024-04-15T22:08:29.380 DEBUG:teuthology.orchestra.run.smithi057:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T22:08:29.452 DEBUG:teuthology.orchestra.run.smithi087:> 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 2024-04-15T22:08:29.516 DEBUG:teuthology.orchestra.run.smithi040:> 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 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:08:29.550 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:08:29.550 DEBUG:teuthology.orchestra.run.smithi057:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:08:29.583 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:08:29.584 DEBUG:teuthology.orchestra.run.smithi087:> 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 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T22:08:29.614 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:08:29.614 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T22:08:29.623 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T22:08:29.706 INFO:teuthology.task.internal:Duration was 421.185269 seconds 2024-04-15T22:08:29.707 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T22:08:29.747 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T22:08:29.747 DEBUG:teuthology.orchestra.run.smithi040:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:08:29.750 DEBUG:teuthology.orchestra.run.smithi057:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:08:29.752 DEBUG:teuthology.orchestra.run.smithi087:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T22:08:29.797 INFO:teuthology.orchestra.run.smithi087.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:08:29.798 INFO:teuthology.orchestra.run.smithi040.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:08:29.801 INFO:teuthology.orchestra.run.smithi057.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T22:08:30.261 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T22:08:30.262 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi040.front.sepia.ceph.com 2024-04-15T22:08:30.262 DEBUG:teuthology.orchestra.run.smithi040:> 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 2024-04-15T22:08:30.286 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi057.front.sepia.ceph.com 2024-04-15T22:08:30.287 DEBUG:teuthology.orchestra.run.smithi057:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T22:08:30.325 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi087.front.sepia.ceph.com 2024-04-15T22:08:30.326 DEBUG:teuthology.orchestra.run.smithi087:> 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 2024-04-15T22:08:30.358 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T22:08:30.359 DEBUG:teuthology.orchestra.run.smithi040:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:08:30.361 DEBUG:teuthology.orchestra.run.smithi057:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:08:30.368 DEBUG:teuthology.orchestra.run.smithi087:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T22:08:30.429 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T22:08:30.430 DEBUG:teuthology.orchestra.run.smithi040:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:08:30.435 DEBUG:teuthology.orchestra.run.smithi057:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:08:30.442 DEBUG:teuthology.orchestra.run.smithi087:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T22:08:30.564 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T22:08:30.574 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T22:08:30.574 DEBUG:teuthology.orchestra.run.smithi040:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:08:30.603 DEBUG:teuthology.orchestra.run.smithi057:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:08:30.632 DEBUG:teuthology.orchestra.run.smithi087:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T22:08:30.661 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T22:08:30.670 DEBUG:teuthology.orchestra.run.smithi040:> 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 2024-04-15T22:08:30.673 DEBUG:teuthology.orchestra.run.smithi057:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:08:30.675 DEBUG:teuthology.orchestra.run.smithi087:> 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 2024-04-15T22:08:30.698 INFO:teuthology.orchestra.run.smithi040.stdout:kernel.core_pattern = core 2024-04-15T22:08:30.699 INFO:teuthology.orchestra.run.smithi057.stdout:kernel.core_pattern = core 2024-04-15T22:08:30.727 INFO:teuthology.orchestra.run.smithi087.stdout:kernel.core_pattern = core 2024-04-15T22:08:30.753 DEBUG:teuthology.orchestra.run.smithi040:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:08:30.778 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:08:30.779 DEBUG:teuthology.orchestra.run.smithi057:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:08:30.793 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:08:30.793 DEBUG:teuthology.orchestra.run.smithi087:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T22:08:30.807 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T22:08:30.808 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T22:08:30.817 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T22:08:30.818 DEBUG:teuthology.misc:Transferring archived files from smithi040:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi040 2024-04-15T22:08:30.818 DEBUG:teuthology.orchestra.run.smithi040:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:08:30.857 DEBUG:teuthology.misc:Transferring archived files from smithi057:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi057 2024-04-15T22:08:30.857 DEBUG:teuthology.orchestra.run.smithi057:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:08:30.893 DEBUG:teuthology.misc:Transferring archived files from smithi087:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528/remote/smithi087 2024-04-15T22:08:30.894 DEBUG:teuthology.orchestra.run.smithi087:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T22:08:30.929 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T22:08:30.930 DEBUG:teuthology.orchestra.run.smithi040:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:08:30.932 DEBUG:teuthology.orchestra.run.smithi057:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:08:30.934 DEBUG:teuthology.orchestra.run.smithi087:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T22:08:30.980 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T22:08:30.990 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T22:08:30.991 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T22:08:31.042 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T22:08:31.042 DEBUG:teuthology.orchestra.run.smithi040:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:08:31.045 DEBUG:teuthology.orchestra.run.smithi057:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:08:31.047 DEBUG:teuthology.orchestra.run.smithi087:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T22:08:31.057 INFO:teuthology.orchestra.run.smithi040.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:08 /home/ubuntu/cephtest 2024-04-15T22:08:31.059 INFO:teuthology.orchestra.run.smithi057.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:08 /home/ubuntu/cephtest 2024-04-15T22:08:31.061 INFO:teuthology.orchestra.run.smithi087.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 22:08 /home/ubuntu/cephtest 2024-04-15T22:08:31.063 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T22:08:31.094 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T22:08:31.182 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T22:08:31.209 DEBUG:teuthology.nuke:shortname: smithi040 2024-04-15T22:08:31.210 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:08:31.233 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi040.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:52:30.144336', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCbCCmJ26BZkZHmlxVw6rNuqX3gdHFXnFi0Bx8VcCLthD6rml+If4oLef/rO8nkdRRtl2T238Zes+YauQYNx9c0='} 2024-04-15T22:08:31.237 DEBUG:teuthology.nuke:shortname: smithi057 2024-04-15T22:08:31.237 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:08:31.258 DEBUG:teuthology.nuke:shortname: smithi087 2024-04-15T22:08:31.258 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T22:08:31.266 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi057.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:52:30.147055', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKZst1g+LHRo7SXrzSNMjRKbYKM0JEiRFO60iJDobt8ReyqUCZm/dkyfVcj6spvCoT9l8ITILlVRY19c3XUPkOw='} 2024-04-15T22:08:31.282 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi087.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_21:08:03-orch-squid-distro-default-smithi/7657528', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 21:52:30.145817', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAurQfbsbOKCfl44z/Y1afOpTdt/ki3Kl7MPDH83QPB1sJqICWiTq6NiYE+XIV9BV6CdKWskmp27vyE2eglG4hI='} 2024-04-15T22:08:31.295 INFO:teuthology.orchestra.console.smithi040:Power off 2024-04-15T22:08:31.296 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:08:31.320 DEBUG:teuthology.orchestra.console.smithi040:power off output: Chassis Power Control: Down/Off 2024-04-15T22:08:31.320 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:31.337 INFO:teuthology.orchestra.console.smithi057:Power off 2024-04-15T22:08:31.337 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:08:31.351 INFO:teuthology.orchestra.console.smithi087:Power off 2024-04-15T22:08:31.352 DEBUG:teuthology.orchestra.console.smithi087:pexpect command: ipmitool -H smithi087.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T22:08:31.360 DEBUG:teuthology.orchestra.console.smithi040:check power output: Chassis Power is on 2024-04-15T22:08:31.360 DEBUG:teuthology.orchestra.console.smithi057:power off output: Chassis Power Control: Down/Off 2024-04-15T22:08:31.360 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:31.375 DEBUG:teuthology.orchestra.console.smithi087:power off output: Chassis Power Control: Down/Off 2024-04-15T22:08:31.375 DEBUG:teuthology.orchestra.console.smithi087:pexpect command: ipmitool -H smithi087.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:31.384 DEBUG:teuthology.orchestra.console.smithi057:check power output: Chassis Power is on 2024-04-15T22:08:31.398 DEBUG:teuthology.orchestra.console.smithi087:check power output: Chassis Power is on 2024-04-15T22:08:35.361 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:35.385 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:35.399 DEBUG:teuthology.orchestra.console.smithi087:pexpect command: ipmitool -H smithi087.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:35.472 DEBUG:teuthology.orchestra.console.smithi040:check power output: Chassis Power is on 2024-04-15T22:08:35.495 DEBUG:teuthology.orchestra.console.smithi057:check power output: Chassis Power is on 2024-04-15T22:08:35.509 DEBUG:teuthology.orchestra.console.smithi087:check power output: Chassis Power is on 2024-04-15T22:08:39.474 DEBUG:teuthology.orchestra.console.smithi040:pexpect command: ipmitool -H smithi040.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:39.495 DEBUG:teuthology.orchestra.console.smithi057:pexpect command: ipmitool -H smithi057.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:39.510 DEBUG:teuthology.orchestra.console.smithi087:pexpect command: ipmitool -H smithi087.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:39.584 DEBUG:teuthology.orchestra.console.smithi040:check power output: Chassis Power is off 2024-04-15T22:08:39.604 DEBUG:teuthology.orchestra.console.smithi057:check power output: Chassis Power is off 2024-04-15T22:08:39.619 DEBUG:teuthology.orchestra.console.smithi087:check power output: Chassis Power is on 2024-04-15T22:08:39.686 INFO:teuthology.orchestra.console.smithi040:Power off completed 2024-04-15T22:08:39.706 INFO:teuthology.orchestra.console.smithi057:Power off completed 2024-04-15T22:08:43.623 DEBUG:teuthology.orchestra.console.smithi087:pexpect command: ipmitool -H smithi087.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T22:08:43.734 DEBUG:teuthology.orchestra.console.smithi087:check power output: Chassis Power is off 2024-04-15T22:08:43.835 INFO:teuthology.orchestra.console.smithi087:Power off completed 2024-04-15T22:08:43.940 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/classic task/test_host_drain} duration: 421.1852686405182 failure_reason: 'Command failed on smithi040 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull''' flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=7c980895a8854520bd39455645a087b3 status: fail success: false 2024-04-15T22:08:43.940 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T22:08:44.021 INFO:teuthology.run:FAIL